pyo3/examples/word-count
messense 081c8082cb Use `--no-build-isolation` 2022-01-17 10:02:03 +08:00
..
.template Use `--no-build-isolation` 2022-01-17 10:02:03 +08: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 Switch from tox to nox 2022-01-17 00:24:33 +08:00
cargo-generate.toml Use `--no-build-isolation` 2022-01-17 10:02:03 +08:00
noxfile.py Use `--no-build-isolation` 2022-01-17 10:02:03 +08:00
pyproject.toml examples: add cargo-generate configuration 2021-12-15 08:11:46 +00:00
requirements-dev.txt examples: use setuptools-rust 1.0.0 2021-11-21 20:39:52 +00:00
setup.cfg examples: add cargo-generate configuration 2021-12-15 08:11:46 +00:00
setup.py examples: add cargo-generate configuration 2021-12-15 08:11:46 +00:00

README.md

word-count

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

Build

python setup.py 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")

Benchmark

Install the depedencies:

pip install -r requirements-dev.txt

There is a benchmark in tests/test_word_count.py:

pytest -v tests

Testing

To test install nox globally and run

nox

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