pyo3/examples/word-count
David Hewitt 000a903676 ci: build all examples in debug 2022-01-23 08:41:39 +00:00
..
.template ci: build all examples in debug 2022-01-23 08:41:39 +00:00
src examples: make `word-count` example comparison fairer 2021-08-13 14:19:46 +01: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 examples: make Cargo.toml files more uniform 2021-12-15 08:28:25 +00: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 ci: build all examples in debug 2022-01-23 08:41:39 +00:00
pyproject.toml 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

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