An anywidget that wraps any widget and records its state as a branching provenance history you can navigate — undo, redo, jump to any node, branch off an earlier state, and label checkpoints. Works in marimo and Jupyter.
Built on trrack (the pure provenance
core); part of the trrackpy
monorepo.
uv add trrack-widget # or: pip install trrack-widgettrrack is pulled in automatically.
Wrap any anywidget; its synced traits are tracked, and every change is committed as a node in the history.
from trrack_widget import Trrackable
tt = Trrackable(counter) # counter is any anywidget.AnyWidget
tt.view # wrapped widget + provenance controls, side by sideDrive it from Python as well as the UI:
tt.undo()
tt.redo()
tt.go_to(node_id) # jump to any node
tt.label("before tuning") # name the current nodett.view— the target and the controls side by side. Usesmarimo.hstackwhen marimo is available, otherwise falls back toipywidgets.HBox.tt.widget— just the wrapped target.tt.controls— just the provenance control UI.
Trrackable(
target, # the widget to track
traits=None, # trait names to track; defaults to the target's
# public synced traits
*,
debounce_ms=0, # coalesce rapid trait changes into one commit
persist_path=None, # convenience: persist to this JSON file
store=None, # any trrack.Store; takes precedence over persist_path
)Pass persist_path to make a session durable. State is restored on the next
construction with the same path (the file is authoritative), and written after
every mutation, coalesced and atomic:
tt = Trrackable(counter, persist_path="state.json")
# ... interact ...
tt.flush_persist() # force any pending write immediatelyFor a non-file backend, pass any trrack.Store:
from trrack import JsonFileStore
tt = Trrackable(counter, store=JsonFileStore("state.json"))The control UI is a React + TypeScript component bundled to
src/trrack_widget/static/controls.js. Installed wheels ship the prebuilt
bundle, so end users never need Node. See the
monorepo CONTRIBUTING guide
for the frontend dev loop.
BSD-3-Clause.