Skip to main content

radixor-c — Fast Scalar Stemming for Python

radixor-c is the C-backed Python runtime for Radixor, a dictionary-trained transformation stemmer supporting 20 languages. Its native engine is implemented directly against the CPython C API to keep the overhead of stemming individual words low.

It uses the same precompiled models and stemming semantics as the Java flagship and the Python (PyO3) package, distributed as radixor. The distinction is scope: radixor-c focuses on basic runtime stemming from prepared models. Text dictionary compilation, trie modification and the broader model toolchain belong to Java and, as it converges toward Java, the radixor Python package.

Which Radixor package should I use?

Package Choose it for Model operations
Python-C (radixor-c) Fast calls for individual Python words; simple deployment Load standard or compiled Radixor models
Python (PyO3) (radixor) High-throughput batch processing and Python-side compilation Load compiled models and compile textual dictionaries; broader capabilities are added here first
Java Radixor The complete, flagship API and model development Full construction, reduction, extension and persistence

Radixor-c is not a lower-quality stemmer. Given the same compiled trie it produces the same results; it currently exposes fewer ways to create or modify that trie.

Installation

python -m pip install --only-binary=:all: radixor-c

Published wheels support CPython 3.10–3.14 on Linux, macOS and Windows. The installation also resolves radixor-models-standard, the shared package of 20 precompiled standard models.

Quick start

from radixor_c import Stemmer

stemmer = Stemmer("en")

stemmer.stem("running")       # "run"
stemmer.stem("unknown_word")  # None

Construct the stemmer once and reuse it. Scalar calls are the primary reason to select radixor-c, but batch and PyStemmer-compatible methods are also available:

words = ["running", "studies", "cars"]

stemmer.stem_batch(words)
stemmer.stemWord("running")
stemmer.stemWords(words)

stem() and stem_batch() return None where no patch applies. stemWord() and stemWords() instead return unmatched input unchanged.

Custom models

Radixor-c loads compiled Radixor models:

custom = Stemmer(compiled="models/domain-english.rxc")

It deliberately does not compile a text dictionary. Prepare the interoperable .rxc file with Java or the radixor package:

import radixor

radixor.compile("domain.tsv.gz", "models/domain-english.rxc", language="en")

The resulting model can be loaded by all three implementations.

API at a glance

API Purpose
Stemmer(language) Load a bundled model by alias or model ID
Stemmer(compiled=path) Load an application-owned compiled Radixor model
stem(word) Return the dominant stem or None
stem_batch(words) Stem a list with positional None results
stemWord(word) / stemWords(words) PyStemmer-compatible unmatched-word fallback
stem_all(word) / stem_all_batch(words) Return ranked alternative stems
algorithms() / version() Compatibility and package information

The default bounded cache holds 10,000 results. Use cache_size=0 to disable it, or configure the PyStemmer-compatible maxCacheSize property.

Documentation

Radixor software is available under the BSD 3-Clause License. Model data keeps its separately documented provenance and licensing.

Release files for radixor-c 4.1.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for radixor-c 4.1.4
File Size Uploaded
radixor_c-4.1.4.tar.gz 21.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for radixor-c 4.1.4
File
radixor_c-4.1.4-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
radixor_c-4.1.4-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
radixor_c-4.1.4-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
radixor_c-4.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
radixor_c-4.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
radixor_c-4.1.4-cp314-cp314-macosx_10_13_universal2.whl CPython 3.14 CPython 3.14 macOS 10.13+ universal2 (ARM64, x86-64) Details
radixor_c-4.1.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
radixor_c-4.1.4-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
radixor_c-4.1.4-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
radixor_c-4.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
radixor_c-4.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
radixor_c-4.1.4-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
radixor_c-4.1.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
radixor_c-4.1.4-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
radixor_c-4.1.4-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
radixor_c-4.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
radixor_c-4.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
radixor_c-4.1.4-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
radixor_c-4.1.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
radixor_c-4.1.4-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
radixor_c-4.1.4-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
radixor_c-4.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
radixor_c-4.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
radixor_c-4.1.4-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
radixor_c-4.1.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
radixor_c-4.1.4-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
radixor_c-4.1.4-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
radixor_c-4.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
radixor_c-4.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
radixor_c-4.1.4-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 1.7 MB

Release files / radixor_c-4.1.4.tar.gz

Download URL radixor_c-4.1.4.tar.gz
Size 21.0 kB
Tags Source
SHA-256 checksum
How to use checksums
877b2ea5ac7e4909327dceaaa04e6c15fe7002c8c5d7f587ac2fe727b193bc80
BLAKE2b-256 checksum
How to use checksums
c9d1a15c24418aef6648d1d058524e610498b20820232d25a5d2e10c9060056a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp314-cp314-win_amd64.whl

Download URL radixor_c-4.1.4-cp314-cp314-win_amd64.whl
Size 24.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
73d7804db216121729c282def07ec2b3520519aedf5850b8c64be4ccc279ace0
BLAKE2b-256 checksum
How to use checksums
32fc5a3957ced3ea41311b451d7f7aeb648b8a8235d25cf4af44542cdcd3b644
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL radixor_c-4.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Size 72.2 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a2698c178548427971b4c0723b16ea55bafe0e236a42fa901797dd55f31f0933
BLAKE2b-256 checksum
How to use checksums
f76c2d7284f792e0bcfa5708c56a36cf960eb8e69630b0d38798f250c55c9bd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL radixor_c-4.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Size 71.6 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1a26896bdea223f1f4510e543b5eca4c07e788cc83954ffabfb2337d8088fb9d
BLAKE2b-256 checksum
How to use checksums
3c59bd760bbde1cc0a7565a505b0a7630bb03ee7b27cf342a627fb172f1c75dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL radixor_c-4.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 71.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0cabf8d51cb71988e29bc57c44b3a89da3456b3785c4affa4d3e28c1f1a028a9
BLAKE2b-256 checksum
How to use checksums
d12033b7e8a14b6c4241d55913d4beaf8291689d6dca494148b212daf443c436
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL radixor_c-4.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 71.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2debfb3467fbf6979917b767167ecd2371f1a440ab4faba91a3342ae704530b8
BLAKE2b-256 checksum
How to use checksums
72f753481724bddfb4bbdd87fc41849e3f8a7a01a165f894756fb8bb921018ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp314-cp314-macosx_10_13_universal2.whl

Download URL radixor_c-4.1.4-cp314-cp314-macosx_10_13_universal2.whl
Size 35.1 kB
Tags CPython 3.14 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
459cb5af5ea7501f1eb2dbd297a8bc5ccfd33edc9b37820654a16d8a2c3819f8
BLAKE2b-256 checksum
How to use checksums
2d9e3b236f679a75c53f4596d70e21c087f30df27f56ec98a40b2c2777820ad2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp313-cp313-win_amd64.whl

Download URL radixor_c-4.1.4-cp313-cp313-win_amd64.whl
Size 24.1 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
b70ca9669959b55c90fb60e1f27d6bfa12df91fa17cf7ecd70d6a09a1780774e
BLAKE2b-256 checksum
How to use checksums
cea429f6ee3a7328414cb55e7a0a0dbc9968f028658491676fea081109a49011
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL radixor_c-4.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Size 71.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d94fe3505b9c530cb5bea63608c40b6c01c66d1f48ce5d87124e95ec10ec9cb8
BLAKE2b-256 checksum
How to use checksums
4a1f1cfbb85f622d478e8ccc07a66adfbb6c42fc84e92a7979ffa6887fbfca6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL radixor_c-4.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Size 71.6 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
fdb903a1d67c560d8fe83e803682398866e79aef8936c97f2573de7e75015ef2
BLAKE2b-256 checksum
How to use checksums
badbfb9cd68c37813d60f404e35660807ec21835923bbc15144d095897715143
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL radixor_c-4.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 71.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2fbfc37346f6f09fc3fb8c0c54e16b9a5be366db27842fa3b04b753b1a643ee2
BLAKE2b-256 checksum
How to use checksums
067ae785268ad017c879d34042aa080c29fccb1fbcbc35c9bfe324d6d8bd32bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL radixor_c-4.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 71.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e0ba08efb4c02e6a50f265c1563dc7acb46499c61abc67631665c554fbb824ff
BLAKE2b-256 checksum
How to use checksums
3e44dca8f2828f6bb67ee13af189c30603c42f6edaf61316747f92901b83bba6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp313-cp313-macosx_10_13_universal2.whl

Download URL radixor_c-4.1.4-cp313-cp313-macosx_10_13_universal2.whl
Size 35.2 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
431989cfe68e32ce9168a3a5678f20544073e3c593a02053011f6b8b4842eee2
BLAKE2b-256 checksum
How to use checksums
05f48e298cb85a5832fee6f77362894d9f25e74100c7970d755480660a3b84a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp312-cp312-win_amd64.whl

Download URL radixor_c-4.1.4-cp312-cp312-win_amd64.whl
Size 24.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
d8b79ed14f18967b2d98739c46d6cb5248ac30cd692aaa147bb96f34026ad3ea
BLAKE2b-256 checksum
How to use checksums
97c61986bea90b6a34f81caf68919b8e31922d3ecf8176b89bfa35bb3bfd8c20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL radixor_c-4.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Size 71.9 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
36a8623049016cf37f9cd323d9872aaecff87bca64e741625f41c7f335c7a720
BLAKE2b-256 checksum
How to use checksums
adc153dd24ae53eed5299a2a78a17690fce87b6c5e7e3036e64dd47275669b15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL radixor_c-4.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Size 71.6 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
472fe82451e0799f0a6b4b55814d04d5bad515e252dae59c40a2ed2550440bea
BLAKE2b-256 checksum
How to use checksums
52972024948bee5857fbaa3b29e94724393fde08336f2207af93b4a3d012c0e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL radixor_c-4.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 71.5 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4f0aa8e012b9c15ad122f81dcc6a3deff93cbc775bd5eb5a3512efd98fa4da1f
BLAKE2b-256 checksum
How to use checksums
611163af9839bd108c290b596457a0228b63109dd0d4d51990cc3df99bd090ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL radixor_c-4.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 71.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4f89aca4d98a7e28f6ce57f0e1db33fbe616fdbdd5518801dbb01990962eaed1
BLAKE2b-256 checksum
How to use checksums
7be585772871e94affccfc851a9e80c83f77117d43365a8ee8600ba851695621
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp312-cp312-macosx_10_13_universal2.whl

Download URL radixor_c-4.1.4-cp312-cp312-macosx_10_13_universal2.whl
Size 35.2 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
03ade5d175da167af80ae7b98c2cb024e82e471aa7a9d6d816fbcbe9ec8e43c2
BLAKE2b-256 checksum
How to use checksums
8b7a354f389d4aca81c2dcb39569877b81f84e5f6528d54a6486d20c74760f3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp311-cp311-win_amd64.whl

Download URL radixor_c-4.1.4-cp311-cp311-win_amd64.whl
Size 23.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2a0a0141001cb552311a12e9ac44076b33927a11990654303ef5ee0fb18514dc
BLAKE2b-256 checksum
How to use checksums
adba50dbceebaa440dc299eeb83308ce450cbdf50f92315c068fbccfc07743b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL radixor_c-4.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Size 70.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
aece0f7e0a23e742aed00b2acf6f2b8db6b11b79cc6e20e7ccc76a081016a4ee
BLAKE2b-256 checksum
How to use checksums
96cfa42670a7778fb8b23c663c63aaaf3890cc34ca390af341e5b8551dbf94d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL radixor_c-4.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Size 70.6 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f0c343aa9ca4035a1a9c016cab1153e8d78d5dd2d1d3cb0f771f6eebe22c106d
BLAKE2b-256 checksum
How to use checksums
a5cfe261c485a8454eb614e59d789ecc18327339adb926d0b943a7cce968dd2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL radixor_c-4.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 69.7 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f8b25a880660be306287fd411df20278c047ea23bf30b5efb34d2569213f90d2
BLAKE2b-256 checksum
How to use checksums
ed179fbe6fbe3da455ea5bb26534df0cde5e91a9896d84ffe5872def68c01440
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL radixor_c-4.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 70.4 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
07679a9046310db8d77313e2ad44cb3105333efcfea134977437608983840c66
BLAKE2b-256 checksum
How to use checksums
dd2a18d45c9e053c40554ede21721cb165c3bb69fd2207e3f062ada4e3eda313
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp311-cp311-macosx_10_9_universal2.whl

Download URL radixor_c-4.1.4-cp311-cp311-macosx_10_9_universal2.whl
Size 34.6 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
0ece24ff800e2174d3ed1ade4d29a88e7364433d52e3b5a4b6c77f8c95a54fd8
BLAKE2b-256 checksum
How to use checksums
da0978574fce4e698771b136818f0b1f736beae0354beffecb614024528c55ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp310-cp310-win_amd64.whl

Download URL radixor_c-4.1.4-cp310-cp310-win_amd64.whl
Size 23.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
be3db3a09a34529de76a448901a99aa4077c1eea2e5f487517fa0d98b9d4a7da
BLAKE2b-256 checksum
How to use checksums
7b9136d1da6a286f0fc128973201f69c83dbac1a74d4d1f4e8aaf1948368c13b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL radixor_c-4.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Size 69.2 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2d602c0889322a153acbe50dce0ac9f41175d59218beb8a6102b65390f27c9bb
BLAKE2b-256 checksum
How to use checksums
d25d456012711708923b19e4707ed0f922a7ed6020e41ee2b6ce5266791e5873
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL radixor_c-4.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Size 69.0 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3666a5938034db419cb8be9491e03e5fcd336a52827f7005a3913cd507b890c7
BLAKE2b-256 checksum
How to use checksums
16c558ded588149388c611442f1a85be0c687f174461769a71cf249989b4c586
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL radixor_c-4.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 68.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7f233b5c9a9bddffb06ad27c3f947085ef484dac42945fac73155f10d3dc90e5
BLAKE2b-256 checksum
How to use checksums
980380d10d0584a3c3014bcf171c775dc199e53c7be893f808fa8e5c841dafca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL radixor_c-4.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 68.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c0912a5182c545e77ebe17833d705a630f2f4212c83948ca24718a032b9d3d72
BLAKE2b-256 checksum
How to use checksums
6c7f95b2b20c0b6ef68abc8b28c8e8990efad76000a082964babdef5685346a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / radixor_c-4.1.4-cp310-cp310-macosx_10_9_universal2.whl

Download URL radixor_c-4.1.4-cp310-cp310-macosx_10_9_universal2.whl
Size 34.6 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
65a730ec7034a7792a27e6b7c30802e24c20b86f2e2c1013faafc7fa39e02cd7
BLAKE2b-256 checksum
How to use checksums
c24ae9c94652d2b7cb2df1730b59d66d11957cddc7fb1bf4c8a0d465d3c3217e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release history Release notifications | RSS feed

4.4.0

31 release files

4.2.1

31 release files

4.2.0

31 release files

This release

4.1.4 This release

31 release files

4.1.3

31 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page