pyo3/python3-sys
James Salter 124a85d749 can build with only a major python 3 version 2015-05-25 15:38:21 +01:00
..
examples
src
.gitignore
Cargo.toml can build with only a major python 3 version 2015-05-25 15:38:21 +01:00
LICENSE
README.md
build.rs can build with only a major python 3 version 2015-05-25 15:38:21 +01:00

README.md

rust-python3-sys

Rust FFI declarations for Python 3. Supports the PEP 384 stable ABI.


This cargo -sys package provides python3 declarations. Licensed under the Python license (see LICENSE).

For a safe high-level API, see rust-cpython.

Usage

python3-sys is available on crates.io so you can use it like this (in your Cargo.toml):

[dependencies.python3-sys]
version = "*"

In Rust, import the crate like this:

extern crate python3_sys as py;

Documentation for the python API is available on [https://docs.python.org/3/c-api/].