pyo3/examples/word-count
David Hewitt 8652ac8e1c
remove all functionality deprecated in 0.20 (#4322)
* remove all functionality deprecated in 0.20

* bump version to 0.23.0-dev

* undo unintended revert

* fixup UI test
2024-07-09 16:44:27 +00:00
..
.template remove all functionality deprecated in 0.20 (#4322) 2024-07-09 16:44:27 +00:00
src Use single-arg form of `#[pymodule]` function in docs and tests (#3899) 2024-02-28 22:36:50 +00:00
tests examples: make `word-count` example comparison fairer 2021-08-13 14:19:46 +01:00
word_count examples: make `word-count` example comparison fairer 2021-08-13 14:19:46 +01:00
Cargo.toml Bump Rust edition to 2021 and make current Clippy happy. 2023-06-07 21:15:38 +02:00
MANIFEST.in Update word-count to support PEP 517 sdists 2019-04-25 07:06:29 -04:00
README.md ci: build all examples in debug 2022-01-23 08:41:39 +00:00
cargo-generate.toml Use `--no-build-isolation` 2022-01-17 10:02:03 +08:00
noxfile.py examples: remove requirements-dev.txt files 2023-10-26 08:24:30 +01:00
pyproject.toml examples: remove requirements-dev.txt files 2023-10-26 08:24:30 +01:00

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