134c129edc
* Add failing test * Complete formatting * Fix commands execution * Fix commands execution for Linux * Extract virtual environment creation/removing into separate functions * Complete error messages * Complete examples building * Use 'venv' independent path * Call script by dotted path instead of 'source' call * Add Travis CI script * Rename variable: 'exec_prefix' -> 'base_prefix' * Add AppVeyor script * Remove Rust test * Complete shell script mode * Complete path to powershell script * Use 'pushd'/'popd' instead of 'cd' * Complete powershell script * Complete shell script * Fix setup * Use 'tox-venv' plugin for 'venv' stdlib module support * Remove additional 'venv' testing * Use global environment instead of calling 'set' * Use 'tox' for AppVeyor, extract commands into 'setup' & 'test' scripts * Add updating of 'pip' & 'setuptools' * Add moving in/back from examples directories * Complete 'pip'/'setuptools' updating * Complete requirements * Complete 'word-count' example configuration * Simplify 'setup' script * Complete 'rustapi_module' example tests * Revert formatting * Complete examples configuration * Remove redundant annotations * Add entry in changelog |
||
---|---|---|
.. | ||
src | ||
tests | ||
word_count | ||
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, WordCounter
search_py("path/to/file", "word")
WordCounter("path/to/file").search("word")
WordCounter("path/to/file").search_sequential("word")
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 python 3.5, 3.6 and 3.7, install tox globally and run
tox