RustPython is a relatively new project. The aim of the project is to create a
Python interpreter written entirely in Rust. Until now we used many of the language
features available in rust, such as vectors, hashmaps, iterators. To implement standard
library modules, we would like to wrap existing rust crates.
This is what we did with the json module for example.
During this talk, we will demo the current state of the art of the project. We
will take a dive into the internals of RustPython, from parsing, compilation, bytecode
to actual execution on the Python virtual machine. Next to this we will cover
the growing community, and the road ahead!