Marimo

Numerous supports Marimo as an app engine; however, we have no affiliation with them. If you decide to use Marimo, we encourage you to join their community to contribute to their development and learn more.

Home page: Marimo (opens in a new tab)
Documentation: Marimo Docs (opens in a new tab)

Marimo "Hello, World!" example

Create a file and name it app.py. Copy and paste the following code into the file:

app.py
import marimo
 
__generated_with = "0.1.73"
app = marimo.App()
 
 
@app.cell
def __(mo):
    mo.md("hello world")
    return
 
 
@app.cell
def __():
    import marimo as mo
 
 
if __name__ == "__main__":
    app.run()

Create a file and name it requirements.txt. Copy and paste the following code into the file:

requirements.txt
marimo

Alternatively, you can clone the code on this page from here (opens in a new tab).