Skip to main content

Neural morpheme segmentation for Russian. Lightweight, CPU/ONNX, C++ core.

Project description

Slovorez

English · Русский

Slovorez is a neural library for morpheme segmentation of the Russian language: it splits a word into prefix, root, suffix and ending. Inference runs on CPU via ONNX Runtime — no GPU and no heavy dependencies — while the lexer core is written in C++. A lightweight model (~0.69M parameters) makes it suitable for production and edge use.

Features

  • Morpheme segmentation into classes: prefix, root, suffix, ending, postfix
  • CPU inference via ONNX, no GPU required
  • C++ tokenizer with pybind11 bindings
  • Batch file processing with caching of already-segmented words

Quick start

from slovorez import Slovorez

model = Slovorez.from_pretrained("models/slovorez-test")
model.predict("Приставки и суффиксы выделяются автоматически.")
[{'word': 'приставки',     'morphemes': [Morpheme('при', PREF, 0.61), Morpheme('став', ROOT, 0.78), Morpheme('к', SUFF, 0.71), Morpheme('и', END, 0.96)]},
 {'word': 'и',             'morphemes': [Morpheme('и', END, 0.54)]},
 {'word': 'суффиксы',      'morphemes': [Morpheme('суффикс', ROOT, 0.82), Morpheme('ы', END, 0.95)]},
 {'word': 'выделяются',    'morphemes': [Morpheme('вы', PREF, 0.93), Morpheme('дел', ROOT, 0.93), Morpheme('я', SUFF, 0.84), Morpheme('ют', SUFF, 0.79), Morpheme('ся', POSTFIX, 0.99)]},
 {'word': 'автоматически', 'morphemes': [Morpheme('автомат', ROOT, 0.73), Morpheme('ическ', SUFF, 0.80), Morpheme('и', SUFF, 0.76)]}]

Each morpheme is a Morpheme(text, type, score).

Morpheme classes:

class meaning
PREF prefix
ROOT root
SUFF suffix
END ending (inflection)
POSTFIX postfix
LINK linking morpheme (interfix)
HYPH hyphen

You can pass text in any language — Slovorez extracts and segments only Russian words, preserving their order.

Decoding

By default, predictions are decoded with greedy argmax. Pass use_viterbi=True for constrained BIES decoding, which enforces valid label transitions and improves boundary consistency:

model.predict("...", use_viterbi=True)

Quality

Slovorez (Sq NoRoPE, ~0.69M parameters) on the Revised RuMorphsLemmas test set, under two splits:

  • Random split — word forms split randomly; test roots may also occur in training.
  • Root split — split by roots, so test roots are unseen in training (OOV) — the harder, generalization setting.
Split Boundary F1 Root F1 Accuracy Word Acc
Random 95.95 91.77 95.22 80.51
Root (OOV) 91.83 83.59 90.12 64.32

Boundary F1 — F1 over all morpheme boundaries; Root F1 — F1 over root boundaries; Accuracy — character-level; Word Acc — share of fully correct words.

Performance

Benchmarks on a corpus of Russian classic literature: ~3.6M tokens total, of which ~1.71M are Russian words (~150K unique forms); the rest are punctuation and non-Russian tokens, which the tokenizer skips. Pure inference runs the full pipeline (C++ tokenizer → dedup → ONNX inference → JSONL writer) over the ~150K unique forms; real corpus runs the whole corpus with the SeenIndex cache, which — by Zipf's law — turns repeats into cache hits (~91% hit rate here).

Pure inference — ~150K unique word forms (words/s):

Configuration 1 worker 4 workers
CPU — Ryzen 7 5700X ~13,200 ~17,600
GPU — RTX 5060 Ti ~19,500 ~23,000

Real corpus — ~1.71M Russian words, sequential with cache (words/s):

Configuration Decoder Throughput
CPU — Ryzen 7 5700X argmax ~141,000
CPU — Ryzen 7 5700X Viterbi ~67,000
GPU — RTX 5060 Ti (batch 2048) argmax ~246,000

Installation

cd slovorez/
conda activate <your_env>

# CPU (recommended)
pip install .[cpu]

Demo:

python -m src.main

GPU (optional, for advanced users)

CPU is the default, recommended.

If you specifically want CUDA execution:

pip install .[gpu]

GPU support is provided as-is and is intended for users who manage their own CUDA/cuDNN stack. onnxruntime-gpu does not bundle CUDA or cuDNN — you are responsible for providing compatible runtime libraries and putting them on the library search path. Start here:

If your CUDA/cuDNN stack doesn't match ONNX Runtime's requirements, ORT falls back to CPU. The simplest way to avoid manual DLL setup is to install a PyTorch build compiled against the same major CUDA version as ONNX Runtime — ORT then reuses PyTorch's CUDA/cuDNN libraries automatically.

How it works

The architecture is a Conv1D network with sequence labeling in the BIES scheme (morpheme boundaries as token labels). Tokenization and the lexer are implemented in C++; inference runs through ONNX Runtime on CPU.

License

Citation

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

slovorez-0.1.0.tar.gz (3.1 MB view details)

Uploaded Source

Built Distributions

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

slovorez-0.1.0-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

slovorez-0.1.0-cp313-cp313-win32.whl (3.2 MB view details)

Uploaded CPython 3.13Windows x86

slovorez-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slovorez-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

slovorez-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

slovorez-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

slovorez-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slovorez-0.1.0-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

slovorez-0.1.0-cp312-cp312-win32.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86

slovorez-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slovorez-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

slovorez-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

slovorez-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

slovorez-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slovorez-0.1.0-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86-64

slovorez-0.1.0-cp311-cp311-win32.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86

slovorez-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slovorez-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

slovorez-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

slovorez-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

slovorez-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slovorez-0.1.0-cp310-cp310-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.10Windows x86-64

slovorez-0.1.0-cp310-cp310-win32.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86

slovorez-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slovorez-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

slovorez-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

slovorez-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

slovorez-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file slovorez-0.1.0.tar.gz.

File metadata

  • Download URL: slovorez-0.1.0.tar.gz
  • Upload date:
  • Size: 3.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0.tar.gz
Algorithm Hash digest
SHA256 74a23a63ba81ec196e46a20b123516bcdfbfb3e0e3557df3a142c1b4e01e0317
MD5 cc058755e3f27cc7af33b13b19300570
BLAKE2b-256 1dd291982f085b33e0799c7cc1964089885f303c0d31944491b8220f5ffc5967

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0.tar.gz:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: slovorez-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd7484aa071b751768634abcc49cb9cc1b5b64017e2d8e51c10d339ff61e2113
MD5 2f1a915e8acd73ff665094332b35eabb
BLAKE2b-256 e2080c18b08f4e35849dfc05437928507947b10e434c65d4274b46e4adb2fc4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: slovorez-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 06644674bf2f4a58cfaf537249bd3699a37a473a856b0703d7d2dd022a681786
MD5 0396f4cc9fb73c09e27bfb61e99aabc6
BLAKE2b-256 7204d7fcc61da389ab3f62633646168d5187d00e0653a23c7617464eb765818e

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp313-cp313-win32.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b1835b5d0511d816bf0ff7edabd5d840a76f3fae1ed2e91653c480bb0b754c1
MD5 a94d7f093d3b4d9b99bb6a25dee4c841
BLAKE2b-256 107645b9fc1cf2e09fd7ef986c91a82ec92ca93a78543989c56f4df5773e1784

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06d2bb36f240d41bf4b3f4f62b9bd41984b402d2a74a90cc8ecf9d8fb23fbd8e
MD5 2f3d79f0c99d9d4753f4460fb5b75e10
BLAKE2b-256 e9489ea217f3333765dbc14a4bf678e0c158ebf2be0a3d1fdcf869f2539c3f08

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0773c977b5ec76b75bd513d4e86caf3a5c966090893f5da4f9c08f3295be7b0f
MD5 21b78e238248d7a787301cc77b1c770c
BLAKE2b-256 b1b48a885adf3869b6c5dd94dc75dd53f2041ca34d02245f5aef1cf878fb66a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99e3c7326b84c5ab7eba41934d330ace0593c81433d94490e1c379455632d0a0
MD5 20633373485e20e1423b79824949cbc7
BLAKE2b-256 d2263241c867790f5b13b2371f945a484ec0161da83cb48b6c961215e3da3e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81874f857cbc25f5e916cf2e621663ca8221d996ab6efb55e2a41893f901d10e
MD5 04c6cce5138fe58794c483543b23a3a2
BLAKE2b-256 85246615f94192455fb268f6df1162728cb027835a1f5dcf054464f277aa8078

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: slovorez-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b799e9d308cc1c65d6ed1ee3a5bfbdb3865fdc6fcf26fb9a3bfdf4891a6709b
MD5 48ea3426e15041625427b0d5a7fe5518
BLAKE2b-256 380aa0f9242eb2d2a43cb595e636bbcd19eb6381d9f62d0c416b5573e20ae0f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: slovorez-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f99c430d77f9d33ab94859fb9a62eb64931d60ea42dafce2b213cdb3f554cf9c
MD5 4f644c98b459ce9e92ab824b013fae93
BLAKE2b-256 00892e021f32ea1d9b827b75f926404210220e01995dddea47d6532fb5dc9703

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp312-cp312-win32.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca2c2247f3970c469356df35ab4158b5e84870883d86c761f1193143983bae7e
MD5 a9b018ced8e4637bad76d5c2d92c7dd7
BLAKE2b-256 c7d62c437592ef09b39d8574cfe1873a87fa1f536f0c8d016f5241dc2da28dec

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e2fbb2aab290b2e8fa7696a48e794776d0ce3a05357b2bfb9a694f51dcef3fa
MD5 fed165393125bc27fe2e982d995c6411
BLAKE2b-256 0f3565ee3eaf2a53af137d82533da81304a7de5b1b51f200764ea0e5405ef424

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e5726b7576153a1547e5c89a5c68bec34abd9a8c06c80a7057f360295563a8f
MD5 3cb4ac26cf40e847428229fa55078d46
BLAKE2b-256 a08d6b13db7ba3508399e4669bb64492f32651a5f199fc8e10f66a83afd59f4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0dbbb80ca118c895a4a1e1ff89a73dec7241e8f94cfa3b6b57f506dea7af86d
MD5 b59dbc3956736f2e3aab263e2f1dd987
BLAKE2b-256 7b68d359caef9caf02d85a2acb615783a55ce32b67774b7d81bdba79365941ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21f3edfeb04efff96d7e2388a87fab484be0c5b7c67732adfa4c77302bd2a2a2
MD5 0491ee5fa17bebd0417fd6889c7c4c66
BLAKE2b-256 017a7e697d858250889dc34c58735624b4310d2e59393124082cf719b119f718

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: slovorez-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ccfa21c2b41912ae376de053c5b1b7877d5ac64ac653784214847df95d96762a
MD5 8f8ed999c404510bc6b57458bc8360a4
BLAKE2b-256 a9d779e4e4445e01037c3794d15b7d9bb5dbba220286d17c2ff43cef09bfe55b

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: slovorez-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7ed7a8791ef82666f310990c677fa061be745ed3ccb0e1dd05e670edfb053b7c
MD5 677dbbd37002cd4dca9f0d85d05fef84
BLAKE2b-256 594f185f32cc7ce8e2e99939209553daf6199d071544d8906a006161c5790317

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp311-cp311-win32.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 406c770297259e2104b6da5b85e92c2d1a5aefd2073a78365653bd970fd553f9
MD5 d3a847d7d1f15a4ee9f7e3e5f59bb3c9
BLAKE2b-256 83c7bec3cbaa38c36ff1a399573473b85e10036923805cfcf7af571c73ddede8

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5c35e3144eed92bd704e71a4bbfd7428f08fc80e86fcc954e1d7574d22538f3
MD5 88fead35266eb3e2546ecfcf01d9ad2d
BLAKE2b-256 a5553644dd68b2f8ebbb7a5284609164be8c87c0888e2f8fe70d59d789d1b9da

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c67d66f9a8400722ed9cafc13e0e3861360db4013ccd4d198e5057e69acb77a5
MD5 9b86b34425baa103b374f3dbca615bf3
BLAKE2b-256 3bd05d894ffb4cee1828affbd2531aa024afd98c78314d33cf52f8898efb814e

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d1c1c707205bfcd09346ef1487f073d480ccdd0f8db98741610a4c9d12383d6
MD5 1b2d9af15ef808b9500d30c88bdde67e
BLAKE2b-256 1ee337d8e4b5a3520120758b52b1b947dc2d30900cc9e588d4c9954482cc41c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e7275b2b75c4c1b7f696c1e2060f00c252f14ebfa888779af04fe176a485da6
MD5 74668745fdc51674b537949e74fd6fbd
BLAKE2b-256 38ad002b53c7b1f859bd0fe452924da407a8ba6dbe90d30721341ff45e5b7958

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: slovorez-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8c4fe24ddddc1159649f5becd1bc3b3632fc61f706ad2b249df3462762a2525e
MD5 9e5c1420685dcf3a1e398ce15ad833cc
BLAKE2b-256 8d10d243a35ec82051a7a4489ad1796b6a0b2b77ea47948ec788fb7c4b05b352

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: slovorez-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for slovorez-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1d4cf2f7d4b65e4f127c80299ee1f41da6196dd10c74c1022a4225524fb59256
MD5 4658796de1f408e4db008d80523d021a
BLAKE2b-256 b344312a19b0daadfbb3291c864cb54c61d84ba4a51380752af9a1741fc826ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp310-cp310-win32.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7894564e4538ee5efb32626d322f05bdd1a8ab8ef040b4cd11132fb736c79979
MD5 3a7abe611b88d05b3af01664175f8660
BLAKE2b-256 2609b0900792b7f9b3f3b1e1c2246f4bb0a982275031970f48cc7e0f618b705c

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12f595658a8deb54799101be9e62037be198c1c7ce098451f6ab01c889b04947
MD5 11218604d3544e3c5416398a205fe5ca
BLAKE2b-256 d03b842148659fdc537743423cf703873670bec92e4d2c67dba1f7b27de943c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d46f68996e4359119c0300e7b2677818c77f0924dd44c71c3545723c6a558b1
MD5 1bf99fd5116b8e773ec03f2444664644
BLAKE2b-256 e21506c9e8935166cbd8892c2c27fc13f935f4ed8f23d9e82b9b24a60b7bef62

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d7bcab79805219ec9c00b51563207c6257e8e69169646ec743e3ae4fd1e0f52
MD5 4faa815507ca56f55f33b725a7bf4241
BLAKE2b-256 6fe5f78ae2d780c243c0548c0c35dcf0199a89fd8a0f0d6fbe2d3e2d42800321

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file slovorez-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slovorez-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84941437b0a1cf75b0a92ae3725b495b1e7eb512fd7df10eba9f14e687da9767
MD5 5781c1c68ebce02666c601cbd200ffa2
BLAKE2b-256 886068bdeee274287210215514c0fadf8a2a6e377d0b2d14011317bed7668dfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for slovorez-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on heysonanderson/slovorez

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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