pyo3/examples/word-count
2023-06-15 22:25:48 +01:00
..
.template examples: bump edition to 2021 2023-06-15 22:25:48 +01:00
src Add more lints 2022-03-23 08:07:28 +01:00
tests
word_count
cargo-generate.toml
Cargo.toml Bump Rust edition to 2021 and make current Clippy happy. 2023-06-07 21:15:38 +02:00
MANIFEST.in
noxfile.py ci: build all examples in debug 2022-01-23 08:41:39 +00:00
pyproject.toml bump maturin version in example files 2023-06-14 08:45:32 +01:00
README.md ci: build all examples in debug 2022-01-23 08:41:39 +00:00
requirements-dev.txt ci: build all examples in debug 2022-01-23 08:41:39 +00:00

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.)