danijar/handout
Turn Python scripts into handouts with Markdown and figures
repo name | danijar/handout |
repo link | https://github.com/danijar/handout |
homepage | |
language | Python |
size (curr.) | 56 kB |
stars (curr.) | 1839 |
created | 2018-08-28 |
license | Apache License 2.0 |
Python Handout
Turn Python scripts into handouts with Markdown comments and inline figures. An alternative to Jupyter notebooks without hidden state that supports any text editor.
Code | Handout |
---|---|
Getting started
You use Python Handout as a library inside a normal Python program:
- Install via
pip3 install -U handout
. - Run your script via
python3 script.py
. (You can start with theexample.py
from the repository.) - Open
output/index.html
in your browser to view the result. - Iterate and refresh your browser.
Features
Create the handout via doc = handout.Handout(outdir)
to access these features:
Feature | Example |
---|---|
Add Markdown text as triple-quote comments. | """Markdown text""" |
Add text via print() syntax. |
doc.add_text('text:', variable) |
Add image from array or url. | doc.add_image(image, 'png', width=1) |
Add video from array or url. | doc.add_video(video, 'gif', fps=30, width=1) |
Add matplotlib figure. | doc.add_figure(fig, width=1) |
Add custom HTML. | doc.add_html(string) |
Insert added items and save to <outdir>/index.html . |
doc.show() |
Questions
Feel free to create an issue on Github.