Skip to main content

Interactive MacroPy - IPython REPL, generic bootstrapper.

Project description

Imacropy is interactive macropy.

We provide some agile-development addons for MacroPy, namely a generic macro-enabling bootstrapper, and an IPython extension to macro-enable its REPL.

Bootstrapper:

The bootstrapper imports the specified file or module, pretending its __name__ is "__main__". This allows your main program to use macros.

For example, some_program.py:

from simplelet import macros, let

def main():
    x = let((y, 21))[2*y]
    assert x == 42
    print("All OK")

if __name__ == "__main__":
    main()

Start it as:

macropy3 some_program.py

or:

macropy3 -m some_program

The only command-line switch the bootstrapper supports is -m module_name. If you need to set other Python command-line options:

python3 <your options here> -m macropy3 -m some_program

The first -m goes to Python itself, the second to the macropy3 bootstrapper.

IPython extension:

The extension allows to use macros in the IPython REPL. (Defining macros in the REPL is currently not supported.)

For example:

In [1]: from simplelet import macros, let

In [2]: let((x, 21))[2*x]
Out[2]: 42

A from-import of macros from a given module clears from the REPL session all current macros loaded from that module, and loads the latest definitions of only the specified macros from disk. This allows interactive testing when editing macros.

The most recent definition of any given macro remains alive until the next macro from-import from the same module, or until the IPython session is terminated.

Macro docstrings and source code can be viewed using ? and ??, as usual.

To load the extension once, %load_ext imacropy.console.

To autoload it when IPython starts, add "imacropy.console" to the list c.InteractiveShellApp.extensions in your ipython_config.py. To find the config file, ipython profile locate.

When the extension loads, it imports macropy into the REPL session. You can use this to debug whether it is loaded, if necessary.

Currently no startup banner is printed, because extension loading occurs after IPython has already printed its own banner. We cannot manually print a banner, because some tools (notably importmagic.el for Emacs, included in Spacemacs) treat the situation as a fatal error in Python interpreter startup if anything is printed (and ipython3 --no-banner is rather convenient to have as the python-shell, to run IPython in Emacs’s inferior-shell mode).

For more details, see the docstring of imacropy.console.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

imacropy-0.2.0.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

imacropy-0.2.0-py3-none-any.whl (18.1 kB view details)

Uploaded Python 3

File details

Details for the file imacropy-0.2.0.tar.gz.

File metadata

  • Download URL: imacropy-0.2.0.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8

File hashes

Hashes for imacropy-0.2.0.tar.gz
Algorithm Hash digest
SHA256 aa9bffea4e4672fd853179f20160807952c5d89773ca5c660cfdd26e88770b11
MD5 3e57cf4ea470e695a2152f3e219fac77
BLAKE2b-256 75333b61a319bd36b3b22824c9fa5aa7c7feb34fb455b798fabd4f7053606c99

See more details on using hashes here.

File details

Details for the file imacropy-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: imacropy-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8

File hashes

Hashes for imacropy-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 576be9a54bc494c5066dfe82f1941f92f5c6998647c1001598977bd6016d6173
MD5 7dd05820c5d96844cfc682bdda830922
BLAKE2b-256 8b287c4e6ee7e1bf043a4ce73699c784d7d5f1b788d973d8da634119ec702fde

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page