This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Andy Wheeler
crimede-coder.bsky.social
did:plc:6vsugoeoss7c3uue24alywv4
Pro python tip, I like to develop in the REPL. That way I can use the reload library to edit functions. E.g.
from src import myfunc
test = myfunc(...) # errors out
Then can do
from importlib import reload
reload(myfunc) # edit the source before this
test = myfunc(...) # works
2025-08-26T14:55:44.401Z