#proc-macro #pyo3 #impl-block #wrapping #helper #procedural #generate

nightly macro pyo3-helper-macros

A procedural macro to help wrapping rust structs for pyo3

6 releases

0.0.6 Jan 3, 2024
0.0.5 Dec 31, 2023

#1843 in Procedural macros

Download history 11/week @ 2023-12-29 2/week @ 2024-01-05 52/week @ 2024-02-23 21/week @ 2024-03-01 328/week @ 2024-03-08 12/week @ 2024-03-15 28/week @ 2024-03-29

369 downloads per month
Used in ferric_crypto_lib

MIT license

31KB
564 lines

Helper Macro For PyO3

This is a crate to provide helper macros for the PyO3 crate. Currently, it only supports wrapping impl blocks with the necessary boilerplate to make them work with PyO3 without having to rewrite functions.

To make this crate not use hacky workarounds to make it work you must use the feature multiple-pymethod for the PyO3 crate and same for this crate. This will enable you to use more than one impl block for a type and activate the wrap_impl macro in this crate. If this is not used you will need to use the pyo3_bindings macro to generate and store the wrapped functions in a file until the impl_pyo3 macro is called that will then generate one single impl block with all the functions in it.

Note that the names of the macros will change in future releases

Future Plans

  • Add support for args where user can specify the supported custom types
  • Add an optional arg where user can specify what we should change some types from and to

See the docs for information on how to use the macros.

Dependencies

~0.5–1MB
~22K SLoC