Javascript diagrammers and magics for IPython and Jupyter notebooks
Project description
nb_js_diagrammers
IPython magics for rendering diagrams from simple scripts in Jupyter notebooks using various JavaScript diagram generators.
Simple magics for rendering diagrams from line and cell magics using the following JavaScript diagram generators:
- Mermaid.js: a wide variety of diagram types, including flowcharts, sequence diagrams, entity relationship diagrams
- flowchart.js: flowchart generator
- wavedrom: timing diagram generator
- waversurfer.js: audio waveform visualisation
Installation
Install from PyPi as: pip install --upgrade nb-js-diagrammers
Install direct from this repository as:
pip install --upgrade git+https://github.com/innovationOUtside/nb_js_diagrammers.git
or:
pip install --upgrade https://github.com/innovationOUtside/nb_js_diagrammers/archive/main.zip
Usage
Load the magics into a notebook using:
%load_ext nb_js_diagrammers
All magics support a -o / --outfile
that can be used to specify the name of a generated html file that is then embedded in the notebook via an iframe. If no filename is specified, a filename with a randomly generated UID based will be created.
You can then generate diagrams using the appropriate diagram syntax and block magic.
The flowchart_magic
, mermaid_magic
and wavedrom_magic
also act as line magics. Put the diagram script into a variable (my_script
) then call as %mermaid_magic --src my_script -h 1000
etc.
Note that for block magics, the code cell MUST start the %%
- even blank lines and comment lines preceding the the block magic will raise an error.
%%flowchart_magic -h 100 -o flowchart.html
st=>start: Start
e=>end: End
op1=>operation: Generate
op2=>parallel: Evaluate
st(right)->op1(right)->op2
op2(path1, top)->op1
op2(path2, right)->e
%%wavedrom_magic -h 100
{ signal : [
{ name: "clk", wave: "p......" },
{ name: "bus", wave: "x.34.5x", data: "head body tail" },
{ name: "wire", wave: "0.1..0." },
]}
%%mermaid_magic -h 500
flowchart TD
A[Start] --> B{Is it?};
B -->|Yes| C[OK];
C --> D[Rethink];
D --> B;
B ---->|No| E[End];
%%mermaid_magic -h 250
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
%%mermaid_magic -h 350
sequenceDiagram
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
Alice-)John: See you later!
%%mermaid_magic -h 330
erDiagram
CUSTOMER ||--o{ ORDER : places
CUSTOMER {
string name
string custNumber
string sector
}
ORDER {
int orderNumber
string deliveryAddress
}
%wavesurfer_magic -f https://ia802606.us.archive.org/35/items/shortpoetry_047_librivox/abou_ben_adhem_hunt_mlb.mp3
Generating Flowcharts from Python Code
An additional magic is provided that uses the pyflowchart
package to generate a flowchart describing Python code cell in an appropriately magicked code cell:
%%pyflowchart_magic -h 800
import time
def demo(msg='demo'):
for i in range(10):
print(f'{msg} loopcount is {i}')
time.sleep(i)
The -x / --execute
flag will execute the code in the current notebook scope. Without the flag, the code is not executed.
More clunkily, we can also grab and chart code from an executed code cell using the following recipe (this captures cell content from the previously executed cell):
%%capture code
# This gets the content of the previous cell
# and stores it in the variable: code
%history -l 1
We can then render a flowchart from the captured code cell content:
from pyflowchart import Flowchart
from nb_js_diagrammers.flowchartjs import TEMPLATE_FLOWCHARTJS
from nb_js_diagrammers.magics import js_ui
# Generate a flowchart from the grabbed code
fc = Flowchart.from_code(code.stdout)
# Render the flowchart via an external, IFrame embedded HTML page - DEPRECATED
# (Code in package but commented out)
#js_ui({"src":fc.flowchart()}, TEMPLATE_FLOWCHARTJS, height=800)
# Render flowchart via repr_html IFrame with html in srcdoc
diagram = JSDiagram(fc.flowchart()}, TEMPLATE_FLOWCHARTJS, height=200)
diagram
We can also save the HTML to a file:
diagram.save_html("myfile.html")
Generating Static Image Files
To generate static image files using mermaid.js
, see: https://github.com/mermaid-js/mermaid-cli
The wavedrom
images have a save as png or SVG option (right click over diagram)
Further reading
A Simple Pattern for Embedding Third Party Javascript Generated Graphics in Jupyter Notebooks
See also
Previewing Sphinx and Jupyter Book Rendered Mermaid and Wavedrom Diagrams in VS Code
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
File details
Details for the file nb-js-diagrammers-0.0.9.tar.gz
.
File metadata
- Download URL: nb-js-diagrammers-0.0.9.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a6345e920ee5f1750582ac296411288fa1995d53658b9f4945941522c170521 |
|
MD5 | 70160ed4a0c1136287afa00212b85d29 |
|
BLAKE2b-256 | 25b9328f96caf2d8440975305b72b138d02e33d05bcc1dbab18f5cb9d48b6e52 |
File details
Details for the file nb_js_diagrammers-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: nb_js_diagrammers-0.0.9-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db2a60adfaf85851afc4cd8ec34b61dbab7137bd669b32066013c999fb8243fa |
|
MD5 | 9153f21f59d3286c4ac228ce90eb867a |
|
BLAKE2b-256 | b99a4102d3e36f20138abbf54b804adf03c5833dac6112acba5f79bf0fb178b6 |