Metadata-Version: 2.4
Name: notebookize
Version: 0.1.3
Summary: A Python decorator that turns functions back into jupyter notebooks, complete with their context.
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
Requires-Dist: jupytext>=1
Requires-Dist: ipykernel>=6
Requires-Dist: libcst>=1.8
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, ...):
    ...
```
