Skip to main content

Extension for IPython/Jupyter Notebooks that adds namespaces that you can enter and re-enter

Project description

IPython Namespaces

Extension for IPython/Jupyter Notebooks that adds namespaces that you can enter and re-enter.

(Because: “Namespaces are one honking great idea – let’s do more of those!”)

Usage (in a Jupyter Notebook)

Load the extension:

%load_ext ipython-namespaces

Use the space cell magic:

foo = 23
%%space dustin

bar = 42
foo, bar

Output: (23, 42)

foo, bar

Output: NameError: name 'bar' is not defined

%%space dustin

foo, bar

Output: (23, 42)

from ipython_namespaces import Namespaces

Namespaces.dustin['bar']

Output: 42

Features

  1. Separate namespaces within one Jupyter Notebook
  2. Access to other namespaces via the Namespaces class
  3. Unchanged behavior of display – the value of the last line in a cell is displayed
  4. Unchanged behavior of tracebacks – the problematic line in one’s own code is highlighted

Acknowledgements

Thanks to Davide Sarra and the Jupyter Spaces extension for the inspiration!

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

ipython-namespaces-0.1.2.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

ipython_namespaces-0.1.2-py3-none-any.whl (2.4 kB view hashes)

Uploaded Python 3

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