Skip to main content

A matplotlib-style Python library for generating Mermaid diagrams

Project description

sea-nymph

Do you want to show plots in your documentation? Do you want to avoid committing PNGs to git? Do you have an (un)reasonable dislike for SVG files? Look no further!

sea-nymph generates Mermaid charts from Python — plain text that renders natively on GitHub, GitLab, and most modern documentation tools. No image files, no binary blobs, no xml.

The API is modelled after seaborn: pass a DataFrame, name your columns, get a chart.

sea-nymph uses narwhals under the hood, so it accepts any DataFrame library — pandas, polars, PySpark, and more. Generate your markdown charts with distributed computing.

Installation

pip install sea-nymph

High-level API

import polars as pl
from sea_nymph import barplot, lineplot, countplot, histplot, kdeplot

df = pl.DataFrame({
    "month": ["Jan", "Feb", "Mar", "Apr"],
    "revenue": [10, 40, 30, 50],
    "region": ["North", "North", "South", "South"],
})

fig = barplot(df, x="month", y="revenue")
print(fig.render())
xychart-beta
    x-axis [Jan, Feb, Mar, Apr]
    y-axis "Revenue" 0 --> 50
    bar [10, 40, 30, 50]

Available plot functions

Function Description
barplot Bar chart with optional aggregation
lineplot Line chart with optional aggregation
countplot Count (or proportion/percent) of categorical values
histplot Histogram with configurable bins and statistics
kdeplot Kernel density estimate using Silverman's rule

All functions support a hue parameter for grouped series, hue_order and order for controlling category ordering, and palette for custom colours.

Hue

fig = barplot(df, x="month", y="revenue", hue="region", palette=["#4e79a7", "#f28e2b"])

Stat

countplot and histplot accept a stat parameter:

countplot(df, x="month", stat="percent")   # "count" | "percent" | "proportion" | "probability"
histplot(df, x="revenue", stat="density")  # "count" | "frequency" | "probability" | "proportion" | "percent" | "density"

Horizontal charts

Pass y instead of x to flip the orientation:

countplot(df, y="region")
kdeplot(df, y="revenue")

Low-level API

For full control, use XYChart from sea_nymph.mermaidplotlib directly:

from sea_nymph.mermaidplotlib import XYChart

months = ["Jan", "Feb", "Mar", "Apr"]
fig = XYChart()
fig.bar(months, [10, 40, 30, 50])
fig.line(months, [15, 35, 25, 45])
fig.xlabel("Month")
fig.ylabel("Revenue (k)")
fig.ylim(0, 60)
fig.title("Sales 2024")
print(fig.render())
xychart-beta
    title "Sales 2024"
    x-axis "Month" [Jan, Feb, Mar, Apr]
    y-axis "Revenue (k)" 0 --> 60
    bar [10, 40, 30, 50]
    line [15, 35, 25, 45]

Limitations

Mermaid's xychart-beta places all data points equidistantly on the axis. This means:

  • Line charts require evenly-spaced numeric x values — sea-nymph raises an error if they are not.
  • Histograms require equal-width bins for the same reason — unequal bin widths are rejected.

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

sea_nymph-1.0.0.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

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

sea_nymph-1.0.0-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file sea_nymph-1.0.0.tar.gz.

File metadata

  • Download URL: sea_nymph-1.0.0.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sea_nymph-1.0.0.tar.gz
Algorithm Hash digest
SHA256 101776208478fa7d3e287e831f5941d5fb14220e2e7476c84f962c3e27d005f0
MD5 e14a236b59cd56156006df3124348851
BLAKE2b-256 eb1a233b86214e6d95d4bc25aca03a2ba9cec23a76866e429e00c222991703be

See more details on using hashes here.

Provenance

The following attestation bundles were made for sea_nymph-1.0.0.tar.gz:

Publisher: publish.yml on Excidion/sea-nymph

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

File details

Details for the file sea_nymph-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: sea_nymph-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sea_nymph-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6a1b275a75f7be3fb7c7c902025cb161e2fcd2ba00d14e25060cc154d3c78471
MD5 a6f57f35835d668f3e06a55cfb109a91
BLAKE2b-256 68506021d7c2373e5d586b9a53956edd93139371d3c0da1f544e5de1ad67cb75

See more details on using hashes here.

Provenance

The following attestation bundles were made for sea_nymph-1.0.0-py3-none-any.whl:

Publisher: publish.yml on Excidion/sea-nymph

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

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