Skip to main content

mermaiden

mermaiden generates deterministic Mermaid source from typed Python diagram models. It supports the Mermaid syntax families registered by the package and validates each diagram before rendering its text.

The package produces Mermaid text only. Render it with Mermaid in a browser, Markdown viewer, or your own CLI workflow.

Installation

Python 3.12 or later is required.

pip install mermaiden

The wheel declares and installs its Python dependencies. Generating Mermaid source and using the fixtures, preview, and compat CLI commands need no additional tools. Full SVG validation through Application.validate_render() shells out to Mermaid CLI and requires Node.js with npm/npx plus a compatible browser; set PUPPETEER_EXECUTABLE_PATH when using a system browser.

Quick start

from mermaiden import Application

application = Application.create()
diagrams = application.available_diagrams()
print(diagrams)

Application.available_diagrams() returns the supported diagram catalog. Application.diagram_info(diagram_id) returns the typed diagram API for an individual syntax. CLI workflows are available through python -m mermaiden.cli.

Application API

Application is the boundary for API and persistence adapters. Create a diagram by Mermaid syntax id, apply a named domain command, and persist the JSON-safe snapshot returned by the application.

from mermaiden import Application
from mermaiden.application import DiagramCommand

application = Application.create()
diagram = application.create_diagram("sequenceDiagram")
application.apply(diagram, DiagramCommand("add_participant", {"id": "api", "label": "API"}))

payload = application.snapshot(diagram).to_dict()
restored = application.restore(payload)
source = application.render(restored)

Before committing a revision, callers can require Mermaid's complete rendering and layout phase to produce an SVG. The report is non-mutating and identifies the compatible Mermaid version together with structured diagnostics on failure.

report = application.validate_render(restored)
if not report.success:
    raise RuntimeError(report.diagnostics)
svg = report.svg

Snapshots have a versioned envelope and may be stored as JSON. Newly created and incomplete diagrams are marked as drafts: callers may snapshot and restore them between accepted commands, but Application.render() rejects them until their blocking constraints are resolved. Snapshot parsing and typed hydration still reject malformed persisted data, and restoration verifies snapshots that were recorded as valid. Command argument values use the diagram operation names; JSON string values are accepted for enum arguments.

The caller can discover the REST contract without maintaining a manifest. diagram_description() returns JSON Schema for the diagram's elements, relations, annotations, and commands. command_payload() returns the generated Pydantic request model for one command.

description = application.diagram_description("sequenceDiagram")
payload_type = application.command_payload("sequenceDiagram", "add_participant")
payload = payload_type.model_validate({"id": "api", "kind": "control"})

Updating and moving elements

Mutation arguments are JSON-shaped and validated before the diagram changes. Updates preserve identity, moves preserve the complete subtree, and reorders require the exact current members of one collection. Rejected mutations leave the complete snapshot unchanged.

from mermaiden import Application

application = Application.create()
diagram = application.create_diagram("block")
application.execute(diagram, "add_group", {"id": "source_example", "label": "Source Example"})
application.execute(diagram, "add_group", {"id": "target_example", "label": "Target Example"})
for id, label in (
    ("first_example", "First Example"),
    ("second_example", "Second Example"),
    ("third_example", "Third Example"),
):
    application.execute(
        diagram,
        "add_block",
        {"id": id, "label": label, "parent_id": "source_example"},
    )

application.execute(
    diagram,
    "update_element",
    {"id": "first_example", "kind": "block_node", "changes": {"label": "Updated First Example"}},
)
application.execute(
    diagram,
    "move_element",
    {"id": "first_example", "kind": "block_node", "parent_id": "target_example", "position": 0},
)
application.execute(
    diagram,
    "reorder_elements",
    {"parent_id": "source_example", "element_ids": ["third_example", "second_example"]},
)

for operation, arguments in (
    (
        "update_element",
        {"id": "first_example", "kind": "block_node", "changes": {"id": "renamed_example"}},
    ),
    (
        "move_element",
        {"id": "second_example", "kind": "block_node", "parent_id": "third_example"},
    ),
    (
        "reorder_elements",
        {"parent_id": "source_example", "element_ids": ["second_example"]},
    ),
):
    before = application.snapshot(diagram).to_dict()
    try:
        application.execute(diagram, operation, arguments)
    except RuntimeError:
        pass
    else:
        raise AssertionError(f"{operation} unexpectedly succeeded")
    assert application.snapshot(diagram).to_dict() == before

snapshot = application.snapshot(diagram).to_dict()
restored = application.restore(snapshot)
assert application.snapshot(restored).to_dict() == snapshot
assert application.render(restored) == application.render(diagram)
report = application.validate_render(restored)
assert report.success and report.svg

Development

The repository uses a single host-mode CI target:

make ci

It installs the development dependencies, runs linting, type checks, tests, compatibility validation, Mermaid CLI rendering, and wheel validation. To open the locally generated diagram preview, run:

make diagrams-test

Release

Releases are versioned by annotated vX.Y.Z tags. After make ci passes, create and push the tag, then publish the GitHub release:

git tag -a v2.0.0 -m "v2.0.0"
git push origin v2.0.0
gh release create v2.0.0 --verify-tag --generate-notes --title v2.0.0

Download files

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

Source Distribution

mermaiden-5.2.2.tar.gz (132.6 kB view details)

Uploaded Source

Built Distribution

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

mermaiden-5.2.2-py3-none-any.whl (232.8 kB view details)

Uploaded Python 3

File details

Details for the file mermaiden-5.2.2.tar.gz.

File metadata

  • Download URL: mermaiden-5.2.2.tar.gz
  • Upload date:
  • Size: 132.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mermaiden-5.2.2.tar.gz
Algorithm Hash digest
SHA256 69e8c5488cc1603036c10ab90d801c915028bfc159ead3d229cc4dc9943c2f6d
MD5 7365aad856bf8366591a7cd913e3c6d3
BLAKE2b-256 de70b3ff3c0f2db1ae610d0ec32a85c122b73c0686fad111a6fffb5ac2cb2a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mermaiden-5.2.2.tar.gz:

Publisher: release.yml on szpak-dev/mermaiden

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mermaiden-5.2.2-py3-none-any.whl.

File metadata

  • Download URL: mermaiden-5.2.2-py3-none-any.whl
  • Upload date:
  • Size: 232.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mermaiden-5.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 385434a215e93a23555f888055ed1ab6926ac5d4730ed0709c6289565dc06e12
MD5 4ac59cfede47b9b0ef47db463dc169a4
BLAKE2b-256 7e8b88195a9f429ebbee27f3176f6681a4a909d21708e3f24cd09e81b4e04f45

See more details on using hashes here.

Provenance

The following attestation bundles were made for mermaiden-5.2.2-py3-none-any.whl:

Publisher: release.yml on szpak-dev/mermaiden

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

6.0.0

2 files

5.2.3

2 files

This release

5.2.2 This release

2 files

5.2.1

2 files

5.2.0

2 files

5.1.0

2 files

5.0.0

2 files

4.0.0

2 files

3.1.0

2 files

3.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page