Metadata-Version: 2.1
Name: jsonthat
Version: 0.1.2
Summary: 
Author: Yanael Barbier
Author-email: st3w4r@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Description-Content-Type: text/markdown

# json that

transform any raw text to json

## installation

```bash
pip install jsonthat
```

```bash
export OPENAI_API_KEY=<your_openai_api_key>
```

## usage

```bash
echo 'my name is jay' | jt
{
  "name": "Jay"
}
```

```bash
options:
    --schema <json_schema_file> pass a json schema to format the output
```

