Skip to main content

radixor-c — Fast Scalar Stemming for Python

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

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

Which Radixor package should I use?

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

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

Installation

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

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

Quick start

from radixor_c import Stemmer

stemmer = Stemmer("en")

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

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

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

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

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

Custom models

Radixor-c loads compiled Radixor models:

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

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

import radixor

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

The resulting model can be loaded by all three implementations.

API at a glance

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

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

Documentation

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

Release files for radixor-c 4.1.3

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

Source distribution (sdist)

Source distribution for radixor-c 4.1.3
File Size Uploaded
radixor_c-4.1.3.tar.gz 20.3 kB Details

Built distributions (wheels)

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

Total release size: 1.7 MB

Release files / radixor_c-4.1.3.tar.gz

Download URL radixor_c-4.1.3.tar.gz
Size 20.3 kB
Tags Source
SHA-256 checksum
How to use checksums
3b4595ef0e42db5d5f3d20ff0785bb632a11874cfc8520f12bd5f2d0dca37a9c
BLAKE2b-256 checksum
How to use checksums
7ec0af7c630cc45b995f9680f1e1dce2d6b15ff1ddc82e0801a72c03480b1347
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

Download URL radixor_c-4.1.3-cp314-cp314-win_amd64.whl
Size 24.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
a14126d615416cfa89c80fcd48365ebfa8979449df5f0f881f4fdd1a87036660
BLAKE2b-256 checksum
How to use checksums
8acc7d6ae22d689e3d2ea7739f691cafd20933830cec61b692be73ac44737fcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

Download URL radixor_c-4.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Size 71.3 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a58be4081e1c73cf91897e766bd49f168863dffe04a4e4e2c9897f6782c6163a
BLAKE2b-256 checksum
How to use checksums
88fbf86172957f0363386d046e972f6cd310dc69fb866d44376cd53748322c63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

Download URL radixor_c-4.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 71.1 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
560826dea1837d7b0bcb854860e45e1396379459ec304f4058567eadf43a3f9c
BLAKE2b-256 checksum
How to use checksums
261edbf40e70a786b7c268b4e4a23788335f34247069d6d3cb87cacbc8b19a47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

Download URL radixor_c-4.1.3-cp312-cp312-win_amd64.whl
Size 23.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8009d5f35cce86a7c5ec5bdabd82b23568aaaa2fda23ac3dbcca20e1dce05cf9
BLAKE2b-256 checksum
How to use checksums
1d7166e0a093e91e227be5d2d2d4579a5da686ecd4c9b478950a6adf64fc876a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

Download URL radixor_c-4.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Size 71.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f8742aa5d2ce8ea12c448027673a5a2f272cfc7bcf8289c178eb988843ccd9d6
BLAKE2b-256 checksum
How to use checksums
71b2e23518ef97df1e422ee0075735365d744019f09e94b7e6f788bcd5a46abb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

Download URL radixor_c-4.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Size 68.7 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6b664f70d8d4dc80e4099fb6cc8d06e9a2f2f052e45559ddac236e6f0ffa11b0
BLAKE2b-256 checksum
How to use checksums
04dd806730dbfa7d58a0d7725114295dc780598304a001301ec804b7b28d9322
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

Download URL radixor_c-4.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 67.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
562c44936bb339bf006a65880cc06e76ee3d6f0c25786b3396cee4ef08600f29
BLAKE2b-256 checksum
How to use checksums
149f58855238b3950996dd28799259e6662058789fd5f8a0b2fb791fbe2122a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

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

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

Provenance

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

PyPI Publish Attestation

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

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

Transparency log

Release history Release notifications | RSS feed

4.4.0

31 release files

4.2.1

31 release files

4.2.0

31 release files

4.1.4

31 release files

This release

4.1.3 This release

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