Tiny browser-side Graphviz DOT rendering helpers for notebooks and web views
Project description
pip install easydot
import easydot
easydot.render("digraph { A -> B -> C }")
Example
💡 Why easydot
Graphviz is the best way to lay out DOT graphs, but the right runtime depends
on where your code is running. Native dot is great when it is installed;
browser rendering is better in notebooks and sandboxed frontends; server-side
WASM is useful when you want static SVGs without system binaries.
easydot gives all three paths a small Python API.
- One entry point.
easydot.render(...)returns a rich notebook display object;easydot.to_string(...)returns raw HTML or SVG. - Three backends.
browseruses JS/WASM in the frontend,wasmuseswasi-graphvizin Python, andnativeshells to installed Graphviz executables. - Pip-installable default. The browser backend has no Python dependencies and does not require
brew,conda,apt-get, or Dockerfile changes. - Tiny notebook outputs. The WASM bundle is vendored and served once over loopback instead of inlined into every cell.
- Offline-capable. Browser assets ship in the package; server-side backends do not need browser network access.
🔤 Why DOT
DOT is a small text format for graph diagrams. Many Python libraries and build tools can generate it.
- Common output format. NetworkX, pydot, pygraphviz, scikit-learn decision trees, PyTorch and TensorFlow model viz, Dask task graphs, Airflow DAGs, Terraform, Bazel, Ninja,
gprof2dot, and other tools can emit DOT. - LLM-friendly. Models can usually generate DOT for architecture diagrams, state machines, and dependency graphs.
- Plain text. Diffs cleanly, templates easily, pipes nicely.
- Graphviz features. Five layout engines (
dot,neato,fdp,circo,twopi), clusters, HTML-like labels, and styling.
🚀 Usage
Quick start
render() is the main interface. It returns a Graph object that displays
in Jupyter, marimo, and other rich-output environments. Use backend="auto"
(the default) to select the first working backend, or pick one explicitly.
import easydot
# Auto-select the best available backend (native → wasm → browser)
easydot.render("digraph { A -> B -> C }")
# Explicit backends
easydot.render("digraph { A -> B -> C }", backend="browser") # browser JS/WASM
easydot.render("digraph { A -> B -> C }", backend="wasm") # server-side WASM
easydot.render("digraph { A -> B -> C }", backend="native") # native Graphviz
# Fit and scale work on all backends
easydot.render("digraph { A -> B -> C }", fit="horizontal")
easydot.render("digraph { A -> B -> C }", fit="both", scale=1.5)
# Raw output
easydot.svg("digraph { A -> B -> C }") # SVG string (wasm/native)
easydot.html("digraph { A -> B -> C }", fit="horizontal") # display-ready HTML
easydot.native("digraph { A -> B -> C }", format="png") # PNG bytes
Backend guide
| Backend | Runtime | Fit/scale | Best for |
|---|---|---|---|
browser |
frontend JS/WASM | ✓ | notebooks, marimo, JupyterLite, Pyodide |
wasm |
Python WASI runtime | ✓ | saved notebooks, GitHub, CI without Graphviz |
native |
Graphviz executable | ✓ | local/conda/server environments with Graphviz |
Check what works in the current runtime:
caps = easydot.capabilities()
caps["browser"].available # True if local or CDN browser assets are reachable
caps["wasm"].available # True if wasi-graphviz can render a probe graph
caps["native"].available # True if native dot can render a probe graph
backend="auto" uses these probes and chooses native, then wasm, then
browser with local assets, then browser with CDN assets.
Probe results are cached in-process; pass refresh_capabilities=True to
render(..., backend="auto") or refresh=True to capabilities() if the
runtime changes after startup.
Server-side WASM
For static SVG output that works in saved notebooks and GitHub without a live browser runtime:
pip install easydot[wasm]
import easydot
# Raw SVG string
svg = easydot.svg("digraph { A -> B -> C }", backend="wasm")
# Rich display object for notebooks — fit and scale work the same as browser
easydot.render("digraph { A -> B -> C }", backend="wasm", fit="horizontal")
# Display-ready HTML with fit/scale
html = easydot.html("digraph { A -> B -> C }", backend="wasm", fit="both")
Native Graphviz
If Graphviz executables are installed and available on PATH, easydot can
render through the native toolchain:
import easydot
svg = easydot.svg("digraph { A -> B -> C }", backend="native")
easydot.render("digraph { A -> B -> C }", backend="native", fit="horizontal")
# Non-SVG formats: native() returns bytes for binary formats
png_bytes = easydot.native("digraph { A -> B -> C }", format="png")
pdf_bytes = easydot.native("digraph { A -> B -> C }", format="pdf")
The native backend shells to the selected Graphviz engine, such as dot or
neato, and fails if the executable is missing or Graphviz returns an error.
pydot
pip install easydot[pydot]
import easydot, pydot
graph = pydot.Dot("example", graph_type="digraph")
graph.add_edge(pydot.Edge("A", "B"))
easydot.render(graph)
NetworkX
import easydot, networkx as nx
from networkx.drawing.nx_pydot import to_pydot
G = nx.DiGraph([("A", "B"), ("B", "C"), ("A", "C")])
easydot.render(to_pydot(G))
CLI
# HTML output (default) — fit and scale work on all backends
echo 'digraph { A -> B }' | easydot # browser backend HTML
echo 'digraph { A -> B }' | easydot --backend auto # best available backend
echo 'digraph { A -> B }' | easydot --backend wasm --fit horizontal # WASM with fit
echo 'digraph { A -> B }' | easydot --backend native --scale 1.5 # native with scale
# Raw SVG (wasm or native only)
echo 'digraph { A -> B }' | easydot --format svg --backend wasm
echo 'digraph { A -> B }' | easydot --format svg --backend native
# Binary formats (native only)
echo 'digraph { A -> B }' | easydot --format png --backend native > graph.png
echo 'digraph { A -> B }' | easydot --format pdf --backend native > graph.pdf
easydot --urls # print asset server URLs
🔀 Source Modes
By default, easydot tries a pinned CDN URL first and falls back to the local server.
| Mode | Local | CDN | Best for |
|---|---|---|---|
auto |
yes | yes | Most setups (default; CDN first, then local fallback) |
local |
yes | no | Offline environments with no internet access |
cdn |
no | yes | Remote hosts where 127.0.0.1 isn't browser-reachable |
easydot.render("digraph { A -> B }", source="cdn")
Environment variables
Set a notebook-wide default without editing every call:
import os
os.environ["EASYDOT_SOURCE"] = "cdn" # auto | local | cdn
Only applies when source="auto". Explicit source= arguments still win.
For hosted marimo environments that protect generated iframe file URLs, force a self-contained iframe:
os.environ["EASYDOT_IFRAME_MODE"] = "srcdoc" # auto | managed | srcdoc | data
PyCharm notebooks are detected automatically and use a data: iframe because
their output recycling can detach and reattach srcdoc iframes while scrolling.
You can force that wrapper explicitly with EASYDOT_IFRAME_MODE="data".
The same modes are available per render call:
easydot.render("digraph { A -> B }", iframe_mode="data")
📓 marimo
Works out of the box. easydot detects marimo and uses its iframe display helper automatically, since marimo doesn't execute inline scripts from plain text/html outputs. All source modes work.
The managed iframe mode uses the installed notebook iframe helper when
available; otherwise it falls back to srcdoc.
uv run marimo edit examples/demo.py # edit the demo
uv run marimo run examples/demo.py --headless --port 2718 --no-token # read-only preview
⏳ Large Graphs
Browser rendering is asynchronous relative to notebook cell execution: a cell
can finish before the browser has loaded Graphviz WASM and produced the SVG.
By default, easydot renders on the output iframe's main thread and shows an
in-progress indicator while the graph is rendering. You can opt into Web Worker
rendering for large graphs.
easydot.render(dot, worker=False) # default: render on the output iframe's main thread
easydot.render(dot, worker="auto") # try a worker, visibly fall back if unavailable
easydot.render(dot, worker=True) # require a worker; no main-thread fallback
If worker rendering is unavailable and worker="auto" is used, easydot shows
a warning before falling back to main-thread rendering. Large graphs may freeze
that output iframe until Graphviz finishes in fallback mode.
🔌 Library Integration
For libraries that generate their own HTML, use the lower-level asset API:
from easydot import asset_urls
js_url = asset_urls()["js"]
const mod = await import(jsUrl);
const graphviz = await mod.Graphviz.load();
const svg = graphviz.layout("digraph { A -> B }", "svg", "dot");
Need server-side rendering to files? Use
easydot.to_string(..., backend="wasm")oreasydot.to_string(..., backend="native").
Runtime model
The asset server is intentionally narrow:
- Binds only to
127.0.0.1 - OS-assigned ephemeral port
- Serves only known packaged files (no directory browsing)
- Long-lived cache headers
- Shuts down automatically when the Python process exits
📜 License
| Component | License |
|---|---|
easydot Python code |
BSD-3-Clause |
| Vendored Graphviz WASM | Apache-2.0, from @hpcc-js/wasm-graphviz. Pinned version in src/easydot/_version.py |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file easydot-0.2.1.tar.gz.
File metadata
- Download URL: easydot-0.2.1.tar.gz
- Upload date:
- Size: 653.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0e59308f921a54fc038fe106634247b63b9844a3035e2ceeec4d77e47e0daa1
|
|
| MD5 |
b0b92640206a921c7fd598b2a3ff4a95
|
|
| BLAKE2b-256 |
d00b07ff5ffaf47e6f8490727e732e70185bf682b153a43faa1fc73f1960867b
|
Provenance
The following attestation bundles were made for easydot-0.2.1.tar.gz:
Publisher:
publish.yml on pablormier/easydot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
easydot-0.2.1.tar.gz -
Subject digest:
a0e59308f921a54fc038fe106634247b63b9844a3035e2ceeec4d77e47e0daa1 - Sigstore transparency entry: 1414698527
- Sigstore integration time:
-
Permalink:
pablormier/easydot@65830015b1a968bfd754d7a70847606911f48c32 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/pablormier
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@65830015b1a968bfd754d7a70847606911f48c32 -
Trigger Event:
push
-
Statement type:
File details
Details for the file easydot-0.2.1-py3-none-any.whl.
File metadata
- Download URL: easydot-0.2.1-py3-none-any.whl
- Upload date:
- Size: 664.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2e98a9bb872314419db0eb7484cd57f069231b1f770659177ab821a4fbacf16
|
|
| MD5 |
76a9eaa37ff09316ae8395c05fafd9af
|
|
| BLAKE2b-256 |
419a52e358e841105058106fc76fba2fbfa500ab0f4d149e09b0eda0ccbc85bc
|
Provenance
The following attestation bundles were made for easydot-0.2.1-py3-none-any.whl:
Publisher:
publish.yml on pablormier/easydot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
easydot-0.2.1-py3-none-any.whl -
Subject digest:
d2e98a9bb872314419db0eb7484cd57f069231b1f770659177ab821a4fbacf16 - Sigstore transparency entry: 1414698602
- Sigstore integration time:
-
Permalink:
pablormier/easydot@65830015b1a968bfd754d7a70847606911f48c32 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/pablormier
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@65830015b1a968bfd754d7a70847606911f48c32 -
Trigger Event:
push
-
Statement type: