pyo3/examples/word-count
David Hewitt 2c205d4586
release notes for 0.21.2 (#4091)
2024-04-18 08:59:02 +00:00
..
.template release notes for 0.21.2 (#4091) 2024-04-18 08:59:02 +00:00
src Use single-arg form of `#[pymodule]` function in docs and tests (#3899) 2024-02-28 22:36:50 +00:00
tests
word_count
Cargo.toml
MANIFEST.in
README.md
cargo-generate.toml
noxfile.py
pyproject.toml

README.md

word-count

Demonstrates searching for a file in plain python, with rust singlethreaded and with rust multithreaded.

Build

pip install .

Usage

from word_count import search_py, search, search_sequential

search_py("foo bar", "foo")
search("foo bar", "foo")
search_sequential("foo bar", "foo")

Testing

To test install nox globally and run

nox

Benchmark

To test install nox globally and run

nox -s bench

Copying this example

Use cargo-generate:

$ cargo install cargo-generate
$ cargo generate --git https://github.com/PyO3/pyo3 examples/word-count

(cargo generate will take a little while to clone the PyO3 repo first; be patient when waiting for the command to run.)