39cac9075b
* Add decorator example crate and split off chapter * Move not-examples to their own folder * Add some readme's * Make black happy * Make clippy happy * Add decorator example crate and split off chapter * Fix ci * Add empty workspace key * Try fix ci * fix ci * reuse target dir for examples CI * add pytests folder to makefile recipes * fix ci, try 2 * add missing pyproject.toml * remove TOX_TESTENV_PASSENV from Makefile Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com> |
||
---|---|---|
.. | ||
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, 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