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.2.0

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.2.0
File Size Uploaded
radixor_c-4.2.0.tar.gz 22.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for radixor-c 4.2.0
File
radixor_c-4.2.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
radixor_c-4.2.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
radixor_c-4.2.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.0-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.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
radixor_c-4.2.0-cp314-cp314-macosx_10_13_universal2.whl CPython 3.14 CPython 3.14 macOS 10.13+ universal2 (ARM64, x86-64) Details
radixor_c-4.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
radixor_c-4.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
radixor_c-4.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.0-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.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
radixor_c-4.2.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
radixor_c-4.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
radixor_c-4.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
radixor_c-4.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.0-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.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
radixor_c-4.2.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
radixor_c-4.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
radixor_c-4.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
radixor_c-4.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.0-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.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
radixor_c-4.2.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
radixor_c-4.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
radixor_c-4.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
radixor_c-4.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.0-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.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
radixor_c-4.2.0-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.2.0.tar.gz

Download URL radixor_c-4.2.0.tar.gz
Size 22.0 kB
Tags Source
SHA-256 checksum
How to use checksums
a9286d21e631a6aa0a311dbc5324397c6b35eebb4986866a0a057d4d3472a695
BLAKE2b-256 checksum
How to use checksums
7d73464a87199c6a56fab5aa79d5fbee63f819a0081f0de890b58175322ff473
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp314-cp314-win_amd64.whl
Size 24.6 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
fdb7d525f7e15e968b0f8065a945e059d25a4ccca33624110159f2e165a707bf
BLAKE2b-256 checksum
How to use checksums
494292634167937eb5b5f3ab7116a0ce08bdf46da3c237b51d263ec3e9a6e8f8
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
f336d03f66a14ff3d66cb8e19aeef9ef5f01970858d4a2828cc90018041da3d2
BLAKE2b-256 checksum
How to use checksums
bf299f142f07f63835d2a46c7c0a2856fb30c2af0e6dca993d3d12c82387a88c
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
3c60b1eeacda0ec54dca9f65cf6ba02fa620bf52a1c59851a21deb5947910d9a
BLAKE2b-256 checksum
How to use checksums
23a97fa2312173f50406b30f1f8bb209e01e97a4a1932889a3d7f87e33b356c0
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 71.4 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
866ef6682caf17847d5aad624cdd8a9ff9a029a700645786149632b871b11833
BLAKE2b-256 checksum
How to use checksums
bf34a5d7d36cc6f9bf652e3940ab9663ac6ce01843a12e353d9252e353c72261
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 71.5 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ffccad3864d557209caf591bb93e5b2e93e95bfaccd41fa920584edf5223d7f6
BLAKE2b-256 checksum
How to use checksums
c7d7573a72d7e8e66c81bad3909235afbf8714ce01092941f3fdb14f3cab1730
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
19341e331c7c0a3e906df4ac33c770a399ff9ebda4df84842ee2b8c796ca7679
BLAKE2b-256 checksum
How to use checksums
51a89df89a63f931fd1f050cd45a0c9b7f22301c9867972000f35f26b6bf48fb
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp313-cp313-win_amd64.whl
Size 24.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
4ba685cdd22a3a28480743930715d257af2a0c662af5d73b6494f2d5445154c8
BLAKE2b-256 checksum
How to use checksums
d071e68f84fc307cda2647b46534b23dac77514db78ea5b1d67970f7893a107a
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
8facd26e761f8d7b81968b80009a33cb005a72ef93d30970cc6cfb8763b4001a
BLAKE2b-256 checksum
How to use checksums
1e92a27848147998198a9586796fbb8d43add8f41a34e3c2c46dd2aa9a276688
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 71.5 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9b145dd75e21bff6f9d7a80404bbea53a2a01b67ab8a5f8ea9cef131c2321934
BLAKE2b-256 checksum
How to use checksums
297bc937227bedffc948c4db299d04336ddc09d35b0a8fbecd549ab361b43982
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 71.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8541f6815b633f39c359906e04335862dd73a3c15642212a85db20a2416f5ff0
BLAKE2b-256 checksum
How to use checksums
cbd291a2bf5f60dbd9a5a57bbf4fd63190d0855d40cbbe5a551d6a447aceb82a
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 71.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
537cfdc8739ad5395a6c4deeadc0b917ff369c1fb369df9dd49b7d5abbec5904
BLAKE2b-256 checksum
How to use checksums
0f2e0c16108470f5c0a0e0a9b5614d50074b01ea2cd11f9fb777c866ee601bf7
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp313-cp313-macosx_10_13_universal2.whl
Size 35.1 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
2f5509bc9a96d7f6615522c92ab67d77eaf039393b4f7a5cb189d6e57775bb7f
BLAKE2b-256 checksum
How to use checksums
4c5dba20fa24879cda94f1085e7fbc24949815d5d434bed149638ce1415235b6
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp312-cp312-win_amd64.whl
Size 24.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
393c4bed2a3761022103f60227684f68c58098467ff5fbf4ff8a65a13ed39874
BLAKE2b-256 checksum
How to use checksums
314ca96e73921beb31ca549ad51ca9f874f02d3701ce2af691b4326524a582b6
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
99f4c4440aae65a3d2a49ad52823420e1d0c11a3d24568bcb555a5ec062e1abe
BLAKE2b-256 checksum
How to use checksums
d9e058e1d7c19082afc453f7cfb365924a3428bff16091dd37bad324830370f8
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 71.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7b643b37ff14f62fab2dde39fa2164baa2fa72ee7e1c337d6aa4e33f6b979a12
BLAKE2b-256 checksum
How to use checksums
b6f922f7386326599ad7045de28b230525f7315548177712616644269b3289b3
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
b3b2d394554a3c8e969a9708759c317c425c0a35e71d92c9efe3633238cb6d0e
BLAKE2b-256 checksum
How to use checksums
c4c9c31fc1977c99550203f34c77557c6eb1f39be3b19cd6a076bfb7cd8a07d7
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 71.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a1d3e267fa2de42ad553de43164295ff17c90c84d15f4e72cbf026d8658a2cd2
BLAKE2b-256 checksum
How to use checksums
a49cfddefd51ae6078962a5ed92e72540eaf094cf864311a7b6716e60af6fbd7
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp312-cp312-macosx_10_13_universal2.whl
Size 35.1 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
20c4a62c56586ee2e8dec78f00ebc1ad223f60394484671913998bedeb44ca6f
BLAKE2b-256 checksum
How to use checksums
1f31ee78fa150110493608470dfcc60a6543f805d9cc319d14d5883589eb724b
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp311-cp311-win_amd64.whl
Size 23.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
3f166e8280c7e133dc93e0879a057b20c4c08784732fcb3ca129f28a4388a3f6
BLAKE2b-256 checksum
How to use checksums
834fd0505e6065ee4c54c071ddc177516b136a435eea97f042c544d18dfdc608
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
8a8ec0ca2e313b7309a347eeb8d15b7f4ceaaee0c2b06daf8c860425d6b5eaf4
BLAKE2b-256 checksum
How to use checksums
72cc12894cc7e021b710936612f1724fd1adb5630b41c318529a147c6c7b06d5
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
a507dcb3ac891c5a18a36e4c7c75e31974d800fb7d0cd29933895f6342b9e0a4
BLAKE2b-256 checksum
How to use checksums
a149a24657b3fd27bc617a10d43bfa318b43f34084bdbd8264adc0a51322eea2
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 69.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1d39c7f3d3ea0c52fba841cf05cba2bd3168c685ac5e1c5dbe2715c5a1da3e60
BLAKE2b-256 checksum
How to use checksums
8dd9176abcb989a1415690234f03a8dfe4de3530e83a96825d48c40516db732d
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
0e7d497d3c2b52453c381ca889a44540491178dfb3858bb34ba863becc6ba136
BLAKE2b-256 checksum
How to use checksums
450ce02dee461cffe7674c2ad5e4a0a2fac8af778cad567e39941e0e8ecd2eaa
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
c3bc9ce7987b03d2e9c15af959281a5e347e0e3c35f20846a1abe961219b6d14
BLAKE2b-256 checksum
How to use checksums
73ac8503276a64c10229f1ec76ffac586411c554c547ea57acba37cdb02bdf10
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp310-cp310-win_amd64.whl
Size 23.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
ffa40cc0b1e3073829b537f3d8851d6ab30ec2f122ad58187926eaee628738aa
BLAKE2b-256 checksum
How to use checksums
289eea21270b9e8d37499e9c29bd990a4dee3504149b51e1f3a7044ce19a9ba4
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 69.1 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0aebe225a7bcb50a6df78ca07176226bf3becae0cd83fdfe412a56ca6867dd50
BLAKE2b-256 checksum
How to use checksums
0dacf00bea8b6cb7f42c8a1d9722af29a0901530292f741869395494f84c6f00
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 68.9 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f815594a3d22c6438c1304ed57449de35fc9701549557231194d637b880ccd3e
BLAKE2b-256 checksum
How to use checksums
99120098331f4ca99fe2e02662c4f4a54b77c3c2131a5df890284854600349ea
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 68.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
319dfc5d137f098487423771344308e87859e86f5377d1c68bbb3ec1bb7157bf
BLAKE2b-256 checksum
How to use checksums
53e4f55b08072e3de6b885088d30ff9bf83f0ddf8d7dc7375738e036e0c3c4b9
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 68.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d60da1d334c342142ed7bbb6ce239cc26c9349cf708173a4215da44e819905d1
BLAKE2b-256 checksum
How to use checksums
4897a4a0a3a98e7fe64ea289d00d7f15eb831ec436c4f66349c72552954a8d75
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 23, 2026.

Transparency log

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

Download URL radixor_c-4.2.0-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
dbe07a252b81abb0e8b9d35c2ceba8d9d127c965f82d1f3224ad41398c872854
BLAKE2b-256 checksum
How to use checksums
f08786799a85480034421a648134cc3689ffd1c557ccb00c174c5da437d0ad20
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 23, 2026.

Transparency log

Release history Release notifications | RSS feed

4.4.0

31 release files

4.2.1

31 release files

This release

4.2.0 This release

31 release files

4.1.4

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