Metadata-Version: 2.4
Name: colson
Version: 1.0.0
Summary: ColSON parser for Python 3.
Project-URL: Homepage, https://github.com/shushtain/colson-pip
Project-URL: Issues, https://github.com/shushtain/colson-pip/issues
Author-email: Artem Shush <shushtain@gmail.com>
License-Expression: MIT
License-File: LICENSE.txt
Keywords: colson,parser,python
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.13
Description-Content-Type: text/markdown

# ColSON pip

ColSON parser for Python 3.

> ⚠️ **In per-issue development**  
> Any help or critique is encouraged.

## Features

- `colson.loads(x)` parses ColSON data into Python object.
- `colson.dumps(x)` parses Python object into ColSON data.

## Installation

Run:

```bash
pip install colson
```

Import:

```python
import colson
```
