Skip to main content

Fast and parallel snowball stemmer

Reason this release was yanked:

bad release

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.7.tar.gz (9.7 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.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (320.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl (276.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

py_rust_stemmers-0.1.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (290.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

py_rust_stemmers-0.1.7-cp314-cp314-win_amd64.whl (209.6 kB view details)

Uploaded CPython 3.14Windows x86-64

py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl (539.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_armv7l.whl (596.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl (492.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_28_x86_64.whl (321.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (321.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (275.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

py_rust_stemmers-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

py_rust_stemmers-0.1.7-cp313-cp313-win_amd64.whl (212.4 kB view details)

Uploaded CPython 3.13Windows x86-64

py_rust_stemmers-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl (541.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl (596.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl (494.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.7-cp313-cp313-manylinux_2_28_x86_64.whl (324.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.7-cp313-cp313-macosx_11_0_arm64.whl (275.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

py_rust_stemmers-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

py_rust_stemmers-0.1.7-cp312-cp312-win_amd64.whl (212.1 kB view details)

Uploaded CPython 3.12Windows x86-64

py_rust_stemmers-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (541.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl (596.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl (494.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.7-cp312-cp312-manylinux_2_28_x86_64.whl (324.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (275.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

py_rust_stemmers-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (290.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

py_rust_stemmers-0.1.7-cp311-cp311-win_amd64.whl (208.4 kB view details)

Uploaded CPython 3.11Windows x86-64

py_rust_stemmers-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (537.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl (595.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl (492.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.7-cp311-cp311-manylinux_2_28_x86_64.whl (320.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (320.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (275.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

py_rust_stemmers-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

py_rust_stemmers-0.1.7-cp310-cp310-win_amd64.whl (208.5 kB view details)

Uploaded CPython 3.10Windows x86-64

py_rust_stemmers-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (538.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl (595.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl (492.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.7-cp310-cp310-manylinux_2_28_x86_64.whl (320.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (320.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (276.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

py_rust_stemmers-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl (290.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: py_rust_stemmers-0.1.7.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for py_rust_stemmers-0.1.7.tar.gz
Algorithm Hash digest
SHA256 e9ab7897bb55862f2f7f15f32c06f74d298b651e18c44438299742b6a7e544a5
MD5 31ed5cb7acafe5b5beb6b95b868982a2
BLAKE2b-256 fccb20e4802391478672ebdde1d03572bfeede408097a4fdbff2f3a81017f4e2

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c692b2fb8c37a6f7f095a6d89aa19449615807395f6646520da0bcd43d978aad
MD5 61a8b079c90113420611ea3fbaedb45d
BLAKE2b-256 0732bcf797fa194b55265254b27a61b546417ad6d84f91753d334cd164c7183d

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 580b63c750cf76cad6dbdf199b2eb01809d208efeaec2da7166dfcc0ad5d85b0
MD5 a753bf80de6ae4d58cfe9db6607af8af
BLAKE2b-256 89b8d7910b7d5a1f4060e87eb973970788c037d41e29f4b1aed3315c8ac6c7e3

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc4b6aea5e8c4c5290e74579e70f7bf9d532c9422b7082cc37af66680a5cc845
MD5 586effe0564db5a483bc892164edf133
BLAKE2b-256 6ca426ebb1799287f7a32acf6a0471c5a47a870d2d074099552c17f6b6ff3d56

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f77ab13c30dacd6747f9e6bef3190a7a613b678a2d1b50731ec632d6e6d47b0
MD5 c814d04baa45b3948ec1de99cd7c3f46
BLAKE2b-256 13f4f74703553122c198f07fa28742e91684595b24282ac6ed057bbd67279195

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7d1142b6cb0c75f259d0c24e92c6fc8729e190b3dfd8d511c624445db1ee11bb
MD5 04acde4a036dacd3c68da10330c8c7f3
BLAKE2b-256 fa40681ed319bf8a18f93e4f634fa5e8fefffb4e90d809eae6161bb6f638fb3e

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e54f34d037ed9d62ead6511ba892147c7c7769c900167c474d868182f35b71c6
MD5 df2b5912ca927141f2e0d7353c094528
BLAKE2b-256 caa38b33cd8a28ae2f00fb2c27fce50bc7e6cfde374dd78d4cebc86bd3c8a3a8

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97bb7c91586a5d2a58ede070af21d2fe06ca3ad34ac41c3ca8e926e5ce256e4c
MD5 23678b0ef8daf451400284e14fbd9aa3
BLAKE2b-256 41f3e1c2a5cd149d204fe4bed7196843fb52d1d67360704b925c752f7f96b509

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 822dd55c4d53dc21b5f28f20cbb6b8b6942227187776bf522cb810e9d5ac89ca
MD5 e33f876a9f2480fa7746975595ad5640
BLAKE2b-256 794549bc99b139ec1a7645dd74b79b8cfd01e1a20eb90c61c1aae750b9c8c85b

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 519a64f966a79f1d86cb0c95dd19790768dcd367b71fbe3255ba985c2c852fc8
MD5 da8cf41af2db967508725008a0ec182a
BLAKE2b-256 25d8ef67f5305d8dbeb73354d6e7b424fad952e9818de8865d7d257f17b53761

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0adca3e58771be52347335eac97696fb1f40370004b6104b79a9bb17d1ff8510
MD5 64f30c1940f885b714a68df893ff3184
BLAKE2b-256 286ea23add493dfc7a3a8175862e97d8ceefda15b0ba1497eff6717d27f283a5

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3f60befd978b6462f1cf953c90148d14bc0931f362a1d3767b7dc5593ab5b3d
MD5 1b41a6620d8b854f463f5679acbeb4ff
BLAKE2b-256 12b73796390e6d3edfc746c0bde70ea033cf83f2d189ef65946946dda812622c

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae4747ec0b6bddc506143ab5a235adda6f09cdeb81374a7caa6f48e09eb4f94b
MD5 511920d6cf961d9ad9916251b2c75725
BLAKE2b-256 49b4a3f5c1ce1cc9096699d88b534b57b8fc9b0dc24bbefc6c2f2834fbb70135

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efedcb96f8d6daeff4436cc16f73a8bbc84a42cbabe852b907e06ab5a589a689
MD5 a8f4304dfc1d3651b3239ec66f089989
BLAKE2b-256 f0dc46858d9a99ea6b97f9e11cc10872285f11536b3498bab072a041dbb43a13

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0bb448d867319d1f23e91d143be16c72b2d304f1c993b785105c90dba052f2fa
MD5 232633376e92c2f7b5968ecc40022c27
BLAKE2b-256 e0e3af188e86eaa84ca2c3be51d4a6c85ac21fdb333ec3f52ebcac99d28262de

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8430b2bda3a981e7173a52744b8888f110e6eb881e1293d96b786e1a8be5ee7b
MD5 2aa36579201342ea18620b3fc94cd8db
BLAKE2b-256 ce4b80676eb53f362b57ef5994e9766c8cee2458d7f536e08719c85dc9ec9aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd5aaa3ec4710a3058af8840ebbd24bb0d3ccb3eba5398850070a7c781e5bb58
MD5 a2e52abd9022859c7c4439a02c365f80
BLAKE2b-256 440214f5517d1d80a306bdc55794b548fec173a6cfc5fdef099e066f0e6f6571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f7b43c801624511deffc7f04646e4e812809053e072088bcfec5480c5105c61
MD5 7a9d582a2d6b2f2189635392982ecc77
BLAKE2b-256 e4930dfc1257539059b6865c9797672b477d1c5d4aeda6d2bd3d2f83e5449583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d44eef193851875e137a07e4a1ed077257797ec524133bcf19664be9d9955999
MD5 6d0158077fe871920c913c8da633c6c9
BLAKE2b-256 0bdd8539b0b131a25ee32640f055a17f2a84808d1af27ef8282eb92b5b407f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0511e0b08abf7c88ea64d34c68e3753cd2ddcd8f670097c8b8cf07ce3b3b0a07
MD5 8af4c92b8ca8b4becd5e5f859351ced8
BLAKE2b-256 d142a9ffd0d958862bd2af82477977279e022336c10cab98f28007b5f174a129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 964515e99c603e329e277d8615c3f87c24015e69d51ce7e1ae8641455fd48c26
MD5 3f0f908c38622afb70b2031c593ef641
BLAKE2b-256 eee8b1774be2f42e1d9529a9f3f027b774d6e18d99cb6d288733dcbd701b0361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8d0d2323e797fbc245e33a5a1328a2139c7474f36099da4c074d5058536667e
MD5 08ed2771f1aa7b33c619ae9e862b66e6
BLAKE2b-256 a087209109213163d0c4ad2be274dbcd4bc2b7c7540d882ee4a6737dcd1575f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b2362c22ce1c68edd782a10108390495641244dfecd8ac17187d9f7e8a2e4a3
MD5 379bfd22fa6a95b88cd0f065f4aee22d
BLAKE2b-256 2d33eb4894c2a0d1e8de6a1b68e6202e9e9a0cf7cc50a28c9d657c7c8971d464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e69446bd20558d3abec45c23b43942a29fd9559eaefba9182eb6dfc674a261ac
MD5 b41b1feda426297bae278911a22a3ee2
BLAKE2b-256 6da96b2dcebb80e3e6cd23dd2ab458eaf544f9aad22f10fcd65b245c138533ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be74efd728a5b2bbee100fd2ea80dc40884e3e26192574f8610713714c501dfc
MD5 f3939c8665f7a73850caaf1a4b8363ff
BLAKE2b-256 a83226654c42b108060cbced744fb926898320ce075327c8d0e8f7417a9761dd

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7745354896089ce08954e5e82133b018d2982aff622418215a0a5bee1e3adbf6
MD5 c254f934a717688bc4c8143a633f2c01
BLAKE2b-256 1616884e8274695bc13a2e2f542fab367e3632284be4d57b4105fafae0851bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 676f3e4fdd103b838d420f16b82530bf715c59ef865a7995678a929c8c4dbc2a
MD5 2fcd59459ad047b7b7cad2d518bba832
BLAKE2b-256 e0f28b7fd8045f263bc216f4dbdbd247aeff1cfb5890b878142a0219d083b4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 209d106b9b5ea44c60390f101bc4b1c1134033140782fba8d54e103263529ea3
MD5 c86a8372e68472c07108795697f9ef3b
BLAKE2b-256 143f7650c06d83852efde441caa6a46616294ed2d5fdc9997871b009d22de614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f12598938054f20aad232405899123a240e5ac2c1b531cfee7c82c0063279090
MD5 801cefd00b770b3651d84666517cf9aa
BLAKE2b-256 ffaf73015e4c4b84727b965b6d9b9d054581fd7907b68df6a17e07832ca658e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b0000ec5a15ee72f4405a505f154ced9be0aa72c9137a87be02623496e96e9b
MD5 2a441c994c529658d5d5f505ac348651
BLAKE2b-256 b8cdd68e8170f0b1b2bf70a4a01f10535db0e4d7a02f34dc5537475e9d8a7184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b83b6bfc8814767902413d3b17d30c66c0ba1a7a6667ae48ac4f834fd4fd3146
MD5 25cbcced3aa249d90b8093647b244389
BLAKE2b-256 9803c27763b8e20b2e486cd5b9cfb8407dc7a844ed71f7f30ed91615b4749de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf70c985565efc1cb7d20a79b45e1b413ec8674e9f421763dd9def2d6ba45ccc
MD5 4a7c6a309b055908d5681ea787c2b3cd
BLAKE2b-256 a40ab4a8a4dc157273623a8e4e8a57fe3568932f17c44d2dcd9918264152f791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7eeea2a40a32494f8680664929c0443da744d0dd93e6b216903a3ca48b5e2efc
MD5 761f1890e7547fcd67496e3ee183bb02
BLAKE2b-256 f988c119d0e2e98b01ae8065a3eab36a129e6fec93e9f9a4ce1a46cc593d95a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd834ab5ba2c6d13358a46067360c7f1706528b187eb4797299e0655ef12057e
MD5 b2958cfafec284736efb8e845ec9290a
BLAKE2b-256 5ab2911bb32ae529f5507b456b2175a5c049674f7c1882de7882703264d9e8c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 292308594908ad740e19beae226c14a95ab43ac2485dac3331ce0d1704cb68db
MD5 08a667caf66559654d2481503a9022e4
BLAKE2b-256 61ace05a050a2027af31cdd789d4bea8696187dc8a749c0bd620e2f0e33d17fb

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f6fbd254f6ae491594417a7bb88861c5499a22b485800cdedaa2c99ae1a05190
MD5 df265fa61e223da15f56c439f26677d2
BLAKE2b-256 28dcba6cab0b4a924eaa3d726298b36b86ee137fddb1ca9c8e224b4d3b8ef290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56ba4b1d1cfa4c55191fd93394a027fa59809f639c52500ac36f0be1a7ccdd40
MD5 102acdc11cc52c72dd078c175847653e
BLAKE2b-256 5b5168686c7db238141c19ecfe38f123369124403f171881fbfcf9db6bc85c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14d531e05fd2d64539d3bde62c56a0fbcdc39fd3425e275e821bfceb08b36c32
MD5 6ef038fb9d85704649501cd18004e2e8
BLAKE2b-256 d80b67ca68a6e6cf828f8c39221bb01311bf7ad87d5bf2630e71203f48bd2516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e033d95f170d19ab841c4fcee2cfd5378787c428e0126cfe05d99f790c7623cb
MD5 e19ea23f237e68dd9c828c2c45414bf8
BLAKE2b-256 fd4b44ee3241477cdc72bbc56843d51401a516d3e86ddc45037cef78cf887c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 178617300d86b2340e3b61c5e312950c0f1fcbff609f1725e9ab969ff288a20b
MD5 acfeea42736899aa146db9904399ca4c
BLAKE2b-256 9f2ca4031698aa4af96adf7a21687212ae3cb84ab4b24de7555fa7b2e78fbe26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54fd1ce2b94f866b212a13e6310db12c2fb03d9d65a061eb8a68c828c35a7f81
MD5 41d6e8c82450a71cd6b3206b2215e2f0
BLAKE2b-256 d715596cfa02367821ffb809c8669c93a85c5abc4bb0dc5bc15fe4f3ff99b7d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e727ab58dd9a76b14036900f7d26d3529e9139b93fdc89366c18ca37a1f676c2
MD5 2c92d3e1c20e0f54d649e55c0a5fb9b6
BLAKE2b-256 88424136ec0b8d2ca748d92565cf11265d1c7033aeae9db944aae8885ec45ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d433e3c7393777957c75fde6469651de64fbfecbfeeaac1a4644eb829d0f9628
MD5 531c3d59bd8902653d46e1a55709dc49
BLAKE2b-256 8a8a61907e3ce326fa023aaa8a0da70607ca17a31901237cfb6923d08297351d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9244e6665d3ba7417e0f685f23757c1261e450f3c1e8ca299dfce32048eece9
MD5 d3ef1d90b62a812e21c306b5cb68afa9
BLAKE2b-256 5fcc608d145f44fb826e5e0c0a688f9f5adf20a5fcb1c096ff5571206899e262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59fd11f14a25f3b5f86dd224a8435d77dc53b0537672215db8feb843fab4f29e
MD5 da51749226630d04d74600af00cbb662
BLAKE2b-256 49a9c10c2be970898b69e33dc61447f833b4c6b65008871c44288bb7e4e57245

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd43a0f9563b638497253d4bdf301f9ca0868317f5adeb5d8b8edd5812fa9819
MD5 f2068a7cc6d1aaa8333f10f1559e9fd9
BLAKE2b-256 c6d52f96ae5133c19c309c9910b7aa74b6c30660f352362b6e6d96db16169b93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 249b5ac01e72607aa56cd053a54fdfa7352514f5a7add75d63e48d76bc4998b4
MD5 8882697ac8708ccecff6e667d2e1a631
BLAKE2b-256 92d86b3b643189f58a174308d4756ff4b8505bb39141162b00eaec3bbc033279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d36f7ea60db61bc4d1e0d80a880c23d0e56d5fceaf5830f7e5a502c2dbe26dfd
MD5 c94a20002b82f56748b1719f61f61633
BLAKE2b-256 ddfa311149d1f5c22d1826762d83ad27b964085237d9c88eb336a7b47db3e421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 030c04f404c8e5a7ff30086b585321adf1cdd30914b31a0b5b566d3deb875697
MD5 72c4b45a13e25db999ad01517dc76f5b
BLAKE2b-256 84370561e4d5c6c3b190a3334ce17ac71f2e169a47b4f542c7758becd66d9f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d35283452f0f5b2f73c393b1924118dd918db0bf11ebed1b1eaeba3c3f0048b1
MD5 058a330134b7e580f8f739485ecb5ea0
BLAKE2b-256 017cf63b228d69b9f50711b668d6a21c9436fcbfb96315613be8193508a97d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54028dc71cd1dcbac7466959b1ac1ff1d02a920928f314b35333cde9e20d96bd
MD5 816bc63283b9e3ca125036639b154ab6
BLAKE2b-256 a4b0f0a81cee911fb1d9e127a59a92c4e0350957477b6a1408af0d7d68ea8b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c56bd7fa13ffed896647c7ff26defb7cb7440f13d746e9bfb6e5a55ee807037f
MD5 32757bd19ab00f87b4f942435f9063ac
BLAKE2b-256 9e34ac9e86708c611b12e29285a2c1056198d511780e9f5e0ce694f7ca65406c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0e63e996bc25520ad92c0de7c9acdc7883ed623fe83bc719ee52e47b9e8f456
MD5 2c8553df122e27c2379e2df3e6b01a47
BLAKE2b-256 419f8083313ecfc5ab2839b9e2965131d3ed49c70d9cfa584484619c2846e882

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd2d147cd1f950fa0fe664e3857cb2fc8418ce352d75613ede3eca098c72e4a7
MD5 ba25897e91d3acd9fa4f3e03443775d1
BLAKE2b-256 7001ad60692f1f78137df7bd67d0b96c61361d23c0b95444b264858bffafc51c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5604624a2f94a2356818b78e83d256a2a12dc4dbcbb92eafac9803974e35ef6d
MD5 2ce70556f2bbf7699b64adbc19bba187
BLAKE2b-256 b49e3f4f346f2192a54654295ade294241af6d6452f551c8e09492f71e5c5331

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