Skip to main content

Fast and parallel snowball stemmer

Project description

py-rust-stemmers

py-rust-stemmers is a high-performance Python wrapper around the rust-stemmers library, utilizing the Snowball stemming algorithm. This library allows for efficient stemming of words with support for parallel processing, making it a powerful tool for text processing tasks. The library is built using maturin to compile the Rust code into a Python package.

Features

  • Snowball Stemmer: Uses the well-known Snowball stemming algorithms for efficient word stemming in multiple languages.
  • Parallelism Support: Offers parallel processing for batch stemming, providing significant speedup for larger text sequences.
  • Rust Performance: Leverages the performance of Rust for fast, reliable text processing.

Installation

You can install py-rust-stemmers via pip:

pip install py-rust-stemmers

Usage

Here's a simple example showing how to use py-rust-stemmers to stem words using the Snowball algorithm:

from py_rust_stemmers import SnowballStemmer

# Initialize the stemmer for the English language
s = SnowballStemmer('english')

# Input text
text = """This stem form is often a word itself, but this is not always the case as this is not a requirement for text search systems, which are the intended field of use. We also aim to conflate words with the same meaning, rather than all words with a common linguistic root (so awe and awful don't have the same stem), and over-stemming is more problematic than under-stemming so we tend not to stem in cases that are hard to resolve. If you want to always reduce words to a root form and/or get a root form which is itself a word then Snowball's stemming algorithms likely aren't the right answer."""
words = text.split()

# Example usage of the methods
stemmed = s.stem_word(words[0])
print(f"Stemmed word: {stemmed}")

# Stem a list of words
stemmed_words = s.stem_words(words)
print(f"Stemmed words: {stemmed_words}")

# Stem words in parallel
stemmed_words_parallel = s.stem_words_parallel(words)
print(f"Stemmed words (parallel): {stemmed_words_parallel}")

Methods

stem_word(word: str) -> str

This method stems a single word. It is best used for small or isolated stemming tasks.

Example:

s.stem_word("running")  # Output: "run"

stem_words(words: List[str]) -> List[str]

This method stems a list of words sequentially. It is ideal for processing short to moderately sized text sequences.

Example:

s.stem_words(["running", "jumps", "easily"])  # Output: ["run", "jump", "easili"]

stem_words_parallel(words: List[str]) -> List[str]

This method stems a list of words in parallel. It provides significant speedup for longer text sequences (e.g., sequences longer than 512 tokens) by utilizing parallel processing. It is ideal for batch processing of large datasets.

Example:

s.stem_words_parallel(["running", "jumps", "easily"])  # Output: ["run", "jump", "easili"]

Build from source

  • Install maturin
  • Go to project dir
maturin build --release
pip install target/wheels/py_rust_stemmers-<your os/architecture/etc>.whl

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py_rust_stemmers-0.1.5.tar.gz (9.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

py_rust_stemmers-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (272.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

py_rust_stemmers-0.1.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (286.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

py_rust_stemmers-0.1.5-cp313-none-win_amd64.whl (209.4 kB view details)

Uploaded CPython 3.13Windows x86-64

py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl (575.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (488.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (315.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (272.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

py_rust_stemmers-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

py_rust_stemmers-0.1.5-cp312-none-win_amd64.whl (209.4 kB view details)

Uploaded CPython 3.12Windows x86-64

py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl (575.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (488.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (315.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (272.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

py_rust_stemmers-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

py_rust_stemmers-0.1.5-cp311-none-win_amd64.whl (209.4 kB view details)

Uploaded CPython 3.11Windows x86-64

py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl (575.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (488.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (315.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (272.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

py_rust_stemmers-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

py_rust_stemmers-0.1.5-cp310-none-win_amd64.whl (209.4 kB view details)

Uploaded CPython 3.10Windows x86-64

py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl (575.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (488.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (315.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (272.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

py_rust_stemmers-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

py_rust_stemmers-0.1.5-cp39-none-win_amd64.whl (209.4 kB view details)

Uploaded CPython 3.9Windows x86-64

py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl (575.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl (488.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (315.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.5-cp39-cp39-macosx_11_0_arm64.whl (272.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

py_rust_stemmers-0.1.5-cp39-cp39-macosx_10_12_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

py_rust_stemmers-0.1.5-cp38-none-win_amd64.whl (209.5 kB view details)

Uploaded CPython 3.8Windows x86-64

py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl (493.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl (575.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl (488.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_28_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.5-cp38-cp38-macosx_11_0_arm64.whl (272.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

py_rust_stemmers-0.1.5-cp38-cp38-macosx_10_12_x86_64.whl (286.2 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file py_rust_stemmers-0.1.5.tar.gz.

File metadata

  • Download URL: py_rust_stemmers-0.1.5.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for py_rust_stemmers-0.1.5.tar.gz
Algorithm Hash digest
SHA256 e9c310cfb5c2470d7c7c8a0484725965e7cab8b1237e106a0863d5741da3e1f7
MD5 bcba46718591a34a81f743a54ab9887f
BLAKE2b-256 8e634fbc14810c32d2a884e2e94e406a7d5bf8eee53e1103f558433817230342

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57b061c3b4af9e409d009d729b21bc53dabe47116c955ccf0b642a5a2d438f93
MD5 7ec52773527afa7ce7425d3b2397e810
BLAKE2b-256 3a15b1894b9741f7a48f0b4cbea458f7d4141a6df6a1b26bec05fcde96703ce1

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec42b66927b62fd57328980b6c7004fe85e8fad89c952e8718da68b805a119e3
MD5 27c9e522c288037780c4c8efb1fa6f08
BLAKE2b-256 d88f381502753e8917e874daefad0000f61d6069dffaba91acbdb864a74cae10

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 154c27f5d576fabf2bacf53620f014562af4c6cf9eb09ba7477830f2be868902
MD5 9db4c036479672ddeabd742438b3adf8
BLAKE2b-256 4a663c547373839d615217cd94c47ae1965366fa37642ef1bc4f8d32a5884a84

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8c6596f04e7a6df2a5cc18854d31b133d2a69a8c494fa49853fe174d8739d14
MD5 1eddba91c840bf04c881421836287d0d
BLAKE2b-256 cafa796ba1ae243bac9bdcf89c7605d642d21e07ae4f6b77a3c968d546371353

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 e564c9efdbe7621704e222b53bac265b0e4fbea788f07c814094f0ec6b80adcf
MD5 1ae7b9675bf0fbe31ebf78c018724847
BLAKE2b-256 e1b9c5185df277576f995ae34418eb2b2ac12f30835412270f9e05c52face521

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 191ea8bf922c984631ffa20bf02ef0ad7eec0465baeaed3852779e8f97c7e7a3
MD5 48d8c752093fec612491aebff43e39ed
BLAKE2b-256 986e214f1a889142b7df6d716e7f3fea6c41e87bd6c29046aa57e175d452b104

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35d32f6e7bdf6fd90e981765e32293a8be74def807147dea9fdc1f65d6ce382f
MD5 58b92e6034b5b4e9a458d1005177b8c1
BLAKE2b-256 3b874619c395b325e26048a6e28a365afed754614788ba1f49b2eefb07621a03

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e48bfd5e3ce9d223bfb9e634dc1425cf93ee57eef6f56aa9a7120ada3990d4be
MD5 aaf623341d258ffb36142d835ab0ef0d
BLAKE2b-256 66188a547584d7edac9e7ac9c7bdc53228d6f751c0f70a317093a77c386c8ddc

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5845709d48afc8b29e248f42f92431155a3d8df9ba30418301c49c6072b181b0
MD5 b86ac373f0873a50db92502ad77b627b
BLAKE2b-256 2afd1612c22545dcc0abe2f30fc08f30a2332f2224dd536fa1508444a9ca0e39

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a231dc6f0b2a5f12a080dfc7abd9e6a4ea0909290b10fd0a4620e5a0f52c3d17
MD5 ab125f24b48f8f2f6e85733c383b7b2e
BLAKE2b-256 0002ea86a316aee0f0a9d1449ad4dbffff38f4cf0a9a31045168ae8b95d8bdf8

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc2cc8d2b36bc05b8b06506199ac63d437360ae38caefd98cd19e479d35afd42
MD5 7c2b2b7bec1c5355fbe0b6c574188e16
BLAKE2b-256 568f5be87618cea2fe2e70e74115a20724802bfd06f11c7c43514b8288eb6514

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f9efc4da5e734bdd00612e7506de3d0c9b7abc4b89d192742a0569d0d1fe749
MD5 68d7b8d669d5b01c5f09bfab9e57d84e
BLAKE2b-256 abb676ca5b1f30cba36835938b5d9abee0c130c81833d51b9006264afdf8df3c

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e308fc7687901f0c73603203869908f3156fa9c17c4ba010a7fcc98a7a1c5f2
MD5 0a1d2e3f4e79dfff754f57d26bddeb8f
BLAKE2b-256 edbe0465dcb3a709ee243d464e89231e3da580017f34279d6304de291d65ccb0

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 398b3a843a9cd4c5d09e726246bc36f66b3d05b0a937996814e91f47708f5db5
MD5 194ccec531582a80ce08968410156df5
BLAKE2b-256 80b8030036311ec25952bf3083b6c105be5dee052a71aa22d5fbeb857ebf8c1c

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 6ed61e1207f3b7428e99b5d00c055645c6415bb75033bff2d06394cbe035fd8e
MD5 9e5965a54f9c910e77a840e61f70673e
BLAKE2b-256 2f6a15135b69e4fd28369433eb03264d201b1b0040ba534b05eddeb02a276684

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffd946a36e9ac17ca96821963663012e04bc0ee94d21e8b5ae034721070b436c
MD5 c41a2a8fd0391d5c5a7d6dda7d1f9277
BLAKE2b-256 9340eafd1b33688e8e8ae946d1ef25c4dc93f5b685bd104b9c5573405d7e1d30

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 541d4b5aa911381e3d37ec483abb6a2cf2351b4f16d5e8d77f9aa2722956662a
MD5 4985a0bbd08d13fe37d9097f3ab99683
BLAKE2b-256 b9ed7d9bed02f78d85527501f86a867cd5002d97deb791b9a6b1b45b00100010

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef18cfced2c9c676e0d7d172ba61c3fab2aa6969db64cc8f5ca33a7759efbefe
MD5 2a36841677700a2edbce4837c7f2994b
BLAKE2b-256 4ff7b76816d7d67166e9313915ad486c21d9e7da0ac02703e14375bb1cb64b5a

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96ccc7fd042ffc3f7f082f2223bb7082ed1423aa6b43d5d89ab23e321936c045
MD5 596b926ce6118ab892f550a84305d40f
BLAKE2b-256 6b5b74e96eaf622fe07e83c5c389d101540e305e25f76a6d0d6fb3d9e0506db8

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c3593d895453fa06bf70a7b76d6f00d06def0f91fc253fe4260920650c5e078
MD5 97b1cfb2e786acf142dffecf5372935e
BLAKE2b-256 1cb9fc0278432f288d2be4ee4d5cc80fd8013d604506b9b0503e8b8cae4ba1c3

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a979c3f4ff7ad94a0d4cf566ca7bfecebb59e66488cc158e64485cf0c9a7879f
MD5 1cad9e15a72715b946356596a6f07ce6
BLAKE2b-256 a90862e97652d359b75335486f4da134a6f1c281f38bd3169ed6ecfb276448c3

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b28ef729a4c83c7d9418be3c23c0372493fcccc67e86783ff04596ef8a208cdf
MD5 242fa9a89ffd592b93711600419ac76d
BLAKE2b-256 0a38b8f94e5e886e7ab181361a0911a14fb923b0d05b414de85f427e773bf445

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d62410ada44a01e02974b85d45d82f4b4c511aae9121e5f3c1ba1d0bea9126b
MD5 39ed1569801911c56c18769bd9d0af0a
BLAKE2b-256 cb32fe1cc3d36a19c1ce39792b1ed151ddff5ee1d74c8801f0e93ff36e65f885

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29772837126a28263bf54ecd1bc709dd569d15a94d5e861937813ce51e8a6df4
MD5 11cc5759c200291be1b1801d4066cf94
BLAKE2b-256 43e1ea8ac92454a634b1bb1ee0a89c2f75a4e6afec15a8412527e9bbde8c6b7b

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 147234020b3eefe6e1a962173e41d8cf1dbf5d0689f3cd60e3022d1ac5c2e203
MD5 cfd1e480adb99dbce46f3eae4ad65ff9
BLAKE2b-256 9133872269c10ca35b00c5376159a2a0611a0f96372be16b616b46b3d59d09fe

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85944262c248ea30444155638c9e148a3adc61fe51cf9a3705b4055b564ec95d
MD5 30c81181be9c142ead7bf8c3c95362c0
BLAKE2b-256 7b312a48960a072e54d7cc244204d98854d201078e1bb5c68a7843a3f6d21ced

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ae0540453843bc36937abb54fdbc0d5d60b51ef47aa9667afd05af9248e09eb
MD5 eafdeede562924d4d5d8f0b29c3c2d3c
BLAKE2b-256 a0eeed09ce6fde1eefe50aa13a8a8533aa7ebe3cc096d1a43155cc71ba28d298

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8f374c0f26ef35fb87212686add8dff394bcd9a1364f14ce40fe11504e25e30
MD5 36429d71bcfd8190c3bfd90abf65eb7b
BLAKE2b-256 203e162be2f9c1c383e66e510218d9d4946c8a84ee92c64f6d836746540e915f

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c52c5c326de78c70cfc71813fa56818d1bd4894264820d037d2be0e805b477bd
MD5 8315a34b1d11642ddf122bd91495a551
BLAKE2b-256 7f65feb83af28095397466e6e031989ff760cc89b01e7da169e76d4cf16a2252

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 804944eeb5c5559443d81f30c34d6e83c6292d72423f299e42f9d71b9d240941
MD5 749834c2034c05ccdcda4907bc3a56ce
BLAKE2b-256 624cc05c266ed74c063ae31dc5633ed63c48eb3b78034afcc80fe755d0cb09e7

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07b3b8582313ef8a7f544acf2c887f27c3dd48c5ddca028fa0f498de7380e24f
MD5 84918f556de16abf2501c45cbd115b12
BLAKE2b-256 f1f5b79249c787c59b9ce2c5d007c0a0dc0fc1ecccfcf98a546c131cca55899e

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31ff4fb9417cec35907c18a6463e3d5a4941a5aa8401f77fbb4156b3ada69e3f
MD5 4247e3d289a5a02c897b100971aba132
BLAKE2b-256 41668777f125720acb896b336e6f8153e3ec39754563bc9b89523cfe06ba63da

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 910d87d39ba75da1fe3d65df88b926b4b454ada8d73893cbd36e258a8a648158
MD5 82219968d56fd92cc1de2cdf5b687981
BLAKE2b-256 f2d1e16b587dc0ebc42916b1caad994bc37fbb19ad2c7e3f5f3a586ba2630c16

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e644987edaf66919f5a9e4693336930f98d67b790857890623a431bb77774c84
MD5 2255df6068e08962bf1c97c4e7b71829
BLAKE2b-256 369b6b11f843c01d110db58a68ec4176cb77b37f03268831742a7241f4810fe4

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 39550089f7a021a3a97fec2ff0d4ad77e471f0a65c0f100919555e60a4daabf0
MD5 29410ca0cf914411464e1f44b9b2d025
BLAKE2b-256 d2a726404770230634cec952b9f80444eba76bf8b514b1f3b550494566001893

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c836aeb53409a44f38b153106374fe780099a7c976c582c5ae952061ff5d2fed
MD5 4ef18dd1b2706702f7b10b6456917ee8
BLAKE2b-256 5cba49ea71077a5a52017a0a30c47e944c0a4ee33a88c5eaf2d96a06e74771d6

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b42eb52609ac958e7fcc441395457dc5183397e8014e954f4aed78de210837b9
MD5 adf432c230b3701a84d37c744dba1d0b
BLAKE2b-256 fd3eea9d8328af1c0661adb47daeb460185285e0e5e26aeca84df5cbde2e4e58

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cf4d69bf20cec373ba0e89df3d98549b1a0cfb130dbd859a50ed772dd044546
MD5 7bb498fc0183ac9a0fde8eea9d802378
BLAKE2b-256 9bce9b4bdb548974c7e79f188057efb2a3426b2df8c9a3d8ac0d5a81b5f1a297

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8dd5824194c279ee07f2675a55b3d728dfeec69a4b3c27329fab9b2ff5063c91
MD5 4bf043f9f9eefa5c7726b6f633bad48b
BLAKE2b-256 f48d3566e9b067d3551d72320193aa9377a1ddabaf7d4624dd0a10f4c496d6f5

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 019221c57a7bcc51097fa3f124b62d0577b5b6167184ee51abd3aea822d78f69
MD5 540f15d0e4520346dcb3a79d0eaa3ba5
BLAKE2b-256 a777fbd2bd6d3bb5a3395e09b990fa7598be4093d7b8958e2cadfae3d14dcc5b

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3abbd6d26722951a04550fff55460c0f26819169c23286e11ea25c645be6140
MD5 a8df51870aa749f6ec8607053183f191
BLAKE2b-256 2c4395449704e43be071555448507ab9242f5edebe75fe5ff5fb9674bef0fd9f

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da6de2b694af6227ba8c5a0447d4e0ef69991e63ee558b969f90c415f33e54d0
MD5 22ea6875a8ea4249f80fbe3e3c220c23
BLAKE2b-256 9821a94c32ffa38417bad41d6e72cb89a32eac45cc8c6bed1a7b2b0f88bf3626

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7162ae66df2bb0fc39b350c24a049f5f5151c03c046092ba095c2141ec223a2
MD5 ccd0f2140ca3a47b294567a6afad462b
BLAKE2b-256 95d95d1743a160eb9e0bc4c162360278166474e5d168e318c0d5e1bc32b18c96

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfbd9034ae00419ff2154e33b8f5b4c4d99d1f9271f31ed059e5c7e9fa005844
MD5 d897a2911244610f898a749276fe0af6
BLAKE2b-256 19282247e06de9896ac5d0fe9c6c16e611fd39549cb3197e25f12ca4437f12e7

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c3078476318a4697dc216bb6c615b59d1ee02058202c2fa91ccfb4bebf412e22
MD5 6d93d09a5a788e25c8be23770a42d90b
BLAKE2b-256 3af789ff7b81ab38fba0deb04a9069750f810372ddf7dc5dc4ff219dd695e552

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77b96f1141de6db8b550052ef7f90099e3c3e10bb0d472a4af7a30af776252f8
MD5 3b6dc182482bf3f3e734c59edd56e5bf
BLAKE2b-256 1f3899bec5dece5dcac7230649c7c792554f7fdbcac5043d1a0cde7ad54c317b

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 544e3e5e0174924f2dce3248094d9632c3106c1619a03141dbfb8bfdb29b0925
MD5 2f296dc1b15b43010c549e28f4b13eed
BLAKE2b-256 d24a2f3131481e590e818edff9fad1b49806ec1005972dfa296fb87521d2e5b4

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7687586cf4e34f230ee154b5f034b9c568409aaef997c888d4749e4bdbab79fd
MD5 506d4532aff4953b63dfcacd1bd1fdc9
BLAKE2b-256 c4772c8444caaf80b56bb9c09d711a03739b2b34773fdbb8301f7d909bcbfe1c

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bc04bd5f72ee5d9cfb1530c56e450de7d80ed4504d5013f02f522cf8ea9b474
MD5 e33ab7b2e7229650f1c4328721e81be1
BLAKE2b-256 2848b8eeb2137acfdfe86e788ce6328246a0077312dce5ac2d545a63f9fa0dc7

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d095b359d6e14e219b6fbff074f7b53e845f70e6d7fc9e63b50f192677c94cf5
MD5 f64fa18374017a946530d07d740dd3bf
BLAKE2b-256 9775a49474821708a3a135d82b59e35e97de14d64fffeb8c4a993d6315a17ddd

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1816ade2c5148337cec16c115e210c8e3341c4cde5b591bf43224bd2168e5eda
MD5 90b6c754d0cf138acb18c56f195d1ec7
BLAKE2b-256 6f76f99bef0a2bcbcf9fac32e950c063fd644306b847cbb6b241c79eb21618ae

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec840a009de79a9a8231090222a8fdc07043d337e2ef38843daae88f0479ae7f
MD5 a7ce3b04bd456aeab2870986f310365c
BLAKE2b-256 e2465998b0255385a14cbdb3249f486ca5ff797c45d23a9f1d544505afd58dd9

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68f1fd369c4be5d63c2f697a07511c868f41875a464aab0f564071131d84bab4
MD5 f3caff1aad9f5c60d0178c9831233407
BLAKE2b-256 d19c63667490077ca402c2ea0d5ca7e792e90cf75c716b8167ec30754dd30ef6

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67b2753cadb0bdb827ae8088ef5ead44408b8ff92d2bc8926231c7e056810e4a
MD5 fdd0314211ec369ccf8adb08e83bb643
BLAKE2b-256 30411ab543acddc64cab908892da6d7f64b2d5cbfe14037982dce71b3f0c2fe5

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9982b5f915e8e5b7ca83104f57cc4e7668b900d87232eea2c6f432d2009f0d18
MD5 fa34a05aec79889fef2b392c68d41bab
BLAKE2b-256 f4099f629f29153a4bac5c3fcf26f7729caf09f8d77e619f5c12e5388fc61c99

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0db3d2fff5775060c78a67e72132fa8802ace50175da26bf4661e4071aa10094
MD5 4cd6067c8bbbd005d2fa23f31cd30344
BLAKE2b-256 a5ad76b5d49ad5e12882d17d74474bae582a23646d39e4b18e061a84e143c536

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 918ce5252570febdf8accded210046e7f3edb933eac5599fa40e773ff42c7a8f
MD5 5d3207433cee379cc9f87b541d22425b
BLAKE2b-256 8d7dd80aef525f4b143fcc6da3234af21661c931d31d0af0da198aa1b379378c

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f161278168a7ad5ace2909454f2ee87d2c815bfd1bfec5a80fac36de31bf96e4
MD5 215fb4e4c8536cf0647e116b04164c56
BLAKE2b-256 6c032da27e0194156ec192dcd791c1c1ae26196382741097ac02f2915500602a

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5ae7a3d1d015e72817f8fe6b35bb762681b7197fee2d80232528fff68be7576
MD5 1d2041ee7d47cc0bd203e9305ef26abb
BLAKE2b-256 6759a1e47565a0c218074dd97b0011ec938ba10bc5104f4134f3b03ab5bab637

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52c397e314a02319d7a0f7d2cd845557a3ba145f8318a6f2e119b46056bf4379
MD5 92f836d15c16746a14144f9d7987dc7f
BLAKE2b-256 bce876c90080a95e75408469f3296d54085a2779924c7a10015120ddb582d63d

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f240be882e9afcc8eeb5860c13bf37cf666d99179da49b0cd19ac3cbb4871423
MD5 1cd83a55c507c71a7b87c8843fa1671a
BLAKE2b-256 97b688d9d179b7ba9461b0e61ba529e8bdadfbd923502778755220283d314d90

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa7d6bd88cb99933178bc1e9f803d921c13274a2fe52325d40f8d35046e929c3
MD5 34246d2fea2996144aa99d9a53e09698
BLAKE2b-256 e2d5c89342b00759f32b1c06f24c70172bfe6c41b932714c8d5cc5e655e6cbf5

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53e2ad505d15959fd86a8b204e55fd73290cf5fdba0020fd0d9323d7fe225962
MD5 86fca2decf7636c2619ee02a061f05e7
BLAKE2b-256 d51968da9a5f63dfc4a5ebdc4e62fb7ff00fc1b0f149518a03a1af67de678a96

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.5-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.5-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7720c4d472653f7301537fb289d10f827b25c9b998d1b58403181180097212ee
MD5 f1b67b143b9b4800f06c2a4abe179753
BLAKE2b-256 babeadb20d44591fc5f822fcbc453cef5836434ffd90ccae0a5ccc3573566f5d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page