Skip to main content

Load a Jupyter Notebook as a module object.

Project description

nb_as_module

pip install nb_as_module

Load a Jupyter Notebook as a module object.

from nb_as_module import nb_as_module

my_module = nb_as_module('path/to/notebook.ipynb', name='my_module')

my_module.hello()  # where `hello` is a function defined in the notebook.

Google Colab

There is also a helper module for Google Colab.

To install in Google Colab, run in a cell: !pip install nb_as_module

import nb_as_module.colab

# Mount Google Drive, where Colab notebooks are saved.
# (Note you will be asked permission for access here.)
nb_as_module.colab.mount_drive()

# Get a list of your notebooks:
list_of_notebooks = nb_as_module.colab.list_nbs()
print(list_of_notebooks)
#> ['hello.ipynb', ...]

# Load one of the notebooks in the list as a module:
hello = nb_as_module.colab.as_module('hello.ipynb', 'hello')

# Run a function from the module.
hello.hello()
#> Hello, world.

doc

Put <!--docstring--> at the beggining of markdown cells, to use them as __doc__ documentation. (If multiple cells are used, they will be concatenated.)

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

nb_as_module-0.2.2.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

nb_as_module-0.2.2-py3-none-any.whl (5.8 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