pyo3-log
pyo3-log copied to clipboard
Logging bridge from pyo3 native extension to python
In my project, I have a Rust struct that will print a `log` message when it is dropped. In my Python code, this Rust struct lives in global scope and...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.1.1 to 4.4.1. Release notes Sourced from codecov/codecov-action's releases. v4.4.1 What's Changed build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.8.0 to 7.9.0 by @dependabot in codecov/codecov-action#1427 fix: prevent xlarge from...
Adds example to docs after research for #59.
SSIA
Previously, with PyO3, you declared modules with a function... ```rust #[pymodule] fn my_module(m: &Bound
Currently, pyo3 logs to the root logger. I suggest using a named child logger (by convention __name__ i.e. rookiepy), so downstream applications can control its logging independently from other loggers...