RustPython is an open-source Python 3 interpreter written in Rust. It can be embedded into Rust programs as a scripting language or compiled to WebAssembly to run Python on the web. The goal of RustPython is to provide a full Python 3 environment entirely in Rust, without relying on CPython bindings. It aims to be fast, reliable, and secure, offering the same possibilities as Jython and IronPython, but for the Rust programming language. One unique feature of RustPython is its ability to compile to WebAssembly, allowing users to run Python code effortlessly in the browser.
https://rustpython.github.io/