Pyodide Issues
I am currently working on an online console for Quackery that is using the Pyodide in-browser Python interpreter. The only bad thing is, Python’s input()
function blocks until input is provided, which can’t be done in the browser because everything is asynchronous. The only way for it to …