← News

pdit 0.7.0: Streaming output

February 2, 2026

What changed

Stdout and stderr now stream inline while a statement runs, so long-running code shows progress immediately instead of waiting for completion.

pdit streaming stdout updates inline while code is running

import time

for i in range(3):
    print(f"step {i + 1}", flush=True)
    time.sleep(1)

Upgrade

Install or upgrade with:

pip install -U pdit