pyo3/examples/word-count
Bruno Kolenbrander 39cac9075b
Organize examples + add __call__ example (#2043)
* 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>
2021-12-15 00:45:26 +00:00
..
src examples: make `word-count` example comparison fairer 2021-08-13 14:19:46 +01:00
tests examples: make `word-count` example comparison fairer 2021-08-13 14:19:46 +01:00
word_count examples: make `word-count` example comparison fairer 2021-08-13 14:19:46 +01:00
Cargo.toml Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00: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 examples: use setuptools-rust 1.0.0 2021-11-21 20:39:52 +00:00
setup.py examples: simplify tox instructions 2020-11-10 12:50:41 +00:00
tox.ini examples: use pip 21.3 2021-10-13 00:05:33 +01: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