pyo3/examples/word-count
David Hewitt 06ff76fec2
examples: make `word-count` example comparison fairer
2021-08-13 14:19:46 +01: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
MANIFEST.in
README.md
pyproject.toml
requirements-dev.txt
setup.py
tox.ini

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 tox globally and run

tox -e py