Metadata-Version: 2.1
Name: jonf
Version: 0.0.1
Summary: JONF parser/formatter in Python
Home-page: https://github.com/whyolet/jonf-py
License: MIT
Keywords: jonf,json,configuration,dsl,parser
Author: Denis Ryzhkov
Author-email: denisr@denisr.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Documentation, https://jonf.app/
Project-URL: Repository, https://github.com/whyolet/jonf-py
Description-Content-Type: text/markdown

# JONF parser/formatter in Python

NOTE: This is initial stub version, docs and tests only

- JONF format: https://jonf.app/

- Python example:

```python
# pip install jonf

import jonf

text = """\
compare =
  - true
  = true
"""

assert jonf.parse(text) == {"compare": ["true", True]}

assert jonf.format({"compare": ["true", True]}) == text
```

- TODO: Implement `jonf.parse()` and `jonf.format()` as part of [JONF Roadmap](https://jonf.app/#roadmap)

