Write Python lecture code. Get an interactive viewer on GitHub Pages.
Project description
lectrace
Executable Python lecture notes.
Write a Python script. Run lectrace serve to get an interactive step-through viewer in your browser. Push to GitHub to deploy it to GitHub Pages, automatically.
No Node.js. No configuration. No build step for your students. Just Python.
Inspired by edtrace by Percy Liang.
See it live: AI Lectures, a real course built with lectrace (source)
Install
uv add lectrace
# or
pip install lectrace
Requires Python 3.11+. Zero mandatory dependencies. lectrace uses the standard library only. numpy, torch, and sympy are detected and rendered automatically if already installed in your environment.
Write a lecture
A lecture file is a plain Python script. Define main() first, put helper functions below it, call main() at the end:
# 01_binary_search.py
from lectrace import text, note, plot
def main():
text("# Binary Search")
text("Finds a target in a sorted array in $O(\\log n)$ time.")
arr = [2, 5, 8, 12, 16, 23, 38, 42] # @inspect arr
result = binary_search(arr, 23) # @inspect result
text(f"Found 23 at index `{result}`.")
note("Binary search only works on sorted arrays.")
def binary_search(arr, target):
lo, hi = 0, len(arr) - 1
while lo <= hi:
mid = (lo + hi) // 2
if arr[mid] == target:
return mid
elif arr[mid] < target:
lo = mid + 1
else:
hi = mid - 1
return -1
if __name__ == "__main__":
main()
This gives you three things at once:
python 01_binary_search.py: runs as a plain script, no lectrace involvementlectrace serve: opens the interactive viewer in your browsergit push: deploys to GitHub Pages automatically
The tracer only traces code that runs inside main(). Imports and function definitions are invisible (they're just setup). Helper functions appear in the viewer only when main() actually calls them.
How tracing works
lectrace loads your file silently (running imports and defining functions), then calls main() with sys.settrace active:
- Module-level code (imports,
defstatements): never generates a step main()and every function it calls: stepped through line by line- Functions defined but never called: invisible
When execution enters a helper function, the viewer shows the def line first with arguments already in the variable panel, then steps through the body. When the function returns, the viewer jumps back to the call site.
Variable panel
The variable panel on the right tracks state at every step:
- Inside
main(): only variables marked with# @inspectare shown - Inside any helper function: all local variables are shown automatically, no directives needed
- Call stack: shown above variables when inside a helper, displaying the full chain of calls
- New variables: highlighted in green when they first appear
- Changed variables: highlighted in amber when their value changes
Directives
Inline comments that control tracing and display:
| Directive | Effect |
|---|---|
# @inspect x y |
Show x and y in the variable panel after this line |
# @inspect |
Show all local variables at this line |
# @clear x |
Remove x from the variable panel |
# @stepover |
Execute this line without stepping into any calls it makes |
# @hide |
Run this line silently, never shown in the viewer |
Rendering functions
Call these anywhere inside main() or any function it calls:
| Function | What it renders |
|---|---|
text("# Heading") |
Markdown with LaTeX math ($...$ inline, $$...$$ display) |
text("...", verbatim=True) |
Monospace, whitespace preserved |
image("fig.png", width=400) |
Local file or remote URL (cached) |
video("demo.mp4") |
Embedded video with controls |
link(my_function) |
Clickable jump to that function in the viewer |
link(title="Paper", url="...", authors=["Smith"], date="2024") |
Reference card with hover metadata |
plot({...}) |
Interactive Vega-Lite chart |
note("speaker annotation") |
Presenter note shown as a styled callout |
system_text(["python3", "--version"]) |
Shell command output as verbatim text |
Citing arXiv papers
Pass an arXiv URL to link() and lectrace fetches the title, authors, date, and abstract for you automatically. No manual metadata needed:
# lectrace fetches everything from arXiv
link(url="https://arxiv.org/abs/1706.03762")
# without arXiv auto-fetch, you'd write this by hand
link(title="Attention Is All You Need", authors=["Vaswani", "Shazeer", "Parmar", "..."], date="2017", url="https://arxiv.org/abs/1706.03762")
Both /abs/ and /pdf/ arXiv URLs are supported. Metadata is cached locally so the network request only happens once per paper.
For more robust HTML parsing, install the arxiv extra:
pip install lectrace[arxiv]
# or
uv add lectrace[arxiv]
Without it, lectrace falls back to the standard library's HTML parser, which works for most papers.
Custom type rendering
Implement __lectrace__ on any class to control how it appears in the variable panel:
class Node:
def __init__(self, val, left=None, right=None):
self.val = val
self.left = left
self.right = right
def __lectrace__(self):
return {
"val": self.val,
"left": self.left.val if self.left else None,
"right": self.right.val if self.right else None,
}
Without __lectrace__, nested objects show their full repr. With it, you control exactly what students see.
Viewer
A mobile-responsive React app that works in any browser. Students need nothing installed.
Keyboard shortcuts:
| Key | Action |
|---|---|
→ or l |
Step forward |
← or h |
Step backward |
Shift+→ or j |
Step over forward (skip sub-calls) |
Shift+← or k |
Step over backward |
u |
Step out of current function |
R |
Toggle raw code view |
A |
Toggle reveal animation |
E |
Toggle variable panel |
F |
Toggle fullscreen |
Mobile: swipe left/right to step, tap the Variables bar to expand the variable panel.
File naming
| Pattern | Behaviour |
|---|---|
01_intro.py |
Lecture, appears in sidebar, traced and deployed |
02_sorting.py |
Lecture, sidebar order follows alphabetical sort |
_utils.py |
Helper, imported normally, never traced or shown |
my-course/
_data.py ← shared data, ignored by lectrace
01_intro.py ← first in sidebar
02_complexity.py ← second
03_sorting.py ← third
CLI
lectrace serve # build + serve all lectures at http://localhost:7000
lectrace serve 01_intro.py # serve a single file
lectrace build --output _site # build static site for deployment
lectrace init # generate GitHub Actions workflow + lectrace.toml
lectrace run 01_intro.py # execute and print trace stats (no server)
Deploy to GitHub Pages
lectrace init # generates .github/workflows/lectrace.yml
git add .
git commit -m "add lectures"
git push
Enable GitHub Pages in your repo settings (Source: GitHub Actions). Every push to main rebuilds and redeploys automatically.
How it works
- Tracer: loads the module without tracing, then activates
sys.settraceand callsmain(). Every step shown is inside a function that was actually called. - Serializer: converts Python values to JSON. Primitives are direct. Collections recurse. numpy/torch/sympy are detected lazily.
- Builder: discovers lecture files, runs each through the tracer, writes
traces/*.jsonplus a manifest. Incremental: files are skipped if their SHA-256 hash hasn't changed. - Viewer: a pre-built React + TypeScript SPA bundled into the pip package. Uses HashRouter so it works at any URL depth with zero configuration. Math via KaTeX, charts via Vega-Lite, syntax highlighting via highlight.js.
Documentation
Full documentation: https://praisegee.github.io/lectrace/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lectrace-1.1.26.tar.gz.
File metadata
- Download URL: lectrace-1.1.26.tar.gz
- Upload date:
- Size: 17.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a7b4f57794f0e9042e314198858f21d053cc2637f42434073df728bf4903ba9
|
|
| MD5 |
8b1fd8ea8b44d352d27fb059af60a3df
|
|
| BLAKE2b-256 |
2ef1b16fd24c65e71da5f621746ed64fe83bc647d715a4ecb13ef99d0138b17a
|
Provenance
The following attestation bundles were made for lectrace-1.1.26.tar.gz:
Publisher:
publish.yml on praisegee/lectrace
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lectrace-1.1.26.tar.gz -
Subject digest:
2a7b4f57794f0e9042e314198858f21d053cc2637f42434073df728bf4903ba9 - Sigstore transparency entry: 1501085167
- Sigstore integration time:
-
Permalink:
praisegee/lectrace@513893b578f1f8d0b4ff87f0a51819bc130d59be -
Branch / Tag:
refs/tags/v1.1.26 - Owner: https://github.com/praisegee
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@513893b578f1f8d0b4ff87f0a51819bc130d59be -
Trigger Event:
push
-
Statement type:
File details
Details for the file lectrace-1.1.26-py3-none-any.whl.
File metadata
- Download URL: lectrace-1.1.26-py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a32f3c41f363f8f4e46566aaab1681851092e3de84d62f78c375724841237d3e
|
|
| MD5 |
36d9404bdc967e8fd946889f8dcb237f
|
|
| BLAKE2b-256 |
95b3f784f9ee09f1af409b785118ee187e77728875b1a0ef58eaf1bdbe3f1b97
|
Provenance
The following attestation bundles were made for lectrace-1.1.26-py3-none-any.whl:
Publisher:
publish.yml on praisegee/lectrace
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lectrace-1.1.26-py3-none-any.whl -
Subject digest:
a32f3c41f363f8f4e46566aaab1681851092e3de84d62f78c375724841237d3e - Sigstore transparency entry: 1501085259
- Sigstore integration time:
-
Permalink:
praisegee/lectrace@513893b578f1f8d0b4ff87f0a51819bc130d59be -
Branch / Tag:
refs/tags/v1.1.26 - Owner: https://github.com/praisegee
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@513893b578f1f8d0b4ff87f0a51819bc130d59be -
Trigger Event:
push
-
Statement type: