Open · execution visualization

Code becomes nodes, edges, and a runtime story you can follow.

Write Python, press run, and watch execution stream into a living graph. Scrub a timeline to replay any moment — deterministically — down to the variable.

Live
Streamed events
Replay
Deterministic
Graph
Node-first
main.py · runtimeStreaming
count
8
fibonacci(n)
return seq
seq
011
total
33
How it works

Three moves from source to a graph you can trust.

01

Write & run

Edit Python in a focused editor. One run opens a stream — no setup, no build step, no login.

02

Watch it assemble

Each value, call and collection becomes a node. Data flows in on cyan, execution flows out on amber.

03

Scrub & inspect

Drag the timeline and the whole surface rebuilds at that exact step — graph, console and variables in lockstep.

main.py
1def fibonacci(n):
2 seq = [0, 1]
3 while len(seq) < n:
4 seq.append(seq[-1] + seq[-2])
5 return seq
6
7numbers = fibonacci(8)
8total = sum(numbers)
execution graph
count
8
fibonacci
active
seq
0112
execdata
Capabilities

Built for the moment you ask “what just happened?”

Execution flow

Follow control as it moves — calls, branches and loops trace themselves across the graph as amber execution edges.

State inspection

Every variable, in every scope, at every step. Collections show their deltas: what was appended, sorted, removed.

Replay confidence

The timeline is the source of truth. Rewind to any step and the entire surface is rebuilt exactly as it was.

Pricing

Start free for 7 days. Keep going from ₹199.

Every plan begins with a 7-day Pro trial — phone-verified, payment method on file, cancel anytime. Billed in INR via Razorpay (UPI, cards, or netbanking).

Basic

₹199 /mo
  • Full visualizer + timeline scrubbing
  • Console & variable inspector
  • 180s runs · 256 MB · 2 concurrent
  • Unlimited daily runs (fair use)
Start 7-day trial

Stop reading stack traces. Watch your program run.

LiveFlow
TermsPrivacy© 2026 Manideep Kadambari & Kanishka Yadav