#pyo3 #python #methods #automatic #derive #repr #dunder

pyo3_special_method_derive

Automatically derive Python dunder methods for your Rust code

14 unstable releases (3 breaking)

0.4.2 Jul 20, 2024
0.4.1 Jul 19, 2024
0.3.1 Jul 19, 2024
0.3.0 Jun 25, 2024
0.1.3 Jun 17, 2024

#380 in Rust patterns

Download history 115/week @ 2024-06-08 657/week @ 2024-06-15 662/week @ 2024-06-22 164/week @ 2024-06-29 169/week @ 2024-07-06 567/week @ 2024-07-13 916/week @ 2024-07-20 247/week @ 2024-07-27 278/week @ 2024-08-03 514/week @ 2024-08-10 404/week @ 2024-08-17 1027/week @ 2024-08-24 120/week @ 2024-08-31

2,107 downloads per month

MIT license

16KB
326 lines

pyo3-special-method-derive

This crate enables you to automatically derive Python dunder methods for your Rust crate using PyO3.

Key features

  • The following methods may be automatically derived on structs and enums:
    • __str__
    • __repr__
    • __dir__
    • __getattr__
    • __dict__
  • Support for structs and enums (only unit and complex enums due to a PyO3 limitation)
  • Support for skipping variants or fields with the #[pyo3_smd(skip)] attribute
  • Automatically skip struct fields which are not pub
  • Support for skipping variants or fields for __str__ or __repr__ differently with the #[pyo3_smd_str(skip)] and #[pyo3_smd_str(repr)] attributes

Example

#[pyclass]
#[derive(Dir, Str, Repr)]
struct Person {
    pub name: String,
    occupation: String,
    #[pyo3_smd(skip)]
    pub phone_num: String,
}

PyO3 feature note

To use pyo3-special-method-derive, you should enable the multiple-pymethods feature on PyO3:

pyo3 = { version = "0.22", features = ["multiple-pymethods"] }

Dependencies

~3.5MB
~76K SLoC