Crates.io | hydro_template |
lib.rs | hydro_template |
version | 0.1.0 |
source | src |
created_at | 2024-02-26 12:49:59.02645 |
updated_at | 2024-02-26 12:49:59.02645 |
description | A template for creating Python extension modules with PyO3 and Rayon. |
homepage | |
repository | |
max_upload_size | |
id | 1153587 |
size | 10,383 |
Demonstrates searching for a file in plain python, with rust singlethreaded and with rust multithreaded.
pip install .
from word_count import search_py, search, search_sequential
search_py("foo bar", "foo")
search("foo bar", "foo")
search_sequential("foo bar", "foo")
To test install nox globally and run
nox
To test install nox globally and run
nox -s bench
Use cargo-generate
:
$ cargo install cargo-generate
$ cargo generate --git https://github.com/PyO3/pyo3 examples/word-count
(cargo generate
will take a little while to clone the PyO3 repo first; be patient when waiting for the command to run.)