Skip to main content

A project providing a Mermaid JS widget for use with HoloViz Panel.

Project description

panel-mermaid

Overview

panel-mermaid is an interactive widget-based tool designed to integrate Mermaid JS diagramming functionality with HoloViz Panel.

This package provides a seamless interface for creating and customizing Mermaid diagrams directly in Python, with the ability to edit configurations and styles interactively. Works in Jupyter notebooks and in your Panel data app.

panel-mermaid

Key Features

  • Interactive Mermaid Diagrams: Easily create flowcharts, sequence diagrams, class diagrams, and more using the familiar Mermaid syntax.
  • Configurable Themes and Looks: Choose from a variety of themes (default, dark, forest, etc.) and looks (classic, handDrawn).
  • Real-time Configuration Updates: Use the MermaidConfiguration widget to dynamically update your diagram’s configuration.
  • Customizable Events: Handle diagram interactions with event subscriptions (e.g., click, mouseover).
  • Font-Awesome Icon Support: Leverage Font-Awesome icons in your diagrams by including the Font-Awesome CSS in your application.

Installation

You can install the package using pip:

pip install panel-mermaid

Usage

1. Basic Mermaid Diagram

Here’s how to create a simple Mermaid diagram using the MermaidDiagram widget:

import panel as pn

from panel_mermaid import MermaidDiagram

pn.extension()

MermaidDiagram(
    object=(
        """
        graph LR
            A[Hello] --> B[Panel] --> E[World]
            A-->C(Mermaid) --> E ;
        """
    )
).servable()

Try on PY.CAFE

2. Customizing the Configuration

Use the MermaidConfiguration widget to interactively modify the Mermaid diagram configuration. Here's an example of how to integrate it:

import panel as pn

from panel_mermaid import MermaidDiagram, MermaidConfiguration

pn.extension()

configuration = MermaidConfiguration(look="handDrawn", theme="forest")
diagram = MermaidDiagram(
    object=(
        """
        graph LR
            A[Hello] --> B[Panel] --> E[World]
            A-->C(Mermaid) --> E ;
        """
    ),
    configuration={"look": "handDrawn", "theme": "forest"},
)

pn.FlexBox(configuration, diagram).servable()

Try on PY.CAFE

3. Event Handling

You can also add event listeners to the diagram, allowing interactivity such as responding to clicks on diagram nodes:

import panel as pn

from panel_mermaid import MermaidDiagram, MermaidConfiguration

pn.extension()

diagram = MermaidDiagram(
    object=(
        """
        graph LR
            A[Hello] --> B[Panel] --> E[World]
            A-->C(Mermaid) --> E ;
        """
    ),
    event_configuration=[("click", ".node")]
)

pn.FlexBox(diagram, pn.pane.JSON(diagram.param.event, theme="light")).servable()

Try it on PY.CAFE

Mermaid Configuration

The MermaidConfiguration widget allows you to adjust diagram styling and themes, making it simple to adapt to various visual preferences. You can customize:

  • Look: Choose between classic or handDrawn.
  • Theme: Choose from several themes like default, dark, forest, etc.

Example:

import panel as pn

from panel_mermaid import MermaidDiagram, MermaidConfiguration

pn.extension()

configuration = MermaidConfiguration(look="handDrawn", theme="forest")
diagram = MermaidDiagram(
    object=(
        """
        graph LR
            A[Hello] --> B[Panel] --> E[World]
            A-->C(Mermaid) --> E ;
        """
    ),
    configuration=configuration,
)

pn.FlexBox(configuration, diagram).servable()

Try on PY.CAFE

Font-Awesome Icons

To use Font-Awesome icons in your Mermaid diagrams, include the Font-Awesome CSS. Once included, you can add icons to your diagrams by prefixing with fa::

import panel as pn

from panel_mermaid import MermaidDiagram

pn.extension(css_files=["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"])

MermaidDiagram(
    object=(
        """
        graph LR
            A[Hello] --> B[fa:fa-chart-simple Panel] --> E[World]
            A-->C(fa:fa-diagram-project Mermaid) --> E ;
        """
    )
).servable()

Try it on PY.CAFE

Diagram Editor

Check out the live Diagram Editor Code or App.

Panel Mermaid | Diagram Editor

Contributions

We welcome contributions to this project! Please feel free to submit issues or pull requests to the GitHub repository. Check out the DEVELOPER_GUIDE for more info.

License

This project is licensed under the MIT License.

Alternative Projects


Start building rich, interactive diagrams directly in your Python applications with panel-mermaid!

Project details


Download files

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

Source Distribution

panel_mermaid-0.1.1.tar.gz (4.3 MB view details)

Uploaded Source

Built Distribution

panel_mermaid-0.1.1-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file panel_mermaid-0.1.1.tar.gz.

File metadata

  • Download URL: panel_mermaid-0.1.1.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.4.20

File hashes

Hashes for panel_mermaid-0.1.1.tar.gz
Algorithm Hash digest
SHA256 a4a64b5763f1e9e9866d455d5a5c274fe8b1e82683eccfa3761df3774de34aea
MD5 45ceab8fbdca27402ebb5fe32d009367
BLAKE2b-256 93a5aa4bfe0547ea2a192ab38f89a98624f2666eca7fa0092d139a7928a13b0c

See more details on using hashes here.

File details

Details for the file panel_mermaid-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for panel_mermaid-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3b31788bf4554872bb1e9542fbf1c43e8de60d0c23bebf95f7d3daf8dcb23467
MD5 6f930a62beaa2077b288236748ae1acf
BLAKE2b-256 f441a2c637bf1b9f794ae6e3e6f110d915954d16a451f5bb63ab545976725566

See more details on using hashes here.

Supported by

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