//! Python bindings for Zerobus SDK Wrapper
//!
//! This module provides PyO3 bindings to expose the Rust SDK to Python applications.
//! Supports Python 3.11+ with zero-copy Arrow data transfer via PyArrow.
// Re-export for tests (tests are in separate crate, so they can't access pub(crate) functions)
pub use rust_error_to_python_error;
use *;
/// Python module definition
///
/// This function is called by Python to initialize the module.