Metadata-Version: 2.4
Name: morphflow
Version: 1.0.0
Summary: Universal structured data converter: JSON, YAML, CSV, TSV, TOML, XML, JSONL, MessagePack, Avro
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/morphflow
Project-URL: Bug Reports, https://github.com/yourusername/morphflow/issues
Project-URL: Source, https://github.com/yourusername/morphflow
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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 :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Database
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyyaml>=6.0
Requires-Dist: tomli-w>=1.0
Requires-Dist: msgpack>=1.0
Requires-Dist: fastavro>=1.9
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Dynamic: license-file

# morphflow

Universal structured data converter. Supports JSON, YAML, CSV, TSV, TOML, XML, JSONL, MessagePack, Avro.

### Install:
pip install morphflow

### CLI usage:
morphflow input.json output.yaml
morphflow data.csv output.avro

### Python usage:
from morphflow import convert_file
convert_file('data.json', 'data.yaml')

#### License: MIT
