pyo3/examples/README.md

13 lines
807 B
Markdown
Raw Normal View History

2021-08-02 21:29:37 +00:00
# PyO3 Examples
These example crates are a collection of toy extension modules built with PyO3. They are all tested using `tox` in PyO3's CI.
2021-08-02 21:29:37 +00:00
Below is a brief description of each of these:
| Example | Description |
| ------- | ----------- |
| `decorator` | A project showcasing the example from the [Emulating callable objects](https://pyo3.rs/latest/class/call.html) chapter of the guide. |
2021-08-02 21:29:37 +00:00
| `maturin-starter` | A template project which is configured to use [`maturin`](https://github.com/PyO3/maturin) for development. |
| `setuptools-rust-starter` | A template project which is configured to use [`setuptools_rust`](https://github.com/PyO3/setuptools-rust/) for development. |
| `word-count` | A quick performance comparison between word counter implementations written in each of Rust and Python. |