Advanced topics
FFI
PyO3 exposes much of Python’s C API through the ffi module.
The C API is naturally unsafe and requires you to manage reference counts, errors and specific invariants yourself. Please refer to the C API Reference Manual and The Rustonomicon before using any function from that API.
Sharing types between multiple PyO3 modules
It is possible (but complicated) to share types between multiple PyO3 packages which can be compiled and installed separately. This allows for ecosystems of functionality to be built similar to the many packages built on top of NumPy. While PyO3 does not yet have any built-in support for doing this, the next sub-chapter of this guide describes the general approach to doing this, as well as the safety limitations to be aware of.