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

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

Built distributions (wheels)

Table of built distributions (wheels) for radixor-c 4.2.1
File
radixor_c-4.2.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
radixor_c-4.2.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.1-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.1-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.1-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.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
radixor_c-4.2.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.1-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.1-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.1-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.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
radixor_c-4.2.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.1-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.1-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.1-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.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
radixor_c-4.2.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.1-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.1-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.1-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.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
radixor_c-4.2.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
radixor_c-4.2.1-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.1-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.1-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.1.tar.gz

Download URL radixor_c-4.2.1.tar.gz
Size 22.0 kB
Tags Source
SHA-256 checksum
How to use checksums
9bb7056aeb699f0de973b46c7b7aa2ea3d410535cd48afc18ba3c990ca91a155
BLAKE2b-256 checksum
How to use checksums
703302b3a0d32d13873d0ea0e9c25aa5233096bfd33fde16bfb672436e681afd
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-cp314-cp314-win_amd64.whl
Size 24.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
b41f107d7b3c6ec91811710f4612121a69581b6b7968b9bbcf26a8639a55e9c2
BLAKE2b-256 checksum
How to use checksums
5706b5bafbf7f16284eb21e8212c4655ad09e44586834bf386c1c92651f8adc8
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
d8b2c874ed73d3a64451660fea57fdc5fe92a26ef7309bf51a117734914ed79f
BLAKE2b-256 checksum
How to use checksums
fd5cb3c72586be0083f7ba8717987a40025c48c2b5b39b6958bec44db8e912db
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
b07b18ada2481d85261a4bff15078a2de9d4549b88823d9dd5830e17a6b3ae5f
BLAKE2b-256 checksum
How to use checksums
6f427916cf6ef74692a839ae99f500f36f2629fe7f8ca063ee903c4d95aa10ae
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
59f14aa16d337427c26131f0698775ff9ae3c1e0b9a0cc97611b5d62392e8ba9
BLAKE2b-256 checksum
How to use checksums
41e4faac02450f536e6bb1604f79cde3ad9fc69035fdce9f2152459fbc0053a8
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
c87a04f588e42fc7346bddcf6324766233487db3000c15b189c983a364c1206b
BLAKE2b-256 checksum
How to use checksums
aefa2799ab796ec5b9195d9ea882b12be3561e1bd3e4e55e753b98e154ff14e3
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
126955106e111fe655dd271fdadcb70c28134494caa8cd0831178b84c3dc65fb
BLAKE2b-256 checksum
How to use checksums
3b833d756e1087e3dda6fa475270567a88a4d739e16f3d2d4007c030e326f442
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-cp313-cp313-win_amd64.whl
Size 24.1 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
e1082b1342781bb71a9c5945aac1a5ee48dfa6a17d5daa747f45908ef8e4546f
BLAKE2b-256 checksum
How to use checksums
94dbded08a384722957aa609fcf2b789a6a94fe2e9f800180d8f3dc8ab55126c
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
de7d9e2e02bce8e86ca4bfd94a49fcbefc4ac86c2955da635af9a6f0bf61af48
BLAKE2b-256 checksum
How to use checksums
673e955f364c29e12bd987de18e50a06f1fe27f4e909f23d856b38f526f0735b
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
30326ac2eae7e9970051246f7973a4b2dbd2bb1d69b055565035029f67d41c86
BLAKE2b-256 checksum
How to use checksums
578af3030ed3f0b2d367398ed45156ca4dd0d714cac58a8126e08490e819c891
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
603199fbbb227e1a01d3d9e8c52483b4add284c0dd34be8dc752916c9080ba78
BLAKE2b-256 checksum
How to use checksums
477a4576614ff7ec212ec76261967f318b4cffd39e7f4ec9a4bbf571d66bf369
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
8d28f2c7ef562edbd8a7587663c1b9e88f8d48f8a3a2feda926856ef74a3e390
BLAKE2b-256 checksum
How to use checksums
822f5cb12387bd7439e201e65a2929724b864f39fd1e299a96889dc2ccdbf41c
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
57cc9b72f6fb2152babf3ac31667341ba4cd593fef893d66a340f7b3f61fda48
BLAKE2b-256 checksum
How to use checksums
9cf5c8ad405f7fad2349c27c9057da1f0d3065daa89c55d3ec9a01bad52d2a9f
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-cp312-cp312-win_amd64.whl
Size 24.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
78d10fbd7139a3fb6928e598965d2447dcb85c67a2bd7a2653f80369124f780e
BLAKE2b-256 checksum
How to use checksums
22a21d4cbd8f728a1b4adee7996b23b73ed09210a1a97fed1b270f39ebf7bd51
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
235d740b2d6a6fdf9ab6ed0f9d86bf46f782a1d0387f5b8009e7fa690081868d
BLAKE2b-256 checksum
How to use checksums
b420bc49aa014d08b4b09a44c3359001e918d51de0324f990fa37185779d915c
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
878e4d2fdec9df3cbc32193a12187f83e7b31ca9d1dc7ddf30d3514c5ea5a3b4
BLAKE2b-256 checksum
How to use checksums
e643f31fe0fc7e8ee9e54e6afa2a420c7363473ae87012c858056d867df78372
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
cde919609da130054e8920e3614337a74231896944e984a1dafc95de3074bf28
BLAKE2b-256 checksum
How to use checksums
ff69bd381b454d66203107bd8f595a44a51f795ac4af0b68e8c8c61bed140a06
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
f98476f54099800b9a9f26eb86e4ec7e7b8e1350042bc7bccf23085601b2bf4b
BLAKE2b-256 checksum
How to use checksums
3ef2741fec89c4df4cac627cd800f19f42db60c164dcc718dc4a819a28084669
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
754d0476c0dab316a0ee5678471394354d973322ad18df3a4f4c53242cdc3b95
BLAKE2b-256 checksum
How to use checksums
87c62bc316e896368c44a16bbd99796c14454aae5276d20a82dfca3d19381ea4
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-cp311-cp311-win_amd64.whl
Size 23.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
ac18decf98ef317956af7c2ff07f40ab12b7df173d48e9062d7631bf8ed7c462
BLAKE2b-256 checksum
How to use checksums
a38c18f8c8b14858ed7e0241a4846e1c127fc32207ae917d9494abebe5640fa9
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
3351a1ac72bdaf676bd2970927722817f58169ed1053b2099623b3769b2ca771
BLAKE2b-256 checksum
How to use checksums
4c9161daab826f84d0354ed0b1c8844445949408f5fbad5a678fd1f87b02ac36
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
3b9a0ad0484ca987127e8ef28b55835a8f3df376593ed0f099bcccd836d7547b
BLAKE2b-256 checksum
How to use checksums
d9e56643c28aa51c61fc9111a3585e55f537148a452749bae35dc333fe2b6529
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
0f22c828873e438ca0fec79f65443f6a4b8b513e57bb4e90a63ff6aebc7b8745
BLAKE2b-256 checksum
How to use checksums
be59f0fd7fea6a9f7b31193f5f84a42f79b0008147a0524fa190fedfd0fb3452
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
655da40e685f0e41c80d5b63d4299ef8221ba04ed201cdf3fbc1fb15eefeb4d8
BLAKE2b-256 checksum
How to use checksums
a47684aadf15ea3ecee4fb0b861777b7f51ead6716792aa48d7fa79b88113446
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
cb2120bc8ef34986fda532bc12291fcfa1b316247c52ad21e904914e194d50c1
BLAKE2b-256 checksum
How to use checksums
4b76a4702077c80da93231956b20baa616652e7c1d898dd58f01232c9fb10493
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-cp310-cp310-win_amd64.whl
Size 23.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
ec6c6eb61e6d3bbbbd22e56906220d751175d33cbcf44e449439aae256274002
BLAKE2b-256 checksum
How to use checksums
293865cbd571731186047f79e7c7bc9cc8ebf997433729f5030cedd8749d0971
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
463d36d88b3a5932f4d52df1d76475fb1f2c2b629e04a9765f61c319b097ef58
BLAKE2b-256 checksum
How to use checksums
43edeed36a148bcca86e9b8124a4d0d60bdc5b8c0056f4dc5c9af3dbb79cd134
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
e13f6bb50e23d546112c84fc680763e64a86fd7016cc9662108b1b481399973d
BLAKE2b-256 checksum
How to use checksums
8fe777fd88fd750bcee7714531402730e86fee7f130ad02aee8c506c0aadc994
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
f00679778ff0b7629c2d666fc50288dab6412b67362353512941b44c4cec7b5b
BLAKE2b-256 checksum
How to use checksums
dbf8e0527a7e5b26d6d393cb42212f556bc39a7b5185f2a59e771e323ff2a6d0
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
b4d5b45f100e069f25cb91421b56a0029cd38f49395b0e705ee940b95b74a8f6
BLAKE2b-256 checksum
How to use checksums
58a0d4be0da40f4b154e5cc08cd9274c3f9fb80da37a1f310088ccc27a9cd073
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 25, 2026.

Transparency log

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

Download URL radixor_c-4.2.1-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
72109b90cd8dd920ac0d468fc31fa7bf7ea4d217351790f2072cc751a33ea177
BLAKE2b-256 checksum
How to use checksums
a6286b5527e7464b81c28100a7cba27d8d0706c81028f35bccc7f57e792a7015
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 25, 2026.

Transparency log

Release history Release notifications | RSS feed

4.4.0

31 release files

This release

4.2.1 This release

31 release files

4.2.0

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