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.3.tar.gz (8.7 kB view details)

Uploaded Source

Built Distributions

py_rust_stemmers-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (274.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

py_rust_stemmers-0.1.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (288.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

py_rust_stemmers-0.1.3-cp312-none-win_amd64.whl (209.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

py_rust_stemmers-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (488.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (567.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (485.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (273.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

py_rust_stemmers-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

py_rust_stemmers-0.1.3-cp311-none-win_amd64.whl (209.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

py_rust_stemmers-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (488.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (567.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (485.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (273.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

py_rust_stemmers-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

py_rust_stemmers-0.1.3-cp310-none-win_amd64.whl (209.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

py_rust_stemmers-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (488.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (567.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (485.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (273.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

py_rust_stemmers-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

py_rust_stemmers-0.1.3-cp39-none-win_amd64.whl (209.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

py_rust_stemmers-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (488.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl (567.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (485.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (273.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

py_rust_stemmers-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

py_rust_stemmers-0.1.3-cp38-none-win_amd64.whl (209.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

py_rust_stemmers-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (489.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (567.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl (485.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

py_rust_stemmers-0.1.3-cp38-cp38-manylinux_2_28_x86_64.whl (324.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

py_rust_stemmers-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

py_rust_stemmers-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.3-cp38-cp38-macosx_11_0_arm64.whl (274.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

py_rust_stemmers-0.1.3-cp38-cp38-macosx_10_12_x86_64.whl (287.7 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: py_rust_stemmers-0.1.3.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for py_rust_stemmers-0.1.3.tar.gz
Algorithm Hash digest
SHA256 ad796d47874181a25addb505a04245e34620bd7a0c5055671f52d9ce993253e2
MD5 a9f53ed7d4280907b008f668dba61504
BLAKE2b-256 f48ac7481c6e324da825f13bafb362dbca47dbf8a7dd1a3a3502f47cdb05bfa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cc9df57dff15d12d7fec65a541af6fdcefd40ea5f7ebd48ad5202a1b9a56f89
MD5 1d1b3c965039ee45291492f0a49e881b
BLAKE2b-256 a471f0b7131505013eaaa4fbfcd821b30b36431d01b7fe96951d84721cdb4ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f95b25138431c4a457d684c49c6de5ff0c1852cf1cb3657e187ea63610fc7c21
MD5 702f1fb0292b9f85e01f609d16fcac86
BLAKE2b-256 7955b62b14cdeb7268a818f21e4c8cfd543261c563dc9bd89ba7116293ce3008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e39d5d273e13aec2f07a2c3ea0050b3bf3aaa7b6e9f6bef3d4e728ab49979ae8
MD5 a9df107b40fcdefdece0f3da02938f6c
BLAKE2b-256 4a5beb594ca68715c23dd3b8f52dd700c10cbdd8133faaaf19886962c8f97c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59eacf7687738b20886a7c0ceeae999d501902b4e6234cf11eecd2f45f2c26bb
MD5 179c65ad7a775d59e4912ba7564a4ab0
BLAKE2b-256 f145e1ec9e76b4462e70fa42f6ac8be9f1bfe6565c1c260b9e5824e772157edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 576206b540575e81bb84a0f620b7a8529f5e89b0b2ec7d4487f3183789dd5cfd
MD5 6063952ea98ce11f69a38840d252e117
BLAKE2b-256 cd2988217de06239e3e526fa6286a11e3662d94acb0be4216c1310301a252dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 921803a6f8259f10bf348ac0e32a767c28ab587c9ad5c3b1ee593a4bbbe98d39
MD5 0d304dfc9333aca6eff81978be63c7e7
BLAKE2b-256 ad1ccb8cc9680f8aa04f96cb5c814887b3bb8d23a2e9abf460ef861ae16bfe50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbb9f7933239a57d1d9c0fcdfbe0c5283a081e9e64ddc48ed878783be3d52b2b
MD5 80e3afdb790c9fffd2d520a55eebc423
BLAKE2b-256 bd6716d48e7f02b285b39028aa47f847b3a279c903bc5cd49c8012ea90255317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34f7d92abc85f0f0b1fa407410b3f2daaf2c36b8277a2ffff2ff0beb2f2acc2f
MD5 ade370724899eefeb96d94eedd8941b5
BLAKE2b-256 dd841aea103917659abc12456ce061621557eed0a44e174270908e3fb28f2cc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39c75f10da70380076b68398d84cdc42b42966180bdb8216b81d21a824278b50
MD5 8ee9584e9aba4d13dfab61ce6465738f
BLAKE2b-256 d3f22f4599ef5481be24378a23f93af405b4ca968450873d48d0a56ba925d7b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a073701b492ef900cee5185961c23006ba13fa6126cf716f241c929adbdfad6e
MD5 cf12e83e57b82f5fac23fb9311abe1a9
BLAKE2b-256 54fff27e0762a74668bf520525d7bad8daa4dd621ef5b3155c464c5bd8a7dd3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6262b40f989c0b0bcb3eaef5511268ba63703428c4ab1aa9353a58c8572735b7
MD5 60dc1ffcf241bdc7a43ae330cfaae3fd
BLAKE2b-256 a9f2b4167a4a64b0bade1695b32e4bd13ca752085d43559670fd7173cfb59b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccaa08251b9cb421429976d56365ddf9db63b5a8ac4e7817723fb0b62adf8b19
MD5 1e907a1004f1b4993ac8907403b1005b
BLAKE2b-256 b4ae3cae1a65a99687e4bf830ab733b3adde13e458a7908b6826dd9025c8c5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca1ab04ff2fa15a1d0685007293ffdf4679dcfdc02fc5b36c1af0111670908a1
MD5 cab722855be4763407c25240ec8f7907
BLAKE2b-256 503a5c518bc2761f8a873b1ec9333f7f74a8f58e7e8b39d5de065038427b114b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a36bfbd9219a55bdf5aa9c5d74b8a3741cb092495190ca18551dc39f57272d57
MD5 530a65c9a07f2fdff51a59671814154f
BLAKE2b-256 cc08f9c9ef78c7dca7a69c451b1df754195e02a3a1e7a450becdce687102aae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 47211ac6252eb484f5067d30b1812667936deffcef89b4b0acd2efe881a99aed
MD5 1de0621bb21b58bc33b2ccfa42f3fd97
BLAKE2b-256 5bee86ee4eb3188f45cf0831318dab9afddc231ae71b8fecc0dbbc79eb885ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6afcd19da56d4182eecb43bdb6c5b9686370063f2538df877fc23f1d16f909e
MD5 d0dc2b928c4426015fe1ad2f3cb0d775
BLAKE2b-256 6e75e785900047b4fc5773d0bea37c565825df26de81f25ab2d341ecaa2f55f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 658784c0072f7aae67c726be9acac40dd27b29416356c63a3a760a9499a93513
MD5 2c099dfccadd7a6490678f28f625d27d
BLAKE2b-256 33a7740b8dd06cb48ed397d65cabda9d38c2c310869c3bf51b0e0a347cb7fc8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72a7b810d8d376c03f0ccebe146f04cbf4c6c97bd74e489b0ddf1342eb40970c
MD5 4c87a3398dd6b3bd21c42aec1ed7f257
BLAKE2b-256 fc6308af5678a0cb0f6c5a462def7aec0c32f3742574ee36ddd660103d13bc86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd5d7388f807f584b4c55bfbe608ef40cff0024c1dc54de95d28265395065d02
MD5 810b5e67cb9b37d1bf01072f0ae91547
BLAKE2b-256 213809beb9ca8ec3af8dbfd441f77fc003472ca900f678d1eb25839db08df691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6f9790fe1e9962787817b1894486df7e0b5fc59e4adad423e189530530fae11
MD5 ecff99f5aa3eafb5c4ab327d94eb9e14
BLAKE2b-256 9878f64e096df43d730fb5f6e2201e6d6ca05ed18e94946f11cdeddd0205f099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9fbbb37e0df579859b42b3f850aa08fe829d190d32c6338349eccb0e762b74c6
MD5 afb41e5c4f7bc142da8eb9d71a840760
BLAKE2b-256 10a4f4fd2afc713b0497b76023c6e491f356962213bd518f148cbd28b7144e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4a65b429eb1282934a1cc3c1b2698ae32a6dc00d6be00dd747e688c642eb110
MD5 04784f51b9b3c17cf62fb114a37f3136
BLAKE2b-256 103402aa64046e4a21b1dd5f7d602fb33b1c79bd0dd57c8ebfe5897efcf62ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02b347ab8fe686a88aef0432060471d501b37a6b9a868e7c50bffcd382269cf2
MD5 d4f74c0e7cc6dcc51a51dd267ae6b5b8
BLAKE2b-256 59fd322bf0dbc142ae71516c06c2026f4ac0a4685f108a873935581b7eef3d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d8b8e6b6d5839a168dae510a00ff4662c7d0a22d12f24fe81caa0ac59265711
MD5 67cc0bd33a64e1c9cd78652b79ebe836
BLAKE2b-256 da3bf61826b786ed06f195c80b542abe082dcdd1747341c1194f6f782d566a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0f571ee0f2a4b2314d4cd8ef26af83e1fd24ea3e3ff97407d536184167f05957
MD5 f4c8acc437931020af05543d788e92cf
BLAKE2b-256 c37441efa33c0eb008eb2b1337f40021debf487e8cea5dbe4af97241a43d54b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b379c3901a87ee63d7cbb01a68ece78af7040e0c3e3d52fe7b108bfa399feb2
MD5 206c1f7003a37890a34cfe2e9871fe98
BLAKE2b-256 7d3a08722448c51e7b926b8f40a55f363e92236a89b761e89e5ee76b0e11baa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d43981b272c73709d3885ed096a332b2a160db2317fbe16cc9ef3b1d974d39a
MD5 8a7f9f7baf153ef5ac84e74401590a3a
BLAKE2b-256 665943c89cb1388a9c508d28868ce04900d0f3b4457a74b1c61411c9306a3aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b89fe8e55201604e89bdbd7559b19337ef9ae703a5545878d37664507c1067e9
MD5 527ca12ed076794a3bd22e3a366936c1
BLAKE2b-256 78a57f219ff3547bfc1337b00761c6cd857fe51b90014b9d51aeba325e33d548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a5906aa2eec31f647b94d6cc9b2b065bf77ca31be095fcbb1b412ba42f0e473
MD5 d304b90292754ebe25cb25429792a945
BLAKE2b-256 95b438e66537da1864538912aae92f8285badf8201bccdddfdbe06c3c27e99ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3f8cd1139a641ed53e9a1d7f25ae9cf3757cae96a2b0ce0d9399332ec8b148f
MD5 58d6446a58080965b41f0c267c1ee04d
BLAKE2b-256 8a2c39bfcdf674c799cb486fd1f10a9ce1599030884b47f2819aabb39db0398a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03acb3d89f8090f67698d2c64172492618585927dfb56d0b5f6070ff54269940
MD5 29af6586abdd5cff57e34b184d10ae56
BLAKE2b-256 ff4f42cd09a77639f3b0b2d662cbbc19248355ce40ba69eaac796007aae37b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdf43a726b81dd5439a98973200546660e10379e805bb6fd6366dbd8d0857666
MD5 decf81faa4080026cc05a783e15586c5
BLAKE2b-256 48d22c422476a6e21d9adbf4355b306269ac396eaa853efc896afdb2c628a334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0d2108c758e8081064cbbb7fc70d3cdfd32e0cccf7d051c1d888d16c91c1e78
MD5 918d6a001b57a71b23bfc260417da9aa
BLAKE2b-256 727cb3df3222e375cb838572952217cedf3d7925f85f3449c3c87142417e9fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b4861673bc690a5830a5d84d61c64a95ede86f79c9952df66e99e0559fe8264
MD5 8e71351a22e6048d82ec9627d8392872
BLAKE2b-256 3eed4c85aa5f2046f7c34db174b89f92d24daaa347a149343f43614a6329c006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fee92e93fbbc8e58b526b29e2d25c01ed2fb3e39d31b47938eb90fea8b03de97
MD5 3b847f2a1908e9176dd8dab1d60eb727
BLAKE2b-256 d2315b9ed5d100328beff5e08e70cea5299714c813bccfd20a3778f81dfc2e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48150a071dd612eb3968d827bb3143c28967a25f610c4b5077d5010a8a082936
MD5 d265aa6c47006357fdd4689cca8ed03b
BLAKE2b-256 783bcfc756ae8104fa62017cd3e74d0358d9740cba457dd252f976508afd896d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efc2eb8052a16626d92cc838e4459b5ae71418b761632a10622561bd01d95aff
MD5 78176c5dd87ea9ff9d7939bb1d67542f
BLAKE2b-256 a6f8142cf590a52dc5630924fa6ddecf65639862793201661943f1c262728032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 796e78f9301169f4f3ac485cbf0f00531c4227c82745002603ca0726ef157b79
MD5 9c062fbc7b1d0be54427f67333c7a484
BLAKE2b-256 45fcf8cd4718ac92226d5e3b7f57d59924c545590ea2a09478ddaa568056e978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92103556fde7d43f8206ccdc68810df73581533a98eb0ebb4f623c05ad9ed060
MD5 eff629f6eec8116744abff3feabdf760
BLAKE2b-256 4509284592bbaf277ff1232847445aa1e98493265be69a1d7cd247d7d774070f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 accc60909f0bef310edb9606fad521297a81fecece5fb345b34862f1a72a4c73
MD5 c5e0feb04bc4f96ff92c3a7d3dc148c3
BLAKE2b-256 b9f7a5ec25e1110af2c8215aba253efa63564aaa5b803551921ea54c33b4b320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f717b49eb756e9266150593e368587a06487f56956de518411e22419b8e419ae
MD5 8a5a2cc5e05f238da1a73909174bfb29
BLAKE2b-256 b09a6c70dfdefba0f12cdedbda9394238f8a753e5ae13557a792e8cdc31bb426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6aef7800e28457557a16ecb19ef3dfdeb459bddd6d9cea4e929ca328dda517d7
MD5 2b3da363413fc60840aa84774f4f4415
BLAKE2b-256 1eb62d1ade1590c148565a8a125aacddcb78647d8ba3f2491103c828d5aab6e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78b6fe32037621ccfb11c11612a7463639b2ddcfdfa2109a10576f2a0359ea22
MD5 8d8c47a85998888ffa5b0ea1bbd59ade
BLAKE2b-256 6007b96dcc8d2828fc115daa36e1c1cdc10ae5abcbc7213bac03c86bbb79200a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d182dd36e825583de0bc8d8148ea8258ba9bd9d7274d219071bb9d58a10fd23f
MD5 ffa504166d041665bf97a40f2166e8c6
BLAKE2b-256 80b771e898725722f0372afef87ceca1a892179ae8058950122664e19e9581a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d3bc1c1bd29a8cf782c2e0564219e11ee45e26b774aaf1a19110adf821c8bb8c
MD5 7450ea4dafd440ff3e6b7fe0f59d56e1
BLAKE2b-256 db5084c857e1bcf54def573cbeac67c5131f2ba917af4f2fa34c92ed4acc8c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c93900ebe37dff6068f9f443782fe38ed212c9cb6e640c92a26880124ad303d6
MD5 e1171cf49c93cf01c43b4950015b29bd
BLAKE2b-256 b52b059cfa3bed899fbe557d6725df81c51520760660fefebba11e2b7ec4fe8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a801fe925e59122ab4da289a35ac954c25f0e32c02b118416c819cf526a3e93
MD5 081f68003173e5b309a79c5f4a63247c
BLAKE2b-256 7cf8ee109d5b8d70346f147ece61cc6776da116b0fe36947c5ac7997ccca2e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 285357eb9346a22e03f1a843a382d76fca5041932574746ede049c15f2a75c83
MD5 67676c75f74a38d8844ab9944d4e9a2d
BLAKE2b-256 a09f122244e6bba3f3887b01faac506881ced80efc73698691d035248d390237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d92f275b061af0ef213ee897e3e2000a9b704ca2d731e4894fc04789460de8e7
MD5 ceb9580982265d55aed66b7c8bc20a06
BLAKE2b-256 733f74fe7bdded80e8d2ed3b4e7bf1bd2cd77d18aae676e6ff7d93d2fa8fa950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f457f8c1f90663d747f9a58dc4652949bda872d7436c4dd3c12445183df8f256
MD5 089649a12f28be505e26e8236c375199
BLAKE2b-256 7fedbc384c19198082e5fdff1ae05eba7096c105b30c5d23ed6d534c3749198d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 985e4bdb91d2bdcbb066838ba108b68de2b5d847350ecb8824fe5bc41cc6bb42
MD5 9c95f2f88cec3ae82a8099a02da0a49e
BLAKE2b-256 9a066705a22ba3d1ed0d91992f40bbfe14ba56c5216f07453ebbd002fa7c6786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5863d0e3dbf9c9564635ef29b60928d9ebdc407970fbded3f31e75ae695e108a
MD5 560c34d283594bc2fbc83cdc8b7bc16c
BLAKE2b-256 39f3f2ae8190120f551f159dd424f9603acdddf5d5490e0de5b0ce84bff89a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc689a1b6413e0a5170ddb3902c9bec1422f2749ef4b61e8c88618d8b6d4c79a
MD5 593324799821c4c27d0f7a20d165edd1
BLAKE2b-256 fabcf8c91c3b975ae68a02eb7b58c4b0fc810db4673000092a7a39193e3440c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cf4ddafea535c67c00191ff314f947e146b73b3c2a18f745c633f6da10e0118
MD5 10fc423db37ac8b1f77d9a3dbc0be2cc
BLAKE2b-256 f8e19324324f67274fc8343e1806847b4684c05f918fd0838b7ad4782c697738

See more details on using hashes here.

Supported by

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