Metadata-Version: 2.4
Name: uniformat
Version: 0.1.0
Summary: A universal data format converter for TOON, JSON, YAML, and XML
Home-page: https://github.com/sumeetkumarnaik/uniformat
Author: Sumeet Kumar Naik
Author-email: sumeet@example.com
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyyaml
Requires-Dist: xmltodict
Dynamic: license-file

# Uniformat — Universal Format Converter

Uniformat automatically detects and converts between JSON, YAML, XML, and TOON formats.

## Install
```bash
pip install uniformat
```

## Usage
```python
from uniformat import UniformatConverter, DataFormat

json_data = '{"name": "Sumeet"}'
yaml_data = UniformatConverter.convert(json_data, DataFormat.YAML)
print(yaml_data)
```

CLI usage:
```bash
uniformat input.json output.yaml --to yaml
```
