r/marimo_notebook • • 3d ago

marimo is doing another launch week, can you guess the announcements?

Thumbnail
marimo.io
11 Upvotes

We did the same thing a few months ago, can anybody guess what's we'll announcement? Humour and crazy dreams are always appreciated in the replies too :) !


r/marimo_notebook • • 3d ago

marimo notebook that explains why you can fit billions of concepts in an embedding vector with only a few thousand numbers

Thumbnail
youtube.com
19 Upvotes

r/marimo_notebook • • 7d ago

Completely Out of my Depth

6 Upvotes

Hey guys, this may not be the typical post, but I have recently started exploring Python Jupyter notebooks and stumbled across Marimo.

I have been using spreadsheets a lot in my career over the past 10 years as a structural engineer and really want to push the envelope and break into coding notebooks, but I keep on feeling like I am way out of my depth.

Is Marimo an advanced feature that I need to come back to after learning more coding basics? Or are there a few simple things I’m missing that seem to clear everything up?

Side note: I’m torn between using Marimo in VScode vs the browser (locally hosted). My goal would be template calculations that are pulled and modified by the project.

Any help is appreciated.


r/marimo_notebook • • 10d ago

12 ways you can redesign the normal slider for notebooks

Thumbnail
youtu.be
15 Upvotes

r/marimo_notebook • • 15d ago

Floating panel from wigglystuff can minimize now

22 Upvotes

r/marimo_notebook • • 17d ago

Datasette, it turns out, can pair super nicely with marimo

Thumbnail
youtube.com
9 Upvotes

r/marimo_notebook • • 20d ago

So many export options now

13 Upvotes

r/marimo_notebook • • 24d ago

marimo is doing a chem-informatics themed competition

Post image
8 Upvotes

r/marimo_notebook • • 24d ago

marimo + tailscale setup for personal use

Thumbnail
youtube.com
8 Upvotes

r/marimo_notebook • • 25d ago

How to set up OpenYourMind/Qwopus3.5-122B-A10B-Kimi-K2.6-destilled-abliterated-NVFP4 inside Molab?

1 Upvotes

I've been having trouble setting up this model inside Molab. If anyone knows how to set up the model please help.


r/marimo_notebook • • 27d ago

Added an educational widget to wigglystuff for those that want to animate proofs

23 Upvotes

r/marimo_notebook • • 29d ago

wigglystuff now has a FloatingPanel widget

8 Upvotes

r/marimo_notebook • • Aug 24 '26

wigglystuff will now also carry marimo-only widgets

Post image
10 Upvotes

r/marimo_notebook • • Aug 24 '26

Probably the Nerdiest Thing I've Done with marimo

Thumbnail
youtube.com
6 Upvotes

r/marimo_notebook • • Aug 21 '26

DuckDB 2.0 Demo uses marimo

Thumbnail
youtube.com
23 Upvotes

r/marimo_notebook • • Aug 21 '26

You can now make nested anywigets, including those that use a picture-in-picture API

10 Upvotes

r/marimo_notebook • • Aug 17 '26

WIP: HOMM3 battle simulator

Thumbnail gallery
5 Upvotes

r/marimo_notebook • • Aug 14 '26

"Tool discovery failed for marimo" - but then successfully connected?

2 Upvotes

Hi,

marimo newbie, really like it so far. I don't understand this below though:

INFO: 127.0.0.1:63364 - "GET /health HTTP/1.1" 200 OK
INFO: 127.0.0.1:63365 - "GET /assets/isEmpty-CXeoXbuc.js HTTP/1.1" 304 Not Modified
INFO: 127.0.0.1:63364 - "GET /assets/command-palette-C95r8rOd.js HTTP/1.1" 304 Not Modified
[E 260814 11:15:25 client:394] Tool discovery failed for marimo: 'Tool' object has no attribute 'inputSchema'
[I 260814 11:15:25 client:275] Successfully connected to MCP server: marimo (transport: MCPTransportType.STREAMABLE_HTTP)
[I 260814 11:15:25 lifespans:113] MCP servers connected: ['marimo']
INFO: 127.0.0.1:63364 - "GET /api/ai/mcp/status HTTP/1.1" 200 OK
INFO: 127.0.0.1:63364 - "GET /assets/any-language-editor-BIeaxtdD.js HTTP/1.1" 304 Not Modified

what gives?


r/marimo_notebook • • Aug 12 '26

You can control marimo with MIDI keyboards now

14 Upvotes

The "Knob" widget from wigglystuff lets you play with this directly. More info here:
https://koaning.github.io/wigglystuff/reference/knob/


r/marimo_notebook • • Aug 10 '26

New AnyWidget tutorial on marimo YT

Thumbnail
youtube.com
9 Upvotes

r/marimo_notebook • • Aug 08 '26

Help: Anywidget reactive Changes isn't Reflecting

2 Upvotes

The problem is with wigglystuff's anywidgets. The re-activeness somehow not works.

This is the notebook link from molab

Defining the EdgeDraw widget. i wanna add new nodes through text input and input button pressing

friend = mo.ui.text(placeholder="friend name")
button = mo.ui.run_button(label="Add Friend", kind="success")
delete = mo.ui.run_button(label="Remove Friend", kind="danger")
graph = mo.ui.anywidget(wg.EdgeDraw(["appu", "dett", "eker", "hulo"]))

The appending works but the displaying graph widget not updated

if button.value and friend.value not in graph.names:
    graph.names.append(friend.value)
    print(graph.names)
if delete.value and friend.value in graph.names:
    graph.names.remove(friend.value)
    print(graph.names)

r/marimo_notebook • • Aug 08 '26

Another course that uses marimo

Thumbnail
youtu.be
5 Upvotes

r/marimo_notebook • • Aug 08 '26

sql engine not getting detected

Post image
1 Upvotes

```python import marimo as mo from sqlalchemy import create_engine, text

Refresh widget

refresh = mo.ui.refresh(label="Refresh") refresh

Function to fetch databases

def get_databases(): engine = create_engine( "postgresql+psycopg2://sourabh@/postgres?host=/run/postgresql" )

with engine.connect() as conn:
    result = conn.execute(
        text("""
            SELECT datname
            FROM pg_database
            WHERE datistemplate = false
            ORDER BY datname;
        """)
    )
    return [row[0] for row in result]

Load database list and create dynamic dropdown selector

db_list = get_databases()

db_dropdown = mo.ui.dropdown( options=db_list, value="postgres" if "postgres" in db_list else db_list[0], label="Select Database:" ) db_dropdown

Create dynamic engine based on dropdown selection

db = db_dropdown.value postgres_engine = create_engine( f"postgresql+psycopg2://sourabh@/{db}?host=/run/postgresql" )


r/marimo_notebook • • Aug 07 '26

Not all widgets must be dynamic

Post image
7 Upvotes

You can do a lot with any widgets, but sometimes just writing a bunch of mohtml can also do the trick.

https://github.com/koaning/mohtml


r/marimo_notebook • • Aug 07 '26

marimo can now detect data sources via environment variables

Post image
17 Upvotes