pyo3/examples/word-count
winxton 5498b7ee3c Fix wordcount example docs 2021-02-24 13:41:45 -05:00
..
src Update lib.rs 2020-10-21 19:37:23 +05:30
tests Fix wordcount example docs 2021-02-24 13:41:45 -05:00
word_count Add benchmark for Python threaded word count 2020-06-05 20:22:20 +02:00
Cargo.toml Migrate to rust 2018 2019-02-01 14:23:29 +01:00
MANIFEST.in Update word-count to support PEP 517 sdists 2019-04-25 07:06:29 -04:00
README.md Fix wordcount example docs 2021-02-24 13:41:45 -05:00
pyproject.toml examples: simplify tox instructions 2020-11-10 12:50:41 +00:00
requirements-dev.txt Fix installing in 'venv' and datetime tests on Windows (#472) 2019-05-12 22:20:17 +09:00
setup.py examples: simplify tox instructions 2020-11-10 12:50:41 +00:00
tox.ini examples: simplify tox instructions 2020-11-10 12:50:41 +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 tox globally and run

tox -e py