Skip to content
A Python Interpreter written in Rust
Rust Python JavaScript Shell HTML PowerShell
Branch: master
Clone or download

Latest commit

Latest commit 7a89a4b Jun 12, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Disabling panic=abort temporarily Jun 2, 2020
Lib Merge pull request #1951 from TheAnyKey/TheAnyKey/p38_named_expressio… Jun 10, 2020
benchmarks Fix benchmarks (maybe?) Apr 3, 2020
bytecode Implement Py38 named expression (PEP 572) (#1934) Jun 1, 2020
compiler Merge pull request #1951 from TheAnyKey/TheAnyKey/p38_named_expressio… Jun 10, 2020
derive Remove some nesting from impl_pymodule, it doesn't fix the span issue… May 17, 2020
examples Make mini_repl thread safe Apr 29, 2020
parser Update README.md Jun 4, 2020
scripts Add script for running rustpython in redoxer with Lib Jun 2, 2020
src EOF after `\\` raise EOF Error May 16, 2020
tests Fix error messages for index overflows Jun 6, 2020
vm Merge pull request #1961 from mrmiywj/support_setresgid_in_os_module Jun 12, 2020
wasm Merge pull request #1933 from RustPython/coolreader18/arc-vm-state May 22, 2020
.dockerignore Update Dockerfile.wasm Jul 18, 2019
.gitattributes Fix Github language statistics to make this a Rust project Sep 16, 2019
.gitignore Added wapm integration 🎉 Oct 7, 2019
.gitpod.Dockerfile Install rls in .gitpod.Dockerfile Feb 4, 2020
.gitpod.yml Add gitpod configuration Feb 3, 2020
Cargo.lock Merge pull request #1955 from RustPython/coolreader18/fix-redox Jun 3, 2020
Cargo.toml Fix compilation on redox Jun 2, 2020
DEVELOPMENT.md Change rustc specific version descriptions Oct 13, 2019
Dockerfile.bin Update dockerfiles Mar 13, 2020
Dockerfile.wasm Update dockerfiles Mar 13, 2020
LICENSE Add LICENSE-logo, update LICENSE to (c) 2020 Mar 11, 2020
LICENSE-logo Add LICENSE-logo, update LICENSE to (c) 2020 Mar 11, 2020
README.md Add link to home page May 30, 2020
code-of-conduct.md Add a code of conduct Mar 7, 2019
crawl_sourcecode.py Add scope type and other symboltable properties. Aug 29, 2019
demo.py readme and example change Sep 23, 2018
demo_closures.py readme and example change Sep 23, 2018
logo.png Add logo to README Mar 22, 2019
pdc.sh corrected and added comments Jun 10, 2020
rustfmt.toml rust fmt Feb 26, 2019
wapm.toml Update version in wapm.toml Apr 24, 2020
whats_left.sh Add RUSTPYTHONPATH to whats_left.sh to run the script without setting… Oct 15, 2019

README.md

RustPython

A Python-3 (CPython >= 3.5.0) Interpreter written in Rust 🐍 😱 🤘.

Build Status codecov License: MIT Contributors Gitter docs.rs Crates.io dependency status WAPM package Open in Gitpod

Usage

Check out our online demo running on WebAssembly.

RustPython requires Rust latest stable version (e.g 1.43.0 at May 24th 2020). To check Rust version: rustc --version If you wish to update, rustup update stable.

To test RustPython, do the following:

$ git clone https://github.com/RustPython/RustPython
$ cd RustPython
$ cargo run demo.py
Hello, RustPython!

Or use the interactive shell:

$ cargo run
Welcome to rustpython
>>>>> 2+2
4

You can also install and run RustPython with the following:

$ cargo install rustpython
$ rustpython
Welcome to the magnificent Rust Python interpreter
>>>>>

Or through the conda package manager:

$ conda install rustpython -c conda-forge
$ rustpython

WASI

You can compile RustPython to a standalone WebAssembly WASI module so it can run anywhere.

$ wapm install rustpython
$ wapm run rustpython
>>>>> 2+2
4

Building the WASI file

You can build the WebAssembly WASI file with:

cargo build --release --target wasm32-wasi --features="freeze-stdlib"

Note: we use the freeze-stdlib to include the standard library inside the binary.

Embedding RustPython into your Rust Applications

Interested in exposing Python scripting in an application written in Rust, perhaps to allow quickly tweaking logic where Rust's compile times would be inhibitive? Then examples/hello_embed.rs and examples/mini_repl.rs may be of some assistance.

Disclaimer

RustPython is in a development phase and should not be used in production or a fault intolerant setting.

Our current build supports only a subset of Python syntax.

Contribution is also more than welcome! See our contribution section for more information on this.

Conference videos

Checkout those talks on conferences:

Use cases

Allthough rustpython is a very young project, it is already used in the wild:

Goals

  • Full Python-3 environment entirely in Rust (not CPython bindings)
  • A clean implementation without compatibility hacks

Documentation

Currently along with other areas of the project, documentation is still in an early phase.

You can read the online documentation for the latest release.

You can also generate documentation locally by running:

$ cargo doc # Including documentation for all dependencies
$ cargo doc --no-deps --all # Excluding all dependencies

Documentation HTML files can then be found in the target/doc directory.

Contributing

Contributions are more than welcome, and in many cases we are happy to guide contributors through PRs or on gitter. Please refer to the development guide as well for tips on developments.

With that in mind, please note this project is maintained by volunteers, some of the best ways to get started are below:

Most tasks are listed in the issue tracker. Check issues labeled with good first issue if you wish to start coding.

To enhance CPython compatibility, try to increase unittest coverage by checking this article: How to contribute to RustPython by CPython unittest

Another approach is to checkout the source code: builtin functions and object methods are often the simplest and easiest way to contribute.

You can also simply run ./whats_left.sh to assist in finding any unimplemented method.

Using a different standard library

As of now the standard library is under construction. You can change a standard library by setting the RUSTPYTHONPATH environment variable.

To do this, follow this method:

$ export RUSTPYTHONPATH=./Lib  # this is same as the default value
$ cargo run -- -c 'import xdrlib'

You can play around with other standard libraries for python. For example, the ouroboros library or CPython Lib.

Compiling to WebAssembly

See this doc

Community

Chat with us on gitter.

Code of conduct

Our code of conduct can be found here.

Credit

The initial work was based on windelbouwman/rspython and shinglyu/RustPython

Links

These are some useful links to related projects:

License

This project is licensed under the MIT license. Please see the LICENSE file for more details.

The project logo is licensed under the CC-BY-4.0 license. Please see the LICENSE-logo file for more details.

You can’t perform that action at this time.