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 31 standard models. 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 31 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.4.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.4.0
File Size Uploaded
radixor_c-4.4.0.tar.gz 28.9 kB Details

Built distributions (wheels)

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

Release files / radixor_c-4.4.0.tar.gz

Download URL radixor_c-4.4.0.tar.gz
Size 28.9 kB
Tags Source
SHA-256 checksum
How to use checksums
8d0404792b1de299b1d4b7b826c20048b72d555ebdbfbe7fc7dfb64023221a27
BLAKE2b-256 checksum
How to use checksums
a05307be6688a531de639ce1805777bed6dbd69002521012b0f01ab8819960f8
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp314-cp314-win_amd64.whl
Size 26.9 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
07f2c1c67593bc6b869dc8eafda03b496c26a61db4bbea0d851455dc4acd3f4a
BLAKE2b-256 checksum
How to use checksums
93f94404f88e7a8378d8d0e5600aa9be4901a91d25c74a2dd86a165090fb6fd8
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 78.1 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
91c23a4dec940b0035216375a1bcacee113213c02fa426fdc6f0722288a6bdaa
BLAKE2b-256 checksum
How to use checksums
046b882b6446db9a3e9f9a70d5c82c4c2baefbfb3f08f3a5225d67b70b614360
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 77.7 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
01c70ee5b4c5ee76c59e699a664139429dfa155eca50264438dade8878344cfa
BLAKE2b-256 checksum
How to use checksums
ab87a4571dac275758438949d2133aff5eab1048417130660f6baf709fc797f3
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 77.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
68d60acc080bd975501878275c104484206d494c0939b311c5be5c39660000f2
BLAKE2b-256 checksum
How to use checksums
e95e7aaf583fad1957fce5038cfb4db9e7b41d6aa0813df0f6e200e05b75765b
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 77.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f2f5d12fad161de8ad068a3e352e8718097bb278eddcef279cb49720ef744ebe
BLAKE2b-256 checksum
How to use checksums
c75b4154a4e3f8dd3537523cc51504fb2ac0ac9c960539211958ca58b74e8c95
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp314-cp314-macosx_10_13_universal2.whl
Size 38.6 kB
Tags CPython 3.14 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
1c359f66810ac96e4a834dd3247757f71a523bb78572032cc31f848adf449d4c
BLAKE2b-256 checksum
How to use checksums
5efc365e8d86f0f27670d937d00ba7c77f8a2ed4b050d2ab8c561e4e62256a54
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp313-cp313-win_amd64.whl
Size 26.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
d2be249be63afe98c954c773e5697b3d9fd90e2fcb004e96d9428a2f30510781
BLAKE2b-256 checksum
How to use checksums
407b6d40a287d83b30f8cbd5f919422288fa29f882ccf9060d270859b348d016
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 77.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
87c21e002f12f698a9edb3e4a52686cb9e53dcd4c26b9a63c895f59302c77484
BLAKE2b-256 checksum
How to use checksums
fd0199cdc2eda5e8ae30d8ac104ab4cf3e53ff8359d159bfce91859512701628
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 77.5 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cb55b05943f53b4313cdbe93dd0060292972b5a3a18a52e7ad7e62945d73626b
BLAKE2b-256 checksum
How to use checksums
4afc72ba6ffdf1d32ab9be0f74238fefce2eedbfff65ad8d92e3c5a6d75228c6
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 77.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
07fb2feb5a295e83e4175d32fd69d724785daa4d35d06b133139d3daaf2f3c2b
BLAKE2b-256 checksum
How to use checksums
e3d005ef60551787f56712f0f0ed6967258465f1fbc97024c554ac93569cf6d1
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 77.3 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
54762b2f2a0989aa9a30b1e08893bee61328a30603962114d1a052bff272f2e8
BLAKE2b-256 checksum
How to use checksums
6e4de08795dc70551f5fbe147665379a53a351dd53e4f103d3175ed1fe8df93d
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp313-cp313-macosx_10_13_universal2.whl
Size 38.6 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
d81e52224a39319d6a409731bcefd8c375f129cdb5ebbdf10e0e2447b8d9b9b4
BLAKE2b-256 checksum
How to use checksums
e93ba45bf2c43d63be6fc494f10e74bf68cd90e2de952f2123b33996e2ad06d1
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp312-cp312-win_amd64.whl
Size 26.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5b4f647023500392fdf8517906a155beb6a5d82bda70d91b5e2ae563e53ec574
BLAKE2b-256 checksum
How to use checksums
e88a044efc33437d2702d607c74271167ae5a719ca7399c236ecbb953b4af4d5
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 78.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fcc0ba6e09bffa6866cde0f44fcbefb1289b3c3ce9c01034bc80e93c74798e69
BLAKE2b-256 checksum
How to use checksums
318dc226d859dacefbdd65752b70fb10af6c05c65dcfe719af988e0511c34741
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 77.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1fe838b367b3c32256f61d63235c8d728656e69e39301810acc27a8e74de31f4
BLAKE2b-256 checksum
How to use checksums
52f2a34dcf1a3fb64a5cdd266bd1765eda34759033e9651e3e0643b3f82153d7
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 77.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7e09a3bf27794bc2d53b6ba049acbccc7c0ba9ef16754cf06161c65840ced67d
BLAKE2b-256 checksum
How to use checksums
2705473ac5bc803d24e1b65e6ceea37ab11f739e5dcdc03497f7d1e3970825a4
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 77.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a5a111c34428a4844d7874b5cc732026d858b2e6b6867abe6e0893ddf62a7f50
BLAKE2b-256 checksum
How to use checksums
7e21897c67da2fce1eac884402f02e707c49175697970ff070adde9a12b22b41
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp312-cp312-macosx_10_13_universal2.whl
Size 38.7 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
924e858fe2b5e2120b00470155aca6f0a54854067d869cff9d0a9e3045fb92ae
BLAKE2b-256 checksum
How to use checksums
18c7287cd12d070074cb144604738555a565667810b7033875e7cae997317448
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp311-cp311-win_amd64.whl
Size 26.0 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1acc052c32c8212bcf64c7dd1804b802c0847fd5a0bbb22e036a1c95ceb3f221
BLAKE2b-256 checksum
How to use checksums
fe713add2fcace6a849a82f898abce770b548b57151c5a966cb675cccbc8bcc7
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 76.7 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e67e57d5e6cb6188dd61456772f4143c6228efe13c0a80fbc25c2f234a02fbd3
BLAKE2b-256 checksum
How to use checksums
dacb371ee65951815c928c19313dfc7496f8d0b400099db76beee00b136cc156
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 76.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
836cb392d277caa971782796cd4c7fcd19e8b13a87ec3f5ceff2aa3a5a9f05aa
BLAKE2b-256 checksum
How to use checksums
0da1465f41e29f16c23ae607c1399f87c538da28f0d770456862148ca74afd80
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 75.7 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
75091290125617324661f98b0abe15e51029ce013adff3e8f1ba297e60fc7ab8
BLAKE2b-256 checksum
How to use checksums
b360b06ab2f86da74d9583a11284128d3bb507368210ec74b7540b1d4e35c78b
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 76.3 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2417fb2d0e3271fc9399370b5bfc15107fc33d5c7a293bada14860b29086cc04
BLAKE2b-256 checksum
How to use checksums
16a0d0e43f55933f1eb93dd498b2253b7418cad29d8b5561fb8dc16d9349f76f
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp311-cp311-macosx_10_9_universal2.whl
Size 38.2 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
09b9f5d6094b03f93f95a60de48dffc4af448adf33528358c9f03e116f924d6d
BLAKE2b-256 checksum
How to use checksums
1e93be90bca73020e119fd52407c010a15d6d74a57b517e5a840aec2ded54b5c
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp310-cp310-win_amd64.whl
Size 26.0 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
14a19f6f736a41b4802501729fc97e9b881d3253553b58a57f2bff7d2534d97c
BLAKE2b-256 checksum
How to use checksums
ad363f86bbb97b234a2bed284da000a3147dad6ef01678836b8fbb4193144b5d
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 75.0 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b7c51c437de285e76348640331538b9bbce11f1c11537943bea6dede106e6aab
BLAKE2b-256 checksum
How to use checksums
a55706a325d94d7ad8a069cb729df4b63942b593eaa18c5ad29ccdfa89d1c38f
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 74.8 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bcd6e293eab868158ed5acc9d862220c0bdbf3b7eb041de53986c19cb54b4711
BLAKE2b-256 checksum
How to use checksums
6f846b795eb3db39ec808fb30041374fcc612b412eefd79b560c7e3ee7c9bb0c
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 73.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
55700574c71b80b27126353edc903945a3feba9d71e9cb69f4e8e43b82a0a0d5
BLAKE2b-256 checksum
How to use checksums
9e038aca4bc159736bec50d41a3a8bd9f2705b95729da8af7e33ca1c62f4d609
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 74.2 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0874a7c0f67b42dd7153e9ab1f3601726560551486a784a49a66421c3bce6868
BLAKE2b-256 checksum
How to use checksums
04f3c466f61cba442fa0ca1b3f0885daea2a39615971a1d4379ba2f4cf046038
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 Sep 13, 2026.

Transparency log

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

Download URL radixor_c-4.4.0-cp310-cp310-macosx_10_9_universal2.whl
Size 38.2 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
0b75a2633eb1baa38bf9988d2671ac3ad51a1cf48cdd066dd71617943e0f9d57
BLAKE2b-256 checksum
How to use checksums
f5037612b78a8b4cec638dcffae1f4f2fe39e71c6a280a37defda3af7d5853a3
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 Sep 13, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

4.4.0 This release

31 release files

4.2.1

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