
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
mermaid-builder
Advanced tools
MermaidJS Markup builder helps to script MermaidJS markup creation.
MermaidJS is an amazing product, but the syntax is very human readable and writeable (comparing to graphviz for exmaple).
for example, node or arrow shape on a flowchart is something that is easy to see as ASCII, but not easy to adhoc script.
This library should help to write mermaidJS markup, which then can be rendered in Markdown/github or playground.
Next tasks on my list:
chart = (Chart(title='test1')
.add_node('user')
.add_node('client')
.add_node('server')
.add_node('database')
.add_link_between('user', 'client')
.add_link_between('client', 'server')
.add_link_between('server', 'database'))
chart = Chart(title='Test', direction=ChartDir.TB)
node1 = Node(title="this is my node", id='my-node', shape=NodeShape.HEXAGON)
node2 = Node(title="this is my second node")
chart.add_node(node1).add_node(node2)
link = Link(src=node1.get_id(), dest=node2.get_id(), text='this is my link')
chart.add_link(link)
subgraph = Subgraph(title='subgraph', direction=ChartDir.LR)
subgraph.add_node(Node(title='i am a node inside subgraph'))
subgraph2 = Subgraph(title='subgraph2', direction=ChartDir.LR)
sn1 = Node(title='subnode 2')
sn2 = Node(title='subnode 3')
(subgraph2
.add_node(sn1)
.add_node(sn2)
.add_link(Link(src=sn1, dest=sn2, text='link between subnodes')))
subgraph.add_subgraph(subgraph2)
chart.add_subgraph(subgraph)
diagram = SequenceDiagram()
client = Participant(id='C', label='Client')
server = Participant(id='S', label='Server')
database = Participant(id='D', label='Database')
(diagram
.add_participant(client)
.add_participant(server)
.add_participant(database)
.add_message(Message(src=client, dest=server, text='HTTP Request', activation_mode=ActivationMode.ACTIVATE))
.add_message(Message(src=server, dest=database, text='SQL Query'))
.add_message(Message(src=database, dest=server, text='Result', arrow=ArrowType.DOTTED_LINE_NO_ARROW))
.add_message(Message(src=server, dest=client, text='HTTP Response', activation_mode=ActivationMode.DEACTIVATE))
.add_note(Note(participants=[client], text='This is a note', position=NotePosition.LEFT_OF)))
see flowchart_test.py and sequence_diagram_test.py for more examples.
This library doesn't have any dependencies.
python3 -m venv venv
source venv/bin/activate
pip3 install -e .
Just use python3.5+ , as it's using types and Union
pytest
to preview - paste results to https://www.devtoolsdaily.com/diagrams/mermaidjs/playground/
FAQs
MermaidJS markup builder for Python
We found that mermaid-builder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.