Metadata-Version: 2.1
Name: nb-as-module
Version: 0.1.1
Summary: Load a Jupyter Notebook as a module object.
Home-page: https://github.com/sradc/nb_as_module
Author: Sidney Radcliffe
Author-email: sidneyradcliffe@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: IPython
Requires-Dist: nbformat

# nb_as_module

`pip install nb_as_module`

Load a Jupyter Notebook as a module object.

E.g.

```python
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.
```

Put \<!--docstring--> at the beggining of markdown cells,
to use them as `__doc__` documentation.


