Metadata-Version: 2.1
Name: pymermaiddiagram
Version: 0.0.2
Summary: A library to create mermaid.js diagrams using python
Author-email: Gioele SL Fierro <hck@gslf.it>
Project-URL: Homepage, https://github.com/gslf/PyMermade
Project-URL: Bug Tracker, https://github.com/gslf/PyMermade/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# PyMermaid
### A library to create mermaid.js diagrams using python
##### Gioele SL Fierro

---

![pymermaiddiagram logo](/res/pymermaiddiagram.jpg)

### How to use pymermaiddiagrams

```python
import base64
import requests
import io
from PIL import Image
from pymermaiddiagram import createDiagram

def main():
    """Example usage of the createDiagram function."""
    string_description = "graph LR;A-->B;A-->C;B-->D;C-->D;"
    diagram_image = createDiagram(string_description)
    diagram_image.show()

if __name__ == "__main__":
    main()
```




