b3e20e900b
* fix ucs4 build broken by bb13ec * add utf16 decoding to unicode.from_py_object for narrow unicode builds * change unicode narrow/wide cfg flag to be Py_UNICODE_SIZE_4 not Py_UNICODE_WIDE, which doesn't appear in sysconfig * support framework builds on os x * python27-sys exports compilation flags as cargo vars, and rust-python resurrects them as cfg flags * travis runs against local python27-sys * rust-cpython depends on git python27-sys, because the one on cargo is now incompatible with it (since bb13ec) |
||
---|---|---|
examples | ||
extensions | ||
python3-sys | ||
python27-sys | ||
src | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
LICENSE | ||
Makefile | ||
README.md | ||
build.rs |
README.md
rust-cpython
Rust bindings for the python interpreter.
- Documentation
- Cargo package: cpython
Copyright (c) 2015 Daniel Grunwald. Rust-cpython is licensed under the MIT license. Python is licensed under the Python License.
Usage
cpython
is available on crates.io so you can use it like this (in your Cargo.toml
):
[dependencies.cpython]
version = "*"
Example program displaying the value of sys.version
:
extern crate cpython;
use cpython::{PythonObject, Python};
fn main() {
let gil_guard = Python::acquire_gil();
let py = gil_guard.python();
let sys = py.import("sys").unwrap();
let version = sys.get("version").unwrap().extract::<String>().unwrap();
println!("Hello Python {}", version);
}