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.1.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.1-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: typst_marimo-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 0e164763509bd954b081ef8f0faf0c3686178e3dc0b6dfe1a36a57c1604e9e7d
MD5 ff207b8b0a1d9b1865eb0f39882e3999
BLAKE2b-256 ff2d4d7a958b384ba863cdb0b86e69b78e0ce67f55649a43c4e0a63c8ba3ce70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typst_marimo-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 68858dc894cd1600aa65d47d8f666c7033f97e46297236896ec9f20191775a0a
MD5 92818dd3f17ba3fb4a540e7910efdbe3
BLAKE2b-256 8c5cba182b5fb08591876347a5b457206962c0b3266eda6a6499904f7a4addd0

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