pyo3/examples/word-count
Hanaasagi 92119d195a remove meaningless __future__.absolute_import 2018-10-09 23:26:28 +09:00
..
src More nightly fixes 2018-08-19 20:42:17 +02:00
tests remove meaningless __future__.absolute_import 2018-10-09 23:26:28 +09:00
word_count remove meaningless __future__.absolute_import 2018-10-09 23:26:28 +09:00
Cargo.toml Many small improvements 2018-08-04 19:56:59 +02:00
README.md Refactoring 2018-07-30 22:56:25 +02:00
pyproject.toml Many small improvements 2018-08-04 19:56:59 +02:00
setup.py use pytest directlly instead of python -m pytest 2018-10-09 23:24:36 +09: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, 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