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.8.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.8-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.8-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.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl (276.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

py_rust_stemmers-0.1.8-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.8-cp314-cp314-win_amd64.whl (209.6 kB view details)

Uploaded CPython 3.14Windows x86-64

py_rust_stemmers-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl (539.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.8-cp314-cp314-musllinux_1_2_armv7l.whl (596.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.8-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.8-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.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (321.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.8-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.8-cp314-cp314-macosx_11_0_arm64.whl (275.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

py_rust_stemmers-0.1.8-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.8-cp313-cp313-win_amd64.whl (212.4 kB view details)

Uploaded CPython 3.13Windows x86-64

py_rust_stemmers-0.1.8-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.8-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.8-cp313-cp313-musllinux_1_2_aarch64.whl (494.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.8-cp313-cp313-manylinux_2_28_x86_64.whl (324.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.8-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.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

py_rust_stemmers-0.1.8-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.8-cp312-cp312-win_amd64.whl (212.1 kB view details)

Uploaded CPython 3.12Windows x86-64

py_rust_stemmers-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl (541.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.8-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.8-cp312-cp312-musllinux_1_2_aarch64.whl (494.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.8-cp312-cp312-manylinux_2_28_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.8-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.8-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.8-cp312-cp312-macosx_11_0_arm64.whl (275.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

py_rust_stemmers-0.1.8-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.8-cp311-cp311-win_amd64.whl (208.4 kB view details)

Uploaded CPython 3.11Windows x86-64

py_rust_stemmers-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl (537.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.8-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.8-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.8-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.8-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.8-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.8-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.8-cp311-cp311-macosx_11_0_arm64.whl (275.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

py_rust_stemmers-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (290.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

py_rust_stemmers-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl (538.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl (595.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl (492.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.8-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.8-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.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.8-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.8-cp310-cp310-macosx_11_0_arm64.whl (276.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

py_rust_stemmers-0.1.8-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.8.tar.gz.

File metadata

  • Download URL: py_rust_stemmers-0.1.8.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.8.tar.gz
Algorithm Hash digest
SHA256 6b0f6f48bc54d607aed802de872fcd5a71bae969a6760976dc78ce55e8eaf3da
MD5 b645c66bd1da24a4a4d9f9abadc32672
BLAKE2b-256 6bc19763f9fb1cd73f9c317a83feeed6e0d4af320c6bbddab47b4a94f3a47d0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfc185b599e646a0e39d11df3f5e6d15edefb110496601556385d33b55fed5de
MD5 24cd3a3b0497b53075d85c80c9390ade
BLAKE2b-256 22783bf351dbcc7f51eb03a506c0bcf8aead8b1401cf26aaa1328968471531aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dca0ae40715238582d6f1824b61d09ea3982359a061b69798ab5732b3ba0d4c5
MD5 130e135dd0a83a0fe3c81714a5559201
BLAKE2b-256 45246b32c86dd4eecdc309bfe6c15529a11e90b1e2c7af015366498c14e925f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 234fdcb58f4d907877ed03c9358668a149b5a66d096abcf43c324a4f5697d36d
MD5 9794c9187c1c40bc537afcecec9c282a
BLAKE2b-256 76fe04436ffe3aa4c02a40500835fc1a80d52375c738aa7ef66ebe0c4ccc2900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c03f51280d5d72f7f9b07101ad248845279dc1c82c47a74149303d25937464b7
MD5 ce33f7d57d288469c6f9b04b7aca0c0d
BLAKE2b-256 c08c7c6d581412a6f33d316e72a8f3442ae0c61a7b6190ca30e1a06ee17ea234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 931d13570962b093417e5443a9d1bd63d73fa239ebb81e5b1d346663571403e4
MD5 93396db3932209e6ecd55e988fd78108
BLAKE2b-256 4448aa584cf3772e01231641c95dc1aa73327a7d986c562639d78d0013733acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c786235275c5c2abb7f206b8236aee3ca0bc53c7497daf7fb7b01d3491469547
MD5 d6a8c1aa55b43cefc9fcc0e1605e11a1
BLAKE2b-256 008ce68fa5d862ea6a27fced3535c25ea4eaa26ba1ce00dfef5841924c74b167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 479c77c32d8be692f3cfcde7e19273f02ac81d6f45c6aef49887ef95cab7abbb
MD5 a947d8ba7bed5869e159a46b2d69f142
BLAKE2b-256 90d732c6d3995e7036b73683389de2771f4dbbf40de192b7efe73c2528ee1eb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d396dd25c473c1bc4248c79cd223f4b36356b55a124652f015c6a001547f81ac
MD5 7a04e581ce1b70824270132b1d3dc00e
BLAKE2b-256 91f93cd18902fe2fa54557d3fe9132552256372d381c7aca71346163055d78b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 451ee1c02a3f5cf1e161b46ba9032cdda4ba10a8b03ff9ee61c1d34d42a0bc81
MD5 0fdfc20f01afbd0cee7fb917b4976fa0
BLAKE2b-256 1072fe33e614c114264d1ba54d39da4b5a4abeb6aedd0d26e5a8fd0637d6ddba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 245e2c61c52e073341893a9682cd1396b61047154548aee30bb1af3d8ed4b4cc
MD5 742d1cc5d8d25decb6288ce50a1a121e
BLAKE2b-256 06598211cd0f56e53f7770debd9a78de37985fb5662ae66e3b7b380f4c79888b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dadd0e369703817fc7026987b3093f461f9f58d8dde74e689d546184bc8f3451
MD5 b7e4e90d2714e512d9892992568922db
BLAKE2b-256 4fcbf59f9a80caa099cb6625a46c9a8e6e7e80bb3ed284f17e80245c8240a66e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b0327b151ab8a338fb54fdac114ba34394327fc1e2c4c425ad1caf2013e5de3
MD5 1f6cb50ed1c702bf7c758e0e722ebf58
BLAKE2b-256 f494e04c8b6a8364bca1b368785cef143755dd2d1ffe74df8f8b47b075bb1043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b607f0b270951fb66479baf4b68716cc63a981585cbd898b0b6b5c359efde7e
MD5 ad95befac305c02573ff2a623a2da492
BLAKE2b-256 c2d8988fc3f5dc0dbbd4bf5909f50ff953ab55ee8b5f79a835d00e57847d3123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 526b58958c6ffa36c4a805326cfb624ecbd665d16ba435027dbed0bcbcaa09d2
MD5 b5ccdead6152a82b9875f68b4582d203
BLAKE2b-256 b07ef4346adfd44acbd7eaedcbd7d21b7f40ec9712e6c699e71fddad8dae6f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15af4e12e1288de2e5241eec375afc6ad6be4c125a28ca010599d9f92db23f01
MD5 f0856da8e4cc73e968446ebc836b7aaf
BLAKE2b-256 c2a0dd7c5fc6ade6d2a2a49e49937f06f2d488511454e8ab1b313d277ee8c3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cc0cc0b8eb45d2158c28ea43e2f338c110aad63052ad3bd00bc7446a595e12f
MD5 5fc947f66669e63eb1561a04aa9fb8e1
BLAKE2b-256 768ce7a2c940ba00e0792ae346aed5e755d51d37cf6d6853f6b141e5380e285d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a68745d4b3c7f5abc778ca967e8711df6154873abcfe4e62a6631fa2363cc32
MD5 c171087e0006ae90eb5298e4f28883de
BLAKE2b-256 6daff16e805b7aefc2257b192b83a89300c8360b0fdffd3dfefa92dee4ec9b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35570098da02eb439afcd7270a12bf850bbe874b85cb912e0fb2d87a6e703920
MD5 82bfe9c7ee54b841b4bb729abeeee0fc
BLAKE2b-256 48eb981b26baff37cf7a26ee206763cc4d2fb3e1db8f0f86ec030074431fae05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5cc8fab9d0f1b274a26935a632362b8278f03e81b65e8b8644d5ca3f62a5a1a4
MD5 5229601e87c85b851a415c4b90bf2c8b
BLAKE2b-256 6a48c0e4fb955db784cc354e0756354602f7043ff4c10fcbd9d901a2f8fe3239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae773e1d01e9aa328d175f461475d0cd7074a82bfcc71de6dc5765e51f1cc9f7
MD5 6768808d2b1eaa4e7e5156de85a5aa76
BLAKE2b-256 5cd7e60d04849e90aa3ad457211cc4999c30401f433341f9a5588c12b81f9877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21ed8055cec1f78d666afad8ffd7a51775ba419d2c615b8a1df7b32ca7f33e2b
MD5 3c9d6fa81c9f0ddde1f1805c45e39e39
BLAKE2b-256 9d0dc58fe98153cfdb6abf4dfb6ac335c923000d4af4e736080c3a3045b7aea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ab605a86c950ba7e8ab1392cf91296c0bec3084babb897a4aecf90a10c82395
MD5 701919390a8af61dcbb498a6433150ef
BLAKE2b-256 57d5701c73a4f6a7fecfd96a6588f0cafe98d6b0acde93adf8a2e45535f3d1d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c92733b020534470ca5a0d7fe8b85c85622ff383d4f37fec75a1c677aa84921
MD5 4da9610b5e9112db78578736913a5c9b
BLAKE2b-256 c94621d784a3f1db6a23051ffd5826d8ee667d26a64587c1cfbda0443ed87fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5bd15b89203ecd886960e237124d1aa6e55498d76418c36c967d3b12168d43dc
MD5 72f860ef5ffe7f99d5f62492f7b88769
BLAKE2b-256 c298f078f3930311e7b6154ccdf9166c4e30a416c7d199e136b5f09265d58a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dd967eea2f808a1e73aa71ecccef0f4925a4cca4eb02ced94057afe3303153ef
MD5 b4f68755dd91507164cabefd6bb2e36e
BLAKE2b-256 92caebb707ab280636b8f46d040ccb051d1a9ddbc1f1ca2d90cdba626872f405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56cc2c2df742fa6529285b7d204720f34b7da789ed78eb578442f93c6de97d89
MD5 70889d077e4a98223ae9a032f6ae0c85
BLAKE2b-256 520add48debf386a206ee1c6ad75a0827eac89428441291c90d98bc3803fccf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b90fc81411943b114e8eb4988a876ba3b12bd2d20741559803eddc4131575dc
MD5 3b64a65d683cc03133f0e66b931e8199
BLAKE2b-256 0cac73816237dbec20a7299abf901e2f7b6061d238754e033b48e423603f5336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e86ad68fe297a6652f0f0390625ea81858b6f27862fd4c5ee1214bf5af29b9d
MD5 84639d7f5bc732570a8f0e421c7ae795
BLAKE2b-256 5701fb8527f6474d576975415405c985a97260e0403829e062103d334230b7d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa42f5f8feb694aaaa869eedf477fcaf66f67a192cd64d94302d06920c33864a
MD5 14f5bdc56e7f5115599b64452d906492
BLAKE2b-256 3ecef34403b68808519dfa3220e1d94a40f26d5025f27e28893e2388ab9cfde5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 515884bcfb47b10335146648f276930d0c1201ae5e8b7b400fb46d8ea05c0ec2
MD5 1764bf80edf484ed4f27ce05bf511425
BLAKE2b-256 f99595da2b353b164a3a2b8a1c799866a58060693be4f1dc21065663dc67dc17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40c86be90cee4a709ad84fde4db7f11ca44d65630a56b77ec86fe84c23adfc09
MD5 fb91f01ffb0d4cf12bee99ae3d4cd514
BLAKE2b-256 f3a48bd5c9f31207136830457d819e3f98bb21c54c0cdc40d6f1845ce4efdf7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89d3d34094b9b6078a8ea6fe1c7044e5fd32f14e76c94818c5008f49ae075f08
MD5 22e82cee99395a9ef25f7fa2e2f5a168
BLAKE2b-256 ec7c94be8b932179823d66e0d2be03a94706132a7d16a640d5e5710de1cb1b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51d0042d2a92ef0f7048bfc06b6c2a02306af31ea47f09d24b34e4b7e63c4e80
MD5 1d9eaff04b4ece908c8c42ce3af4f579
BLAKE2b-256 7315ae60b9010924adac465f418822d9c514690aba6846edd67b6e2b5c227745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a9a4b8733d0b307bd0879ab7e321aa8a0bfd054a75a5cb23c647df5ca7d17c3
MD5 6c702ce4745b6adfefdcc130f2818684
BLAKE2b-256 e26a39080bc8f4a441a35378c0faeeb834fb27974997f40d51342574e70f9662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13b25ce65509ff7e37725bd38c62704f32ae0604ac0899f43c8cce41d5543212
MD5 f27c240bc0b823d69f4ddadb12461ccd
BLAKE2b-256 0e9054c2949cc4fef544810305526e0fd658e2bc87abcc046283379a7044abec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 870afb2d1d4731bd2d74b715b34439b29734e4dc94c55342096f07669f7f9fa0
MD5 cc84bcbc832f6bdb1938362f7b625d38
BLAKE2b-256 278bb3972f0fc14e6bfc602a9260a1747742aaf86737ad57872998b085a2f1aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f16deb1557b8253d8c11693047bec4ed67d6b09ae0f84c8b896ea03ac2fc8925
MD5 07dd73821509439b3ef5c703ba1a7509
BLAKE2b-256 1d3b8e829e709542f928beb0613f4dffca4797a817f740c1be07eabd11bd2db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eee4af7ada2ce9cb3ec59ffe8458148c3933a86507d816bf954ee506a0e45b61
MD5 48c08b17b7aca965f44ccae111cf778d
BLAKE2b-256 2efb7b1a93f63600633b2c741714f0f6024b2caff54e5aed77c5f6e0be384947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08c258deab6d994551a92e9468ce88e58f97e636e73d9c5763978a57d7675a13
MD5 a54243dc93131f40b1c1dc72d60e7dae
BLAKE2b-256 eb0d2976bb288240e25110be687e6be5ecb0623a17f667f186e07033e429985f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a1e11d22a240318dc917266eb3c85919455b6ea834445b95997712d9ede6b93
MD5 f36ff56b0552ed77e1fa5c06fc4005ae
BLAKE2b-256 5987ecaffed03e4b78d35ffb44740ca779e57d9f49d7d764f3f56b633b1e1c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3007ad4ec51e0c352ae410234a24a9ac75fab0c1e06c585fbac9fcced69385f8
MD5 f2fa74e774fa7277f27d635f272d1e3c
BLAKE2b-256 6593a6c0f30109c259199ac171cb6a0c69addefdba454ee0a8d51bb94e767c11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 769f37882905da2311cb720681b112eb70a4e6bd56fb424d473427b5379c8396
MD5 167318553cb8016dd5c7cd80b7bd9b33
BLAKE2b-256 c3e2e685cd31655a1ac56ebe0d571d221c199b1971eb5a2fdad88c889dc25983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1686fc009869ff8bcc1d5a305f071eeb8c3b3612a9827bcadd4e61fdb5727179
MD5 c61b452e87337ee3b26bdce8c08026d7
BLAKE2b-256 480ac88c9a7b5c94acc1175a33964637aff9cf8fa4c2e595846ab1df04c1f0bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b1159a38a198eabeabd908015f9425c4220b61b42c6603c58870481ff2b50bb
MD5 8f8f288d918723f1f37cfa24dcc21a99
BLAKE2b-256 e95bfcc991636129fb2840fd1c7560112798046f26fa085b7a377382d50d2679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 22d037a82920bed8fccbec62cf5ef47d821ac3966a3d098fa48a2053397ea6b7
MD5 bf4817e3a38ca42e4b2ad569452cdc00
BLAKE2b-256 1cafaf00e6b00f0aa2bc3c164615af362b962cc79d2ddedf53d0e9e92920c425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f1d2135974bbbea2c15087a7d8cec8697338b2a748c9694c92943775f4d6c14
MD5 ae57940c738fc4e1c6a0e9b227042ae8
BLAKE2b-256 ff84e1212e47f7db3d468c9c4555f85594019a15b948a614e60b190adf9c477a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da0326c913070d5f3fabd56393ca4118167bb0b13c2932a77c7a1b31f85f651a
MD5 a58ccc974058894e886cc597d7ba7f4f
BLAKE2b-256 e487fa4b5dba78e1e5597419f1cdad25139165031cdf63adff96fbb3e01b0e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dab8a862fa8e4c9e715848e9d64c317229d7a2c37238cd1c73237b85d655ab7e
MD5 516df6be07363e84cd41ce369265dd1a
BLAKE2b-256 47abda7228d7f68d156b3d690c355eed98438f0e9564f04cb5bccef66189c4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25bb9b0b6b8d79b32c151c7f5f94af9af9aea201ca8736e6f117c841b017f028
MD5 991672d773fe5ffae1f0c02af25f1331
BLAKE2b-256 fc7fa406c7fada4fc8281dd01a389efb15c9cbe81e07afbd70e089e6b6574020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 342b6cc9eb833f102d86e146ee71bccb3c1ed1e8320db8e6553cc81b716b1b14
MD5 425b3c0b73d353ec553e7183fdd01d7b
BLAKE2b-256 ba9bfcc7f3e0b01b570b646478b16461d9934b39eae4f34009c104a2428aa631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45d0c42346f8e5d04b86a0b0f895bb15c53788bf551e7fad36be1dad093e856f
MD5 2c4375720206637913a23fdaece27651
BLAKE2b-256 08a545b5fba9c25b00f4ae17ae81a54a4555b0466f5c8d774465591b11dd9745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af749b3b9f6531342250dd05854c0ae93e01f79b0049a8769012e0b50e9aba5b
MD5 58bf5c056c55d5e7091c7f2d30f65a2c
BLAKE2b-256 e5812a670bf588cf255698d3c5133c13ce8d5e018c6c0bf6ac64b77abc897999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bef8062d28251b465299cc676de7c11dde003858caf2c2b5c14de7298dc63db
MD5 b033b11dccc58b18c0f80360de080737
BLAKE2b-256 42dacfe72e8213390079be9db139ec3b2f9e810f33e0d1f5fc0ebe30effd608e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36b952ce65a794faf15553b8f5b60431483c2d5bec00bc6982bf490e727250f9
MD5 8b6b3e1aae157559f7356851c0c2af16
BLAKE2b-256 22d628285b1c6fb9e6689a78135659679f637edc7395a2b994f48123094f1c99

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