Skip to main content

Python-native Mermaid diagram converter – no browser, Node.js, or npm required. Renders diagrams to SVG using Phasma, perfect for documentation automation and CI/CD pipelines.

Project description

mmdc — Mermaid Diagram Converter for Python

PyPI Python License: MIT Tests

Convert Mermaid diagrams to SVG, PNG, and PDF — fully offline and fast, just pip install mmdc.

No Node.js. No npm. No Chrome. No system packages. Powered by Phasma.


Why mmdc?

The official Mermaid CLI (@mermaid-js/mermaid-cli) requires Node.js and npm. If you're working in a Python environment, that's a significant dependency just to render a diagram.

mmdc brings the same functionality to Python with a single pip install. The Mermaid JS library and PhantomJS binary are both bundled inside the wheel — no network access needed after install.

pip install mmdc

Quick Start

import asyncio
from mmdc import MermaidConverter

DIAGRAM = """
graph TD
    A[Install] --> B[Import]
    B --> C[Convert]
    C --> D[Done]
"""

async def main():
    async with MermaidConverter() as m:
        await m.to_svg(DIAGRAM, "diagram.svg")
        await m.to_png(DIAGRAM, "diagram.png", scale=2.0)
        await m.to_pdf(DIAGRAM, "diagram.pdf")

asyncio.run(main())
mmdc -i diagram.mermaid -o diagram.svg
mmdc -i diagram.mermaid -o diagram.png --scale 2.0
cat diagram.mermaid | mmdc -i - -o diagram.pdf

How It Works

sequenceDiagram
    participant P as Python
    participant Ph as PhantomJS (single process)
    participant M as Mermaid.js (bundled, offline)

    P->>Ph: launch once

    loop each diagram
        P->>Ph: renderMermaidSync(code) → SVG string
        P->>Ph: renderMermaidToPage(code) → inject into DOM
        Ph->>M: render diagram
        M-->>Ph: SVG
        Ph-->>P: screenshot / pdf
    end

    P->>Ph: close()

One PhantomJS process handles everything — SVG rendering, PNG screenshots, and PDF export all happen inside the same process with no restarts between conversions.


Python API

MermaidConverter

# recommended — automatic lifecycle management
async with MermaidConverter(theme="default", background="white") as m:
    svg = await m.to_svg("graph TD\n    A-->B")

# manual lifecycle
m = MermaidConverter()
await m.start()
svg = await m.to_svg("graph TD\n    A-->B")
await m.close()

# module-level singleton — lazy start, closes at exit
import mmdc
svg = await mmdc.to_svg("graph TD\n    A-->B")
png = await mmdc.to_png("graph TD\n    A-->B", scale=2.0)

Methods

to_svg(source, output?, *, theme?, background?, config?, css?) → bytes

svg = await m.to_svg("graph TD\n    A-->B")
svg = await m.to_svg(Path("diagram.mermaid"), "out.svg", theme="dark")

to_png(source, output?, *, scale?, theme?, background?, config?, css?) → bytes

png = await m.to_png("graph TD\n    A-->B", scale=2.0)
await m.to_png(Path("diagram.mermaid"), "out.png", scale=3.0, theme="forest")

to_pdf(source, output?, *, scale?, theme?, background?, config?, css?, pdf_format?, pdf_landscape?, pdf_margin?) → bytes

# fit paper to diagram size (default)
pdf = await m.to_pdf("graph TD\n    A-->B")

# standard paper
await m.to_pdf("graph TD\n    A-->B", "out.pdf", pdf_format="A4", pdf_landscape=True)

convert(source, output?, ...) → bytes

Auto-detects format from file extension:

await m.convert(DIAGRAM, "out.svg")   # → SVG
await m.convert(DIAGRAM, "out.png")   # → PNG
await m.convert(DIAGRAM, "out.pdf")   # → PDF

Parameters

Parameter Type Default Description
source str | Path Mermaid string, .mermaid file path, or Path object
output str | Path | None None Output file. If omitted, returns bytes
scale float 1.0 Size multiplier for PNG/PDF
theme str "default" "default", "forest", "dark", "neutral"
background str "white" CSS background color
config dict | None None Mermaid config dict
css str | None None CSS injected into the diagram
pdf_format str | None None "A4", "Letter", etc. None = fit to diagram
pdf_landscape bool False Landscape orientation (PDF only)
pdf_margin str "0" CSS margin e.g. "1cm"

CLI

# SVG to stdout (no -o needed)
mmdc -i diagram.mermaid
cat diagram.mermaid | mmdc -i -
echo "graph TD\n    A-->B" | mmdc -i -

# save to file (format from extension)
mmdc -i diagram.mermaid -o diagram.svg
mmdc -i diagram.mermaid -o diagram.png
mmdc -i diagram.mermaid -o diagram.pdf

# scale
mmdc -i diagram.mermaid -o diagram.png --scale 2.0

# theme & background
mmdc -i diagram.mermaid -o diagram.svg --theme dark
mmdc -i diagram.mermaid -o diagram.png --background "#f5f5f5"

# PDF options
mmdc -i diagram.mermaid -o diagram.pdf --pdf-format A4 --landscape --margin 1cm

# config & CSS
mmdc -i diagram.mermaid -o diagram.svg --config config.json --css style.css

# info — Mermaid library version
mmdc --info

# version
mmdc --version

Examples

Batch conversion

import asyncio
from pathlib import Path
from mmdc import MermaidConverter

async def main():
    diagrams = list(Path("diagrams").glob("*.mermaid"))

    async with MermaidConverter(theme="forest") as m:
        for f in diagrams:
            await m.to_png(f, f.with_suffix(".png"), scale=2.0)
        
    print(f"converted {len(diagrams)} diagrams")

asyncio.run(main())

Multiple formats from one diagram

async with MermaidConverter() as m:
    for fmt in ["svg", "png", "pdf"]:
        await m.convert(DIAGRAM, f"output.{fmt}")

Custom theme and config

async with MermaidConverter(theme="dark", background="#1a1a2e") as m:
    png = await m.to_png(
        DIAGRAM,
        scale=2.0,
        config={"flowchart": {"curve": "basis"}},
        css=".node rect { rx: 8; ry: 8; }",
    )

Module-level for scripts

import asyncio
import mmdc

async def main():
    # no context manager needed — session starts on first call
    # and closes automatically when the script exits
    svg = await mmdc.to_svg("graph TD\n    A-->B")
    png = await mmdc.to_png("graph TD\n    A-->B", scale=2.0)

asyncio.run(main())

Supported Diagram Types

All diagram types supported by Mermaid work out of the box:

  • Flowcharts (graph TD, graph LR)
  • Sequence diagrams
  • Class diagrams
  • State diagrams
  • Entity relationship diagrams
  • Gantt charts
  • Pie charts
  • Git graphs

Requirements

  • Python 3.9+
  • phasma (installed automatically)
  • No system packages, no Node.js, no npm

Testing

pip install -e ".[dev]"
pytest tests/ -v

Contributing

  1. Fork and create a feature branch
  2. Add tests for new functionality
  3. Run pytest tests/ — all must pass
  4. Open a pull request

License

MIT — see LICENSE for details.


Powered by phasma  ·  Made by Mohammad Raziei

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mmdc-0.5.0-py3-none-any.whl (254.7 kB view details)

Uploaded Python 3

File details

Details for the file mmdc-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: mmdc-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 254.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mmdc-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 010f87237e1eb90f054ccaac97a6630027b3b9dfedf9971277fe3c6553e5ac85
MD5 c38e5e650475b582cc2e3b797e202b6e
BLAKE2b-256 fb16b8face8a3ffe8006b9d1900da68b7ace16ca0767c76a3a80e0782f70c107

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page