Earlier quoted context omitted.
Absolutely It is really underrated. Maybe it's the extension issue, maybe it's something else or maybe it's the fact that it was born as an experimental platform more than anything But it should have been more popular
Python's use base is now dominated by ML and scientific in general isn't it? Both of those communities are relying on extensions completely. I am quite possibly biased as I haven't written any python that didn't use at least numpy.
RustPython
71–80 of 244 posts
Re: RustPython
#72I think it's really cool that Python has a healthy third-party interpreter community. PyPy, IronPython, Jython, and now RustPython expand Python's accessibility. It's very cool to see how many people are working on this, and I wonder what kind of problems with CPython this has exposed also.
I wonder if anyone actually uses those third-party interpreters for anything serious. I've never come across anyone that did.
Otherwise, for normal job running, cloud infrastructure makes this pretty tricky unless you're a big company. I work for a small company and we run python code on things like azure functions, until they support other python interpreters, we'd need a massive expected benefit to justify that sort of self-building of architecture.
Re: RustPython
#73Earlier quoted context omitted.
I wonder if anyone actually uses those third-party interpreters for anything serious. I've never come across anyone that did.
Pypy is nice if you want more performance. From my experience it seems underused. Never seen jython and ironpython used - yet.
I'm guessing almost nobody uses it for their SaaS, but outside of that, these runtimes do see some use.
Re: RustPython
#74That's cool, but now for REAL bare-metal performance someone should rewrite Python in an even lower-level language. That's right, Python written in C is gonna be hella fast! Oh, wait…
Re: RustPython
#75I think it's really cool that Python has a healthy third-party interpreter community. PyPy, IronPython, Jython, and now RustPython expand Python's accessibility. It's very cool to see how many people are working on this, and I wonder what kind of problems with CPython this has exposed also.
I wonder if anyone actually uses those third-party interpreters for anything serious. I've never come across anyone that did.
Jython stuck on Python 2 and doesn't have great interop with the rest of the world Python ecosystem, so I wouldn't recommend it for a new project, but it was a big force multiplier in that use case.
Re: RustPython
#76For a dum dum like me who only dabbles in programming: What would be a use case for this?
Re: RustPython
#77Earlier quoted context omitted.
I wonder if anyone actually uses those third-party interpreters for anything serious. I've never come across anyone that did.
No.. because the only reason to use python is the ecosystem of packages and that's painful enough on the official implementation.
Re: RustPython
#78I think it's really cool that Python has a healthy third-party interpreter community. PyPy, IronPython, Jython, and now RustPython expand Python's accessibility. It's very cool to see how many people are working on this, and I wonder what kind of problems with CPython this has exposed also.
I wonder if anyone actually uses those third-party interpreters for anything serious. I've never come across anyone that did.
I haven’t seen much Jython since, but encountered a few enterprise tools doing this. It was an effective way of enabling advanced use cases and extensions of the existing Java stack without requiring the admin/developer to touch Java.
Re: RustPython
#79Earlier quoted context omitted.
I wonder if anyone actually uses those third-party interpreters for anything serious. I've never come across anyone that did.
No.. because the only reason to use python is the ecosystem of packages and that's painful enough on the official implementation.
Re: RustPython
#80Earlier quoted context omitted.
Absolutely It is really underrated. Maybe it's the extension issue, maybe it's something else or maybe it's the fact that it was born as an experimental platform more than anything But it should have been more popular
Python's use base is now dominated by ML and scientific in general isn't it? Both of those communities are relying on extensions completely. I am quite possibly biased as I haven't written any python that didn't use at least numpy.