Metadata-Version: 2.1
Name: mandarin
Version: 0.0.1a2
Summary: Template engine for Python
Home-page: https://github.com/joegasewicz/password-mixin
Author: Joe Gasewicz
Author-email: joegasewicz@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

![Amber](./logo/Group.png)
A Template engine for Python.

## Install
```bash
pip install mandarin==0.0.1a1
```
🌱 Work in progress, please call back soon...

### Example
```
div(class="my-class" id="my-id"):
    h1 "hello"
    
# Output: "<div class='my-class' id='my-id'><h1>hello</h1></div>"
```

