Hacker News new | ask | show | jobs
by freeamz 455 days ago
What about using https://github.com/RustPython/RustPython also?
1 comments

Unlike uv this tool is unlikely to solve problems for the average Python user and most likely will create new ones.
Agree, however for user who want to get faster speed out of python wouldn't that just work with rustpython? It can also run in the browser then.
RustPython is just an interpreter written in Rust. There's no reason why it would be meaningfully faster than CPython just because it's written in Rust rather than C. Rust adds memory safety, not necessarily speed.

A new and immature interpreter is going to have other problems:

- Lack of compatibility with CPython - Not up to date with latest version features - Incompatibility with CPython extensions

RustPython is a cool project, but it's not reached the big time yet.