Metadata-Version: 2.4
Name: dataforge-convert
Version: 0.1.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: pytest>=7.0 ; extra == 'dev'
Provides-Extra: dev
Summary: High-performance Jupyter notebook conversion to HTML, Markdown, and Python
Keywords: jupyter,notebook,convert,html,markdown,python,ipynb,export
Author-email: DataForge Team <dataforge@example.com>
License: Apache-2.0
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Documentation, https://github.com/shyamsivakumar/dataforge#readme
Project-URL: Homepage, https://github.com/shyamsivakumar/dataforge
Project-URL: Issues, https://github.com/shyamsivakumar/dataforge/issues
Project-URL: Repository, https://github.com/shyamsivakumar/dataforge.git

# DataForge Convert

High-performance Jupyter notebook conversion for Python.

## Installation

```bash
pip install dataforge-convert
```

## Usage

```python
from dataforge_convert import convert_notebook

# Convert notebook to HTML
html = convert_notebook("notebook.ipynb", "html", title="My Notebook")

# Convert to Markdown
md = convert_notebook("notebook.ipynb", "markdown")

# Convert to Python script
py = convert_notebook("notebook.ipynb", "python")

# Strip outputs (clean notebook)
clean = convert_notebook("notebook.ipynb", "strip")
```

