Skip to main content

Use Python to execute simple Rust code by running it on https://play.rust-lang.org/

Project description

rust-without-rust

Pypi Version Build Status

This is a small tool written in Python which allows you to compile simple Rust code through http://play.rust-lang.org.

Installation

You can install this package from PyPi.

pip install rust-playground

You can also clone this repository locally and run setup.py.

python setup.py install

Usage

usage: playground [-h] [--release] [--channel {stable,nightly,beta}]
                  [--target {llvm-ir,wasm,asm,mir,ast}] [--disable-color]
                  FILE

Use Python to execute simple Rust code by running it on https://play.rust-
lang.org/

positional arguments:
  FILE                  path to file containing Rust code

optional arguments:
  -h, --help            show this help message and exit
  --release             build artifacts in release mode, with optimizations
                        (default: False)
  --channel {stable,nightly,beta}
                        set Rust channel (default: stable)
  --target {llvm-ir,wasm,asm,mir,ast}
                        build for the target triple (default: ast)
  --disable-color       disable colors and styles for stderr (default: False)

Example

Say you want to quick test some Rust code but your current machine doesn't have the Rust compiler installed.

// test.rs
fn main() {
    for x in 1..5 {
        println!("{}", x);
    }
}
$ playground test.rs
   Compiling playground v0.0.1 (file:///playground)
    Finished dev [unoptimized + debuginfo] target(s) in 2.36s
     Running `target/debug/playground`
1
2
3
4

It reads your test.rs and passes it to http://play.rust-lang.org for compilation and then returns stdout/stderr output on your terminal, which looks very alike to $ cargo run.

License

License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

rust_playground-0.1.1-py2.py3-none-any.whl (4.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file rust_playground-0.1.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for rust_playground-0.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6779f026aeb0369bfbc9793cbb68427a130b000517db5552b5a36cbd3bb719ca
MD5 cc86813bd48f0c2778ea42f55bddce7e
BLAKE2b-256 c30b0046db21dca1743a10a4294ddd798468da862fdd6640f492dd5719040127

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page