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

Uploaded Source

Built Distributions

py_rust_stemmers-0.1.2-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.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (274.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

py_rust_stemmers-0.1.2-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.2-cp312-none-win_amd64.whl (209.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

py_rust_stemmers-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (488.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl (287.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

py_rust_stemmers-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl (287.5 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

py_rust_stemmers-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (488.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_10_12_x86_64.whl (287.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

py_rust_stemmers-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (488.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_10_12_x86_64.whl (287.5 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

py_rust_stemmers-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (489.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

py_rust_stemmers-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (567.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

py_rust_stemmers-0.1.2-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.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (313.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

py_rust_stemmers-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

py_rust_stemmers-0.1.2-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.2-cp38-cp38-macosx_10_12_x86_64.whl (287.7 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

py_rust_stemmers-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

File details

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

File metadata

  • Download URL: py_rust_stemmers-0.1.2.tar.gz
  • Upload date:
  • Size: 8.6 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.2.tar.gz
Algorithm Hash digest
SHA256 e50493ce6f6f271d4089f9428b7467996b6be03730eaf6bc94e61065afd2de85
MD5 8eb8b80f35e09905f25d6f5b1b1a2b91
BLAKE2b-256 c437bf63744db3438754cc58d23b86ab3578a47b553a0ae23f0bc4a13a09ad70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9676e8b37316394392781bb53034a8c9e14d3c8049853e673496437107878238
MD5 9f38284c2db23d26d82fa5255a56d036
BLAKE2b-256 8c21a28cc2d404af579887ef5769e558b688e36cbb54c9252356d15d07348b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e5336927dbc8bb33113f51fc2ccf58114fac612fbddedbb90a570d092e3bc86
MD5 ca2ecf1d26a6e0940560e8cf96186954
BLAKE2b-256 bb8891f8681dd501a37e5817bc1f31bcaf522b8a7e755d4e50ba9272a640277d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5e88d58a4da950fefdc35d199b04b9ddcc60c1276158ed889b7242b13a870bb
MD5 20487ceac64c1895f239709ef66571fa
BLAKE2b-256 447e808586c68e4241f39ab51ec1870134e4d81ced6957b378234b099d6c00ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8af46382aa874f029b30224aa1ce7f9fea4b2652143875e7b5cf9555ccb025f
MD5 1941a076d67be20bfe7c37e30cc2470d
BLAKE2b-256 e46f9123be365c990da56cc8553cdf41390025662edbae5b72e62731e74b5c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b7eee27788e2416fcc5115e0a8dbfb7c17be7a4d4fea17ca27d2312e57e21a8d
MD5 790a44969d0c912beef49e3564314221
BLAKE2b-256 4939eeacbb2e0b70adfb3c5eb66ceaeb931a27e1da0ecee403cec881aa6a950c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 637adb0795bd41e13a9e91db6d316219e5a93413bea1b3b14e658db4570ea622
MD5 28808f3f88f572f1b4bc36b3bfde08d6
BLAKE2b-256 2fcd282711cb965442c2e041a57b1bca67b2965c4409389a4395d25f3a000251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d83c010efb567aab7868fe29cb326c0b05cd0627227407ca8eda630f1bc0718
MD5 5433f32e8344fcf5b7621a99d62d1dad
BLAKE2b-256 882cbd6c5fd51480d1b0282a82e6b2f6fc5a3797cef33de496842549ed5e1072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa0e68971cb6141206a76dbe1fb51674451eab907514db2d5ee03bec71d00709
MD5 7b1afef867652bd69685ab52c215ccf9
BLAKE2b-256 afe2b71713c364420d20a6661c23b0005a75c4a47a1a1f209d13df50a506d379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cce0f95b422e74a1353dcf435cc69f082d018f79d2cd57e0b8925ff237e4b098
MD5 11da2ca4d93cd341150a6965def3757b
BLAKE2b-256 359968d037499a19f48a1f15349ecd95282f012a9b7074be2e30428065ca51e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13e74def832670e673251558f62a8d38b139395bb4440e07f31eca0a72b5c9ab
MD5 69c4ea6da072284704370ef93bc66878
BLAKE2b-256 3a7a6edb70248af91ccbdc194ed3de7db72c2051439814f9d9dd886fa193551f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 190024ba619fb999bfdcca8618722e89c3ff06b7c6a60963861f65ba29b1525c
MD5 47f4f731fd559cae56f80947ed72dae9
BLAKE2b-256 177078015ec599c74b4a5af923c920e3ca3d7c395bdb1d3e696ccc1f4dbfc88a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d229a4a5477ff42bd54442dd287c8a976f953d3319f29f2c44c00cc22a0de6af
MD5 694576d134ca820291413a70263c779c
BLAKE2b-256 9c9f61a8e1c52c95fc294a454abf536478cba8c330e5ce510dc3e8b116885e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 419e66be5fd74ffce1f0249cb73b96234c7c84b62e288f4dca4682e762edb234
MD5 9fa734796b2a3324d78f38e06165682d
BLAKE2b-256 1672b9a42c9883583fcb0ca93a4b12b4975642f7d20f4139e8432eadf5b44da4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f7849c91eb56b135771e348e88387d95b50ae9b42d259df72b7a0e439039f1e
MD5 d885a5a43e114af23486a217f8b73548
BLAKE2b-256 ceef153bd4a5d85d08f2b3d790679f419de2a7b44bc7ed8b91e179ab6f41323c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77bf7e33622c959753e2e62ea3284ecf0074aaa39da163ffe11811e0c23618c4
MD5 3b96ea20edeb8c67125ecc2529adb660
BLAKE2b-256 73e368e48e0872e720de50bf9276cc23994db004e3218c649926c007a6e405f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e58c6e0584e4bba3f219eb8f56178a0cfb159e316e2ed5b1a7a9efeff1280a9a
MD5 a0919675919fef53e3ee55c18b39f816
BLAKE2b-256 7113a2cf493e08694bbfd925e4d50604add6797a65adc89918127d09d33fd9a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69efb84cfd689c0320c5a47b212b31fa49966c615ada6787a8d1cb49d32e76fc
MD5 8a1846d42067d09d3fc11098a4c120ef
BLAKE2b-256 56753c7a8d9cea0943bdfbb75ac4184ceea0bdeaab8232a525dd62a1b54afab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b954f8101649eafb5c69406baaadd28d196f3b01abea6e38350b53fecb7ac1d4
MD5 02bfff91609c2bcf9e9283e414196dc3
BLAKE2b-256 fb8fe107ff00273fac9b00e3df9cc16023a40b5f591ac07b9c2dcbb9e9832624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 680cbb91127026bc71a2b273cceb9bfca0a5f68275b751cab2d5808b2c709078
MD5 ad267958e74ee35094cf97c1a5762d3c
BLAKE2b-256 a72e69e1de234c2da45b98a29334905e56c3f35f05344b17fbde6bca1d549f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dac8ee6afa19748f574a445bb4e3367a7d869699ee924664759c001b5cdf2973
MD5 5f6ac45c3902f98b0033cde50d38ef6c
BLAKE2b-256 894aaf310a57b0f603e7492f081e8ae66b40a337fc06e173bcb7042bfb827ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 dc6b97cd81c7389dad9c0bc6e3d64fbc7be07fbd00323fcd16490ce56e0b57b3
MD5 47e58e936b000755e36f99d7535ddcaf
BLAKE2b-256 a143545316b721fcfa075e8610ba94c8c2cdc3f6771a1d110077eee284d6bb70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc7c79e2d63584e3a9814e4f39f60ba22cf145b2fe8b9ed81c6bfbe399117f3e
MD5 9b4d6219b4442095ec81ba0e06297ae1
BLAKE2b-256 cc7824493352eb092cb940103ef58d6f32cd178237be1483e1a01cb270b12555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5aac0c8c14dcc87a760aa16956e840076aa5f196f4ae411b65ffd0fed4f4677
MD5 1b4ece309e83332a712fbc941142b77d
BLAKE2b-256 5811808d58c3b714dc15d0c96220ebfe35f2734e1fcf17946a5d70c14dddece6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de68cbd947fefe58ae376febc2fe6702fdad4221ef4309da73cd28361d726c6a
MD5 493b772f629f2ef4f1f3c887293526ec
BLAKE2b-256 3785ffc04b1891af91021a5bbc935a7db3a07f0f45dea9018d23b87591feb8c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 848fdf9850cb64446f006a0085632aa62b9d9b23ea1518e9623b112aacec2fd9
MD5 1751f9482c59e0ff5b88954ef5024413
BLAKE2b-256 4a0f7d9613cc498e7a75c1922d7ea3c3539bb3c6383d6f82042cfb8b16c94191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7edd04b06be46225c1bfd3eaa880e72efab6bd122a7df136225d9edfe453030
MD5 6b11fd106bb656bcfd0adeec3091edef
BLAKE2b-256 c132861e0213c48ce215310677206f2bbdae1c31178c477a6b695f615809e255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02930b4a1039ca1a83408d4cc75c9a32ff3795d6aed6d5990bf99ae1de66c0a1
MD5 b0d04b023a26c0f93d0deb51fafc3668
BLAKE2b-256 650a609dd349496040dc3155b37fb18a1562ebd22792cbd8c4c1b1f16e4b88c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 991a0029ad12a0874e7f45704346c45febad339f4d4fdfadc917f4370f28f6aa
MD5 387a8ba0e9040cf57e855fb0977bf7d1
BLAKE2b-256 a0dc248b03314a4c64e5bc0c4a386a8e0ccfe8453d0e66412047ca8b672cc706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 bf339e0ba4c616550814a5675a938a6d83df437a8706f7f7ac83b95f8ec930ce
MD5 3a473810a4a418174a2eb7794f59e7ce
BLAKE2b-256 233c0fc6fb27216b6e52638d3d1e9045e75ff957ae3b26861b2a3fd02470f268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19ea2ebc6312197493a1101e2bb31e4803e2b3b7e777014a8a2252e97d50d4ab
MD5 f57cb852f1669eb36536ef9311082ef3
BLAKE2b-256 442182dc655c6e2941a94c5a516f58dd16cedc686eeb93d157fccb5fe2af9f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be282050395fe001e9caab89594c60316300135c708f9bdef679bbcfeee34cea
MD5 56ec99e09aedbec38993e3c8b776817b
BLAKE2b-256 41701c49b9cdb17d0b9a5b1f342de1920336002e0576a5bbec40a7b059af93c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 614ddef8af45b63cf3d655987d92d6a0969008fac33b569939f307dc61f1c325
MD5 1163495d64c5954818ba02cb7c3cb40e
BLAKE2b-256 8d2b51c25001689cf2a7b08f867e490d5e0e5cf50209c2422a900427b2c1c36f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b167d7dfdb195930fdc4e8a969112ea06e3c7fa7b53f6f898b486d4a467a7860
MD5 cd3f1c95fbc89d3f0c6ea91fd0f1f148
BLAKE2b-256 bf3250c39bea2984134ac5936755723bc8e31f49a1edb11ea19441f671f62034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe1d66e6110dfca9c3eaa81bede5e5a95c6685477b5bac2dcf9c4e0fe9e6efcf
MD5 bd5bf2498ee83f398ab59e12cb2a3eb0
BLAKE2b-256 ddd37d1376b675b602a297a545f388f746c56f5f81fc2253e534a67b851792ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 787aafdc9a0cd99842e6a37ecce7497d4624320e4440b0902d1fdc8d08e194e8
MD5 89210d5d8c99ed275e01bd863191c096
BLAKE2b-256 23847cbd6aab5d7ab07f89a88e926d24af11f1fdb3369206bebf4709df9703fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cf5d9dc75cd788e587efbe5016a075916c83e3438331ebda8cc1bde416e34cb
MD5 46ce7b767bb983f2469c5827ac514e0f
BLAKE2b-256 96282b3834c43094963ab414128675402cf1c2cb9ce5eb7233feb88c1a2048b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 621c86ace5bcc068a921e511d944e334293f4f189b086266a6caf7cbb744268c
MD5 c68d0ac1b9ff113f27de7dd7085183d9
BLAKE2b-256 8ed48ed83d27473d3e5ea90c86af8f10099164cca92f6ba3d6136d2669d11dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15456ef0ceb0977f4bd7490498afab1a8152fc4daebf5586dac5bfe24c69b2fe
MD5 308523ebd8adc971116d0a25568e276f
BLAKE2b-256 5502f3bf65ad2a3cf6736b2a187507bc2080f1cb3e7665cd9a2e4682178f9cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8112066e9f67842d1812b81a7acddfd679f98ae986d909efa19b6983258d236d
MD5 84baa546ebc8323385758194957ee6c9
BLAKE2b-256 99eb7275ba8cfe1d35159d712bf0f5cf335bbf0edcd78400a41b3ffc83e5bddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dc089c443d81909a35cccc63a0b4f8c673c4eb9ffe6614b6061845dd8dec00a
MD5 afb069443a8811c4c047e6e7cac7cc4b
BLAKE2b-256 9c0c5f4365dbf2fc3b138110579a0562ea652a68f26ac64d4479953b821401fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f28800c6251be07fd1d4301a727ec7eadf449df6468c39a7f0d7173d64358294
MD5 dddf66e19729d3504f9aff1e4593488f
BLAKE2b-256 5247b3b8bdebd11eeb0bb5ee53fcd5ade4a38e1d38054d60ebb725e3a4dcce00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29226c1773798cc5118b9267b82aa421b63c3df68d8aa5c5fa37ae4d3f906f1c
MD5 c644ed3d5b0aa5d3ee51fa5c1ab57f83
BLAKE2b-256 afc9add6b16dba5feff3b72a2c3f4f41309e2b01208dba3ef448e484c075a910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19996d2bc1ded3e33ae902c9b34b05133dd909bc8fcb3b46338316b07dd6d0d0
MD5 95fada04e0b2b4b2ba26d5d586946063
BLAKE2b-256 6b3403497acceff0ef838dab0fe377a5e5d1bc85e799c8901fcadf944a123f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 898f00b3993cf36419660e2c098a01d9193756f6663f4b7485e29aa918b783ca
MD5 a6fc03727ce2de3ced0b2ee1cadbcd93
BLAKE2b-256 8105db69fa4fa9af3f669898e034b1b9b283db4b5650f110f3bd3d477ed49947

See more details on using hashes here.

File details

Details for the file py_rust_stemmers-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_rust_stemmers-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4c77ace16864ffcb16972c9255bb698792766913c2dd838bc09b88bd96dd9b9
MD5 b402f5d96e17ca5c5fdfe7a5455e657d
BLAKE2b-256 acb96d3b4c5a94f26649d776123c06fbb0d38ad953d7a6f42ee61bd4c22e34e7

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