Skip to content

Instantly share code, notes, and snippets.

@manzt
Created November 21, 2025 14:31
Show Gist options
  • Select an option

  • Save manzt/0479597ba5381f650a8e65d1557c34ee to your computer and use it in GitHub Desktop.

Select an option

Save manzt/0479597ba5381f650a8e65d1557c34ee to your computer and use it in GitHub Desktop.
test.py
# /// script
# requires-python = ">=3.14"
# dependencies = [
# "marimo>=0.17.0",
# "polars",
# "pyzmq",
# ]
# ///
import marimo
__generated_with = "0.17.8"
app = marimo.App()
@app.cell
def _():
import marimo as mo
slider = mo.ui.slider(0, 10)
slider
return
@app.cell
def _():
print("hi pj")
return
@app.cell
def _():
import polars as pl
return
@app.cell
def _():
return
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment