Metadata-Version: 2.4
Name: mergram
Version: 0.3.0
Summary: Programmatically construct Mermaid diagrams and charts in Python
Author-email: "Blake A. Wilson" <blakeaw1102@gmail.com>
License: MIT
Project-URL: Repository, https://github.com/blakeaw/mergram
Project-URL: Issues, https://github.com/blakeaw/mergram/issues
Project-URL: Changelog, https://github.com/blakeaw/mergram/blob/main/CHANGELOG.md
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: networkx
Requires-Dist: networkx; extra == "networkx"
Dynamic: license-file

# MerGram

**Programmatically generate [Mermaid](https://mermaid.jd.org) diagrams and charts using Python.**

[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
![Python version badge](https://img.shields.io/badge/python->=3.8-blue.svg)
[![license](https://img.shields.io/github/license/blakeaw/mergram.svg)](LICENSE)
[![release](https://img.shields.io/github/release/blakeaw/mergram.svg)](https://github.com/blakeaw/mergram/releases)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

MerGram currently supports constructing Mermaid flowcharts, with plans to expand support for additional diagram and chart types in future releases.
 

## Features

- Build Mermaid flowcharts using Python classes
- Support for nodes, links, and subgraphs, and style assignments
- Export diagrams to Mermaid `.mmd` or `.mermaid` files
- Optional integration with [networkx](https://networkx.org/) for graph conversion

### What's New in 

### v0.3.0

* `Style` class that can be used to add `style ...` lines to flowcharts
* Fixes to style-related outputs for nodes

#### v0.2.0

* `Flowchart.to_markdown` function to get a string representation of the flowchart embedded in a Markdown Mermaid code block.
* `Flowchart.to_html` function to get a string representation of the flowchart embedded in HTML. 

## Installation

```bash
pip install mergram
```

To enable networkx integration:

```bash
pip install mergram[networkx]
```

## Usage

### Basic Flowchart

```python
from mergram.flowchart import Flowchart, Node, Link

fc = Flowchart("Example Flowchart")
a = Node("A", label="Start")
b = Node("B", label="End", shape='circle')
fc += a
fc += b
fc += Link(a, b, text="to end")

print(fc)
```
Generates the following mermaid diagram code:

    ---
    title: Example Flowchart
    ---
    flowchart TB
        A@{ shape: rect, label: Start }
        B@{ shape: circle, label: End }
        A-->|to end|B
        style A fill:#fff, stroke:#000, stroke-width:2px, color:#000
        style B fill:#fff, stroke:#000, stroke-width:2px, color:#000

That looks like: 
```mermaid
---
 title: Example Flowchart
---
flowchart TB
    A@{ shape: rect, label: Start }
    B@{ shape: circle, label: End }
    A-->|to end|B
    style A fill:#fff, stroke:#000, stroke-width:2px, color:#000
    style B fill:#fff, stroke:#000, stroke-width:2px, color:#000
```

### From NetworkX

```python
import networkx as nx
from mergram.flowchart import Flowchart

G = nx.DiGraph()
G.add_edge("A", "B", label="to B")
G.add_edge("B", "A", label="to A")
fc = Flowchart("From NetworkX", orientation='LR')
fc.from_networkx(G)
print(fc)
```
    ---
    title: From NetworkX
    ---
    flowchart LR
        B@{ shape: rect, label: B }
        A@{ shape: rect, label: A }
        A-->|to B|B
        B-->|to A|A
        style A fill:#fff, stroke:#000, stroke-width:2px, color:#000
        style B fill:#fff, stroke:#000, stroke-width:2px, color:#000

```mermaid
---
 title: From NetworkX
---
flowchart LR
    B@{ shape: rect, label: B }
    A@{ shape: rect, label: A }
    A-->|to B|B
    B-->|to A|A
    style A fill:#fff, stroke:#000, stroke-width:2px, color:#000
    style B fill:#fff, stroke:#000, stroke-width:2px, color:#000
```


### Export to File

```python
fc.write("diagram.mmd")
```

## Optional Dependencies

- `networkx`: For converting existing graphs to Mermaid flowcharts.

## License

MIT License

## Contributing

Contributions are welcome! Please open issues or pull requests.
