Metadata-Version: 2.1
Name: mdeng
Version: 1.0.5
Summary: A package for a Python Markdown parser engine
Home-page: https://github.com/youhengzhou/mdeng
Author: YouHeng Zhou
Author-email: youhengzhou@cmail.carleton.ca
Project-URL: Bug Tracker, https://github.com/youhengzhou/mdeng/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# mdeng

Markdown Engine for Python

Please visit: https://pypi.org/project/mdeng for PyPI Package

Please visit: https://github.com/youhengzhou/mdeng for Github repo

# Download Package

`py -m pip install mdeng -U`

## In Your Python Files

```
import mdeng

mdb = mdeng.MdDB()

mdb.create({}, 'sample.md')

mdb.read('sample.md')

mdb.delete('sample.md')
```

For a sample of how it works, check the `test.py` in the test folder.

This markdown engine is able to to take a dictionary such as:

![image](https://github.com/youhengzhou/mdeng/assets/60205850/dd40c1ff-3ab4-4a0c-b013-f7a131606996)

And turn it into a markdown file:

![image](https://github.com/youhengzhou/mdeng/assets/60205850/c8798503-6941-40d9-8072-a0a80ee80528)

It also supports reading a markdown file and returning a dictionary.

Also supports nested markdown entries as nested dictionaries, it can go even longer than tbe linter can!

![image](https://github.com/youhengzhou/mdeng/assets/60205850/b8c6481f-b7e5-4bd1-b5af-0b8c624f468b)
