Last active
July 12, 2025 19:29
-
-
Save ruben-arts/2816e4cdffea9dd7fcf194309f6e8cdf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /// script | |
# requires-python = ">=3.13" | |
# dependencies = [ | |
# "marimo", | |
# "polars==1.31.0", | |
# "rerun-notebook==0.23.4", | |
# ] | |
# | |
# [tool.uv] | |
# exclude-newer = "2025-07-12T10:24:35.205881-07:00" | |
# /// | |
import marimo | |
__generated_with = "0.14.10" | |
app = marimo.App(width="medium") | |
@app.cell | |
def _(): | |
from rerun_notebook import Viewer | |
Viewer( | |
url="https://app.rerun.io/version/0.23.4/examples/arkit_scenes.rrd", | |
panel_states={ | |
"blueprint": "hidden", | |
"selection": "hidden", | |
"time": "collapsed", | |
}, | |
) | |
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