Earlier quoted context omitted.
> This is pretty old, and hasn't seen an update in over a year So pretty much like every Python project then. What's happening to the Python community?
It's stable and mature? If you've been writing JavaScript your whole career you might not know what that looks like.
PyPy.js: Python in the web browser
21–30 of 129 posts
Re: PyPy.js: Python in the web browser
#22Re: PyPy.js: Python in the web browser
#23Re: PyPy.js: Python in the web browser
#24Earlier quoted context omitted.
Yeah weird. I would expect Python2 to be dying off more by now. Wonder if we're headed to an environment where there's essentially 2 separate languages as Python 3 continues to change and grow?
I think we're roughly already there. I think the pivotal moment where Python 2 could've died out rapidly passed and they kept officially supporting it for too long.
Re: PyPy.js: Python in the web browser
#25To my surprise it was faster than Jupyter / CPython for some tasks (e.g. loading and parsing large CSVs).
Re: PyPy.js: Python in the web browser
#26Will web assembly have any effect on a future web based python interpreter? Is there one in the works?
What I gather is that it's compiling CPython to WASM and ships it along with some other utilities. It looks pretty cool.
Re: PyPy.js: Python in the web browser
#27Earlier quoted context omitted.
> This is pretty old, and hasn't seen an update in over a year So pretty much like every Python project then. What's happening to the Python community?
It's stable and mature? If you've been writing JavaScript your whole career you might not know what that looks like.
Re: PyPy.js: Python in the web browser
#28Re: PyPy.js: Python in the web browser
#29Great project. My team used it for a live-coding Python notebook: https://github.com/inkandswitch/livebook#readme To my surprise it was faster than Jupyter / CPython for some tasks (e.g. loading and parsing large CSVs).
I'd expect a much larger difference in tasks that are pure Python (loading a CSV is done primarily through the csv module, i.e. all the hot loops are in C).