pyo3/examples/word-count
2018-08-04 19:56:59 +02:00
..
src
tests
word_count
Cargo.toml Many small improvements 2018-08-04 19:56:59 +02:00
pyproject.toml Many small improvements 2018-08-04 19:56:59 +02:00
README.md
setup.py Many small improvements 2018-08-04 19:56:59 +02:00

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, WordCounter

search_py("path/to/file", "word")
WordCounter("path/to/file").search("word")
WordCounter("path/to/file").search_sequential("word")

Benchmark

There is a benchmark in tests/test_word_count.py:

pytest -v tests