Notebooks#

Worked examples as marimo notebooks — plain Python files with @app.cell decorators, so they diff and review like source rather than like JSON, and they run three ways:

pip install 'mirpy-lib[examples]'
marimo edit examples/signature_pipeline.py    # interactive
marimo run  examples/signature_pipeline.py    # read-only app
python      examples/signature_pipeline.py    # plain script; prints, no UI

Each one bootstraps its own data from Hugging Face and caches it under examples/.data/, so a fresh pip install is enough — no local paths and no pre-staged files. Drop a copy under ./data_dump/ (gitignored) and it is used instead of downloading.

Start here#

Going further#