Metadata-Version: 2.4
Name: pyhuml
Version: 0.2.0
Summary: An experimental parser and dumper for the HUML (Human-oriented Markup Language) format.
Home-page: https://huml.io
Author: Kailash Nadh
Author-email: Kailash Nadh <kailash@nadh.in>
License: MIT
Project-URL: Homepage, https://huml.io
Project-URL: Repository, https://github.com/huml-lang/pyhuml
Keywords: huml,markup,parser,stringifier
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# pyhuml

An experimental HUML parser implementation in Python. 

## Installation
```
pip install pyhuml
```

## Usage
```python
import pyhuml

# Parse HUML into Python data structures.
print(pyhuml.loads(huml_doc))

# Dump Python data structures into HUML.
print(pyhuml.dumps(obj))

```

### License
Licensed under the MIT license.
