Metadata-Version: 2.4
Name: notebookize
Version: 0.1.0
Summary: A decorator that prints the source code of functions when called.
Author-email: "K.R. Zentner" <krzentner@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
License-File: LICENSE
Requires-Dist: jupyterlab>=4.4.7
Requires-Dist: jupytext>=1.17.3
Requires-Dist: pyzmq>=25.0.0
Requires-Dist: ipykernel>=6.29.0
Requires-Dist: jupyter-client>=8.6.0
Requires-Dist: jupyter-console>=6.6.3
Project-URL: Home, https://github.com/krzentner/notebookize

# notebookize

A Python decorator that turns functions back into jupyter notebooks, complete with their context.

### Installation:

```
pip install notebookize
```

### Usage:

```python
from notebookize import notebookize

@notebookize
def my_function(my_function_args, ...):
    ...
```
