Metadata-Version: 2.4
Name: deccan-toon
Version: 0.1.0
Summary: Battling JSON bloat with Pythonic elegance. A high-efficiency TOON serializer.
License-Expression: MIT
License-File: LICENSE
Keywords: toon,json,llm,ai,serialization
Author: Deccan Tensor Labs
Author-email: saurabhdugdhe18@gmail.com
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Project-URL: Homepage, https://github.com/Deccan-Tensor/toon-py
Description-Content-Type: text/markdown

# Deccan Toon

Battling JSON bloat with Pythonic elegance. A high-efficiency TOON serializer.

## Installation

```bash
pip install deccan-toon
```

## Usage

```python
import deccan_toon

data = [{"id": 1, "name": "Pune"}, {"id": 2, "name": "Mumbai"}]
print(deccan_toon.dumps(data))
```

