Skip to main content

Flexible interface for defining functions with marimo UI inputs

Project description

marimo-functions

Flexible interface for defining functions with marimo UI inputs

What is a "Marimo Function"

When running analysis in marimo, it is common to have a set of inputs which are all mapped as inputs to a particular function. The marimo-functions library provides a simple framework for implementing this pattern of user interaction.

The MarimoFunction class has an inputs attribute which maps keyword arguments to marimo UI elements. The type attribute of each input specifies the UI element, and all of the remaining kwargs are passed to the constructor.

The run() method then takes the kwargs provided by the user and runs any method that consumes them appropriately.

For example:

from marimo_functions import MarimoFunction
from sklearn.manifold import TSNE as SKTSNE


class TSNE(MarimoFunction):
    """
    A class representing a t-SNE (t-distributed Stochastic Neighbor Embedding) function.
    """
    inputs = {
        "n_components": {
            "type": "number",
            "label": "Number of components",
            "value": 2,
            "start": 1,
            "step": 1
        },
        "perplexity": {
            "type": "number",
            "label": "Perplexity",
            "value": 30,
            "start": 5,
            "stop": 50,
            "step": 1
        },
        "early_exaggeration": {
            "type": "number",
            "label": "Early exaggeration",
            "value": 12.0,
            "start": 1.0,
            "stop": 100.0,
            "step": 0.1
        },
        "random_state": {
            "type": "number",
            "label": "Random State",
            "value": 0
        }
    }
    name = "t-SNE"
    description = "T-distributed Stochastic Neighbor Embedding."

    @classmethod
    def run(cls, **kwargs) -> SKTSNE:
        return SKTSNE(**kwargs)

Using a Function

To make use of a function in marimo, simply prompt the user for the inputs:

# func: MarimoFunction
inputs = func.prompt()
inputs

Note that by using inputs as the last line in the marimo cell, it is presented as a UI element to the user.

And then run the function using the values provided by the user:

output = func.run(**inputs.value)

Picking a Function

In addition to the single function, this library provides a mechanism for selecting a function of interest from a dropdown menu.

from marimo_functions import PickFunction

selected_function = (
    PickFunction(
        functions=[
            FunctionA,
            FunctionB,
            FunctionC,
            FunctionD,
            FunctionE
        ]
    )
    .prompt(
        label="Select a function",
        value="Function A"
    )
)
selected_function

The function selected by the user can be populated by the value attribute.

func = selected_function.value

# Display the description of the function
mo.md(func.description)

Interactive Example

To run a marimo notebook displaying this functionality:

  1. Set up the local environment (uv sync)
  2. Launch the notebook (uv run marimo edit example.py)

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

marimo_functions-0.4.0.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

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

marimo_functions-0.4.0-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file marimo_functions-0.4.0.tar.gz.

File metadata

  • Download URL: marimo_functions-0.4.0.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marimo_functions-0.4.0.tar.gz
Algorithm Hash digest
SHA256 77b9c1f1c87ed5690e0557fc3634897371b8e18587bd63f75c7fb2524d36cd8e
MD5 908d9c197bfa0bde63fe4bbf1ea538a8
BLAKE2b-256 ef05a22b26129baa20ac93d94e6c5d6f4025ce57338198cdffac748609eeb20f

See more details on using hashes here.

Provenance

The following attestation bundles were made for marimo_functions-0.4.0.tar.gz:

Publisher: release.yaml on FredHutch/marimo-functions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file marimo_functions-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for marimo_functions-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0c1dd26bec321a15701a04fa3b39340396231e2121c605834278f524cfd4b81d
MD5 ed4cd7ff7d69f0774170a98cdc1aa17d
BLAKE2b-256 84ba1b6d2d692e2bec21383766170817e0aeaefe57574fcb1340e07b8d376066

See more details on using hashes here.

Provenance

The following attestation bundles were made for marimo_functions-0.4.0-py3-none-any.whl:

Publisher: release.yaml on FredHutch/marimo-functions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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