https://github.com/samlet/cc-sandbox
https://github.com/samlet/cc-sandbox
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/samlet/cc-sandbox
- Owner: samlet
- Created: 2021-03-25T15:47:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-25T15:47:40.000Z (over 5 years ago)
- Last Synced: 2025-06-13T06:03:50.844Z (about 1 year ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cc-sandbox
Demonstrates searching for a file in plain python, with rust singlethreaded and with rust multithreaded.
## Build
```shell
python setup.py install
```
## Usage
```python
from cc_sandbox import search_py, search, search_sequential
search_py("foo bar", "foo")
search("foo bar", "foo")
search_sequential("foo bar", "foo")
```
## Benchmark
Install the depedencies:
```shell
pip install -r requirements-dev.txt
```
There is a benchmark in `tests/test_word_count.py`:
```shell
pytest -v tests
```
## Testing
To test install tox globally and run
```shell
tox -e py
```
# cc-sandbox