Metadata-Version: 2.4
Name: md2data
Version: 0.1.4
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing :: Markup :: Markdown
Classifier: Topic :: Utilities
Requires-Dist: pytest>=9.0.1 ; extra == 'dev'
Provides-Extra: dev
Summary: Python binding for md2data: Markdown → JSON/YAML/TOML/XML. Faster with Rust.
Author-email: Jenul Ferdinand <jenul15ferdinand@gmail.com>
License: MIT
Requires-Python: >=3.12.3
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# md2data for Python 📦🐍 
> Markdown → JSON/YAML/TOML/XML. Faster with Rust.

## Installation
Install with pip
```bash
pip install md2data
```

## Usage
```python
import md2daa

md = """# Hello World

This is a **markdown** document."""

json = md2data.convert(md, "json")
yaml = md2data.convert(md, "yaml")
toml = md2data.convert(md, "toml")
xml = md2data.convert(md, "xml")
```

## Developers: Building the wheel
The build process can be initiated with `uv build`. A dist folder will be created.
