This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Trey Hunner
trey.io
did:plc:nanrhx7h54a4p72udpmptgop
Sometimes I wish I could do this:
@suppress(KeyboardInterrupt)
def main():
...
Instead of this:
def main():
with suppress(KeyboardInterrupt):
...
It'd be easy to implement by inheriting from ContextDecorator.
But *should* it be done? Issue 👇
https://github.com/python/cpython/issues/76339
2025-01-16T00:51:01.663Z