Metadata-Version: 2.4
Name: py2md
Version: 0.1.3
Summary: Run Python code in Jupyter to generate markdown reports.
Author-email: Xero64 <xero64@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Xero64/py2md
Project-URL: Issues, https://github.com/Xero64/py2md/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jupyter-client>=8.6.3
Requires-Dist: matplotlib>=3.10.0
Requires-Dist: nbformat>=5.10.4
Dynamic: license-file

# py2md

Run python code in Jupyter to generate markdown reports.

**Usage:**

```
py2md test_py2md.py
```

This will then run Jupyter and generate a md file output with associated images.

**Debug Usage:**

```
py2md test_py2md.py -debug
```

This will also print out all Jupyter output to see if anything is missing from the output.

**No Code, No Cell Headers and inline images Usage:**

```
py2md test_py2md.py -nocode -nohead -inline
```

This will hide the python code block as well as cell headers and all images will be part of the markdown file as html code.
