Skip to main content

Typst extension, adding support for generating images from a companion Marimo notebook

Project description

typst-marimo

Generate images and values in a Marimo notebook; load them in Typst.

This is essentially a thin wrapper around matplotlib's savefig and Typst's image, with some guards:

  • a checksum to be sure that the images are up-to-date;
  • impossible to save two different images under the same name.

Installation

pip install typst-marimo

Usage

In Marimo:

import matplotlib.pyplot as plt
from typst_marimo import export_image_to_typst, export_value_to_typst

x = plt.plot(...)

# Usage is `export_image_to_typst(x)`, called from within a Marimo cell (not within a
# function) on a matplotlib object.
#
# This will save the image under `x.png`, using the name of the variable. Marimo
# requires all global variables to have unique names, so this safely avoids the
# possibility of accidentally using the same name twice.
#
# This command will also save `.typst-marimo/lib.typ` for loading from Typst.
export_image_to_typst(x)

y = "37 #sym.degree;C"

# Usage is `export_value_to_typst(y)`. Same as the above, but instead of saving a image
# then we save `str(y)`, and evaluate this as Typst code when imported.
export_value_to_typst(y)

Then run your marimo notebook, either via marimo ... your-notebook.py or via python your-notebook.py. This will save and generate your images, along with a checksum that they are up-to-date.

In Typst:

#import ".typst-marimo/lib.typ": import-image-from-marimo, import-value-from-marimo

// Usage is `import-image-from-marimo(notebook, variable, ..args)`, with
// remaining arguments passed on to `image`.
//
// Importantly (the whole point of this package), it will error out if the
// image is not up-to-date.
#let my-image = import-image-from-marimo("your-notebook.py", "x", width: 50%)

// Usage is `import-value-from-marimo(notebook, variable, mode)`.
//
// `mode` is the same as in `eval(..., mode: ...)`, and must be one of `"markup"`,
// `"math"` or `"code"`.
#let my-value = import-value-from-marimo("your-notebook.py", "y", mode: "markup")

FAQ

Typst incorrectly states that the Marimo notebook is out of date?

Marimo is happy to ignore some whitespace changes and in this case will avoid recompiling; Typst is not so lenient about detecting this. The easiest way to resolve this is to force a re-run of the whole notebook, via the 'Restart kernel' command in Marimo.

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

typst_marimo-0.1.2.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

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

typst_marimo-0.1.2-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

File details

Details for the file typst_marimo-0.1.2.tar.gz.

File metadata

  • Download URL: typst_marimo-0.1.2.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.14

File hashes

Hashes for typst_marimo-0.1.2.tar.gz
Algorithm Hash digest
SHA256 40d4dbc6b39939662a701d237a6fe403fb18fd770fa8c5c562485d29eb2809f1
MD5 64742b14e0bcc6e511cc9313f698f7c5
BLAKE2b-256 63c05d792e46953c24092b9ebc78915787581375e2b3e6bc4a8c2e881fa737d2

See more details on using hashes here.

File details

Details for the file typst_marimo-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for typst_marimo-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a0eafcd2d080a66d0242295460a7fb72753468a1c3088e2d3d143526ebe98d9d
MD5 e4f458c5ee5a41b7b5d52699f7382c7b
BLAKE2b-256 b2da7e6bcf71e0584ea602b091319d29ac95d00e9e00134ae7038e732976d7b0

See more details on using hashes here.

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