#pyo3 #python-bindings #python

rigetti-pyo3

Utilities for creating a Python wrapper for a Rust library

33 releases

0.4.1 Jul 12, 2024
0.3.6 Jun 13, 2024
0.3.1 Nov 22, 2023
0.1.0 May 25, 2023
0.0.1 Dec 20, 2022

#121 in FFI

Download history 366/week @ 2024-04-05 871/week @ 2024-04-12 268/week @ 2024-04-19 687/week @ 2024-04-26 410/week @ 2024-05-03 51/week @ 2024-05-10 11/week @ 2024-05-17 164/week @ 2024-05-24 207/week @ 2024-05-31 510/week @ 2024-06-07 478/week @ 2024-06-14 204/week @ 2024-06-21 243/week @ 2024-06-28 1295/week @ 2024-07-05 632/week @ 2024-07-12 175/week @ 2024-07-19

2,359 downloads per month
Used in 3 crates

Apache-2.0

120KB
2.5K SLoC

Rigetti PyO3

This crate defines a set of macros for creating PyO3 bindings to an existing Rust crate.

That is, given Rust library crate foo, these macros can be used inside a crate foo-python to create Python bindings. This is not intended for creating a standalone Python library using Rust.

See the docs for more.

A note on feature compatibility

If you want to use PyO3's abi3 feature, you must disable this library's time feature (which is enabled by default). This library provides an abi3 feature you can enable in order to explicitly request pyo3/abi3, which will give a clearer error message in that case.


Rigetti PyO3 is licensed under the Apache License 2.0.


lib.rs:

Helpful macros and traits for creating a Python wrapper of a Rust library.

See Macros and Traits for the main items in this crate.

Usage

See the examples directory in the source for example usage of a majority of the crate.

Alternatively, check the examples on the macros in this documentation.

Dependencies

~5–11MB
~118K SLoC