Skip to main content

RadixTarget

Python Version PyPI Rust Version Crates.io License Ruff Rust Tests Python Tests Codecov

RadixTarget is a performant radix implementation designed for quick lookups of IP addresses/networks and DNS hostnames.

RadixTarget is:

  • Written in Rust with Python bindings
  • Capable of ~1,000,000 lookups per second regardless of database size
  • 100% test coverage
  • Available as both a Rust crate and Python package
  • Used by:

Python

Installation

pip install radixtarget

Usage

from radixtarget import RadixTarget

rt = RadixTarget()

# IPv4
rt.add("192.168.1.0/24")
rt.get("192.168.1.10") # IPv4Network("192.168.1.0/24")
rt.get("192.168.2.10") # None

# IPv6
rt.add("dead::/64")
rt.get("dead::beef") # IPv6Network("dead::/64")
rt.get("dead:cafe::beef") # None

# DNS
rt.add("net")
rt.add("www.example.com")
rt.add("test.www.example.com")
rt.get("net") # "net"
rt.get("evilcorp.net") # "net"
rt.get("www.example.com") # "www.example.com"
rt.get("asdf.test.www.example.com") # "test.www.example.com"
rt.get("example.com") # None

# Custom data nodes
rt.add("evilcorp.co.uk", "custom_data")
rt.get("www.evilcorp.co.uk") # "custom_data"

# Insertion returns unique identifier
insertion_id = rt.insert("10.0.0.1/8")
assert insertion_id == "10.0.0.0/8"

# insert() raises ValueError for invalid input
try:
    rt.insert("http://example.com")
except ValueError:
    pass  # Invalid characters in hostname

# Store custom data with any entry
rt.insert("example.org", data={"tags": ["production"], "priority": 1})
result = rt.get("api.example.org")
# result contains your custom data: {"tags": ["production"], "priority": 1}

API Differences: Python vs Rust

Both APIs provide an insert() method that returns a unique string identifier for each entry (a normalized version of the hostname or IP address). However, the Python API includes additional functionality:

  • Rust: insert() returns a string that uniquely identifies the insertion
  • Python: insert() also returns this unique identifier string, but additionally supports a data= parameter that allows you to store custom data of any Python type alongside the entry. When you later call get(), it returns your custom data instead of just the matched target string.

This makes the Python API more flexible for applications that need to associate metadata with targets, while the Rust API focuses on pure performance for lookups.

Rust

Installation

cargo add radixtarget

Usage

use radixtarget::{RadixTarget, ScopeMode};
use std::collections::HashSet;

// Create a new RadixTarget
let mut rt = RadixTarget::new(&[], ScopeMode::Normal);

// IPv4 networks and addresses
rt.insert("192.168.1.0/24"); 
assert_eq!(rt.get("192.168.1.100"), Some("192.168.1.0/24".to_string()));
assert_eq!(rt.get("192.168.2.100"), None);

// insert() returns Result - Ok with normalized identifier or Err for invalid input
assert!(rt.insert("10.0.0.0/8").is_ok());
assert!(rt.insert("http://example.com").is_err());

// IPv6 networks and addresses  
rt.insert("dead::/64");
assert_eq!(rt.get("dead::beef"), Some("dead::/64".to_string()));
assert_eq!(rt.get("cafe::beef"), None);

// DNS hostnames
rt.insert("example.com");
rt.insert("api.test.www.example.com");
assert_eq!(rt.get("example.com"), Some("example.com".to_string()));
assert_eq!(rt.get("subdomain.api.test.www.example.com"), 
           Some("api.test.www.example.com".to_string()));

// Check if target contains a value
assert!(rt.contains("192.168.1.50"));
assert!(rt.contains("dead::1234"));
assert!(rt.contains("example.com"));

// Get all hosts
let hosts: HashSet<String> = rt.hosts();
println!("All hosts: {:?}", hosts);

// Delete targets
assert!(rt.delete("192.168.1.0/24"));
assert!(!rt.delete("192.168.1.0/24")); // false - already deleted

// Utility operations
println!("Number of hosts: {}", rt.len());
println!("Is empty: {}", rt.is_empty());

// Prune dead nodes (returns number of pruned nodes)
let pruned_count = rt.prune();

// Defragment overlapping networks (returns (cleaned, new) hosts)
let (cleaned_hosts, new_hosts) = rt.defrag();

Scope Modes

RadixTarget supports different scope modes for DNS matching:

use radixtarget::{RadixTarget, ScopeMode};

// Normal mode: standard radix tree behavior (default)
let mut rt_normal = RadixTarget::new(&[], ScopeMode::Normal);
rt_normal.insert("example.com");
assert_eq!(rt_normal.get("subdomain.example.com"), Some("example.com".to_string()));

// Strict mode: exact matching only
let mut rt_strict = RadixTarget::new(&[], ScopeMode::Strict);
rt_strict.insert("example.com");
assert_eq!(rt_strict.get("example.com"), Some("example.com".to_string()));
assert_eq!(rt_strict.get("subdomain.example.com"), None); // No subdomain matching

// ACL mode: Same behavior as normal, but keeps only the highest parent subnet for efficiency
let mut rt_acl = RadixTarget::new(&[], ScopeMode::Acl);
rt_acl.insert("192.168.1.0/24");
rt_acl.insert("192.168.1.0/28");
// Least specific match is returned instead of most specific
assert_eq!(rt_acl.get("192.168.1.1"), Some("192.168.1.0/24".to_string()));

Initialization with Hosts

use radixtarget::{RadixTarget, ScopeMode};

// Initialize with existing hosts
let hosts = vec!["192.168.1.0/24", "example.com", "dead::/64"];
let rt = RadixTarget::new(&hosts, ScopeMode::Normal);

assert!(rt.contains("192.168.1.100"));
assert!(rt.contains("subdomain.example.com"));
assert!(rt.contains("dead::beef"));

Development

Running Tests

# Rust tests
cargo test --verbose --all-features

# Python tests
uv run pytest

Linting

# Run clippy
cargo clippy --all-targets --all-features -- -D warnings

# Check formatting
cargo fmt --all -- --check

# Python linting
uv run ruff check && uv run ruff format

Release files for radixtarget 4.2.0

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

Source distribution (sdist)

Source distribution for radixtarget 4.2.0
File Size Uploaded
radixtarget-4.2.0.tar.gz 703.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for radixtarget 4.2.0
File
radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.5+ x86-32 Details
radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
radixtarget-4.2.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
radixtarget-4.2.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
radixtarget-4.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-32 Details
radixtarget-4.2.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
radixtarget-4.2.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
radixtarget-4.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
radixtarget-4.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32 Details
radixtarget-4.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
radixtarget-4.2.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
radixtarget-4.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
radixtarget-4.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-cp312-cp312-manylinux_2_34_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.34+ x86-64 Details
radixtarget-4.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
radixtarget-4.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
radixtarget-4.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
radixtarget-4.2.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
radixtarget-4.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
radixtarget-4.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
radixtarget-4.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
radixtarget-4.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
radixtarget-4.2.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
radixtarget-4.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
radixtarget-4.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
radixtarget-4.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
radixtarget-4.2.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
radixtarget-4.2.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
radixtarget-4.2.0-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
radixtarget-4.2.0-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
radixtarget-4.2.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
radixtarget-4.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
radixtarget-4.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
radixtarget-4.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
radixtarget-4.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
radixtarget-4.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
radixtarget-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details

Total release size:63.6 MB

Release files / radixtarget-4.2.0.tar.gz

Download URL radixtarget-4.2.0.tar.gz
Size 703.1 kB
Tags Source
SHA-256 checksum
How to use checksums
c6ba17832edeed75d63ce605327b79a2ed9b24a4a5eae9c1b1419adbdbfaf839
BLAKE2b-256 checksum
How to use checksums
070ff581bd64b2b1cff364fa94539ee6e99924ff28ceb017ddc819aa7deff9a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.9.6

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 738.0 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c1f6d83716242d7b7a8463dca7d77f2b9be0edb7ea0f467917ee87e46ef658a6
BLAKE2b-256 checksum
How to use checksums
bb47a1bf30b4a047bfa6a1f97a679ebd5322d67cb16fc96cd9cddb2273d2cf10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 773.6 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d8160247559a35a4df41aa50c786afd0dbbd983e3071e815017e3fa62a64bc72
BLAKE2b-256 checksum
How to use checksums
c9dc9ad890f8c48b1997a8b1a258c421a8014f963c7a883932a6a043d6e56670
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 808.4 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
4ef1b02bf1fb907e18403cb424b74b6ec05df6b103aba5e14768b6b208fd2e12
BLAKE2b-256 checksum
How to use checksums
217580f1460e98697f90387782644ae83f0b6f14bde4d8bb24c50562bd95db8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 710.7 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
9f230e01ee9333ca2202ced3a1e0d6ee24cdad698283b32c453ca1846762992f
BLAKE2b-256 checksum
How to use checksums
93562e4b3ffc43aaefadce4b03a0ad525cd8663e520e63232174450da3a68177
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 533.8 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
482b5b5c317bafb49fc1d9e5a648bddabb38dddec2be336545146d743d09622d
BLAKE2b-256 checksum
How to use checksums
9739a88a4d1f6d57fda78a9481e0955674ce079d4e5758d35e7e3e876b465aee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 563.9 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d2499a664b78bca3b0536d8ac3d57dabdba1652c9c9e746979a743873f4edc19
BLAKE2b-256 checksum
How to use checksums
3e491e7cb866e724017a102f383ff0715424d77a76242b3793c562d1b2e13f3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 712.6 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
92f908ec996f49686a35dec20d47a98f0b24648c5eacc24c1969cbb13595107c
BLAKE2b-256 checksum
How to use checksums
62810ebab51c21e24331b78471d1e10cf79b1f5df13a3f214d2d64db1be36111
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 537.3 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d5a75d34f55009a4513dcb396b638ba7dba672d5eb107b7e9f0f0262b98775c4
BLAKE2b-256 checksum
How to use checksums
05c82584c148a34a5df38024ef3296479b7a86de0b70d44956fcc395e72ad8aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 527.1 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
858831b2b369d8973ddd927bd870c353a4386d0a517ab3855a2fc73f2f1b61cc
BLAKE2b-256 checksum
How to use checksums
af9ce79af1c408b008cde3054e408aec2f78ead5d754c96e392117ba5ef24cb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL radixtarget-4.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 562.9 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
886001cc5679657cc643aa94858ef1a989bdfb168f60122222a25d5c0b11e8d5
BLAKE2b-256 checksum
How to use checksums
e01e9b2c183e5d5def426945d3364cbb5c62968e5ed0a21d56eefd58b7d22cb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 733.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0a368e059ffba6e786f5552eb9b8638ad90195643074830314d8cec6f23f157c
BLAKE2b-256 checksum
How to use checksums
0fe5115fb6ab50682bb041e15dcb9c72e35e3868edc297f55799aa4404012c54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Size 768.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
01dc45a2e24565f4f269bc724024fbefa9a12bd4f2b9c4d3542caa45ea3e4eb7
BLAKE2b-256 checksum
How to use checksums
2dba031cbbfdc807acb66e8183cf47ed7bc8a34c0ff8065ab52b913e86f7b44d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 804.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
0bf49f4524f2b309e4d164f405336df116f257a80074cee669c5b5b51e8eb484
BLAKE2b-256 checksum
How to use checksums
5f29f23905191087e3cbc38c7328ad985daeec6753fc7812fab0b4525600e316
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL radixtarget-4.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 705.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f7bab59aac38f370c10845b7a1fb4335a9bd2bc3978cb81ce60e534f97373f86
BLAKE2b-256 checksum
How to use checksums
749e2ebde415856c066f9e51a07096153f2f9b9d130af4c28e051600976c5d88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 558.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
773d317934ed1b3c86f808f80a4af4d3756b21a268173ad1ffd9b7505ec3fc73
BLAKE2b-256 checksum
How to use checksums
7ad2c28bc32796f703fb2ef78af374bd63c1e85cc19dc2dd1476f244646c3af4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 706.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c1e55858a955ceb6946cebc5a1664cdfff682cf380e03015ac22f40a73785079
BLAKE2b-256 checksum
How to use checksums
c0a7f0f24ddd254d2f86a2ff13f37d9886df0e0c4500ff4f481d865d8a482aa4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 534.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
6221e7ee00df05c6c2d28e86096d441e8f6a81f12edbfe38422f88b587fef891
BLAKE2b-256 checksum
How to use checksums
30969bf4388abc4a0f9afbaa0fd55d77b9fb206c9c43dcc49fe7b138a6f031ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL radixtarget-4.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 523.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
461936708cd075ea37946eef58b12fd198b031965c6e0c25f801b9fe3cf87974
BLAKE2b-256 checksum
How to use checksums
0b375334f46e8ebbfb533735624c2645276401feee66ddf3413e75376925c1b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp314-cp314-win_amd64.whl
Size 376.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e6e8db75a7ba938e4fd4ff03f6768c0381ecf4e3d26d6252cf9f60e0e572d60b
BLAKE2b-256 checksum
How to use checksums
ed7bbc78cfb2e46b16c265cf10fc746eb05d39079f04051c35554f74a4881429
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-win32.whl

Download URL radixtarget-4.2.0-cp314-cp314-win32.whl
Size 369.6 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
6d3353b8e93c43841c94d1f1de8447cf4843acda3c0376aebc4c0249482e1869
BLAKE2b-256 checksum
How to use checksums
5159987a5ee67627e8f4a8dd016d9c43fa3113a6991f0460a422e839fb93a460
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 732.7 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9041444da3bb83c1c6e82c44b33808490390ecbcacb35010f27248fd75d7ed70
BLAKE2b-256 checksum
How to use checksums
375b92dd5e447f9ff20e4462f3a4ba37d1903f283cfb8b6ec2036a14899fefac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-cp314-cp314-musllinux_1_2_i686.whl
Size 768.8 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d75bf219fb61d0149164926c3901aa8bd0587ac63444edae846e650cd4af2a33
BLAKE2b-256 checksum
How to use checksums
029445f6b55bd57b8eee6b5a5d8882255364c3f7e1aabd45521178109da59fde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Size 803.3 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
233a39a73e0c2b3341ffea438d8d4722d8b5287edaa5d5ddb778ced9d437c9d2
BLAKE2b-256 checksum
How to use checksums
92be1f153fb4d57343baa978ffbff99c9f853e7959f966bb9d40308ebac8fffc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 706.0 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3a57aea7d709049d2f55d633dda684d87316b962b7bf4a00fa2d3063023e8dd8
BLAKE2b-256 checksum
How to use checksums
48c725987424b0e3e0c72ec7367b9403bca853fbe570328528223d0ca57494e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 529.1 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0ed5064530dc2185f61f7e6a05b62bd55e20b764eb4c0b156f1c1dd06a538ec5
BLAKE2b-256 checksum
How to use checksums
8ef2f71acd1ce0b4e2bb3c6fa71b60fe746676e39c205f7db01498edef1e1af9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 559.3 kB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a77c405240eb624970fb4194d498c23833fc404361dea167e614ca27b25f1b96
BLAKE2b-256 checksum
How to use checksums
7d498ed31f8e089b3aeb9ad14936fd0881530bd963fe6c64ebb40742e1d4ca8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 706.5 kB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
84797ea9544bad786f1c0a233d5081418a76217821345b0f23e56fce713b7659
BLAKE2b-256 checksum
How to use checksums
c1f432035a5f9e55258611ecd16c7cb7f63e8ed8432b9f60b85f77950270aebc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 533.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
79dc672f10299d5e95522382f4965d26e484916dba4ff44e4ab77e6d4fb80b9d
BLAKE2b-256 checksum
How to use checksums
a7449efe558f4bcaeee940568444cb87673b471f006e349520dcb730437fe0d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 523.2 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
424611144171c5bff08f123d1b579800d0a7a987f1f28a065ecbfa40a4ff8a21
BLAKE2b-256 checksum
How to use checksums
75b672eb662c79e03a1f701ef0cad0272e6e90aab062a5c7ba2dd06322ebecbf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl

Download URL radixtarget-4.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Size 556.4 kB
Tags CPython 3.14 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4f54893bd7ac2985c470b4edeea894661b762b4805e0c585a0a94a1d6155ea7b
BLAKE2b-256 checksum
How to use checksums
d13e17ccc7ba7d7cda61411ec0166b19a98b54f924431e005811db4a081fd55f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL radixtarget-4.2.0-cp314-cp314-macosx_11_0_arm64.whl
Size 487.8 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
33357489b71862dc63bf029a7803f5aee80466c2ca83b2120d8dea921d35f1e4
BLAKE2b-256 checksum
How to use checksums
52bd1ae6b8e9609dffa00d3e2a1c4fa5f474c12eb60f2564a65e971928718dbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp314-cp314-macosx_10_12_x86_64.whl

Download URL radixtarget-4.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 495.5 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
741c7d8833a88bd1305253acbe558920ee818be27fa1c1aea0e0fb3564e0936e
BLAKE2b-256 checksum
How to use checksums
16faa595055e758b5e226bf234eb86f3ec5fbc1976e38e915d897d76fc31b84d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl

Download URL radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Size 733.0 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4f90f1a8270600f3bdc2173757623e85e928815b091e1e145afa3032c26d40a3
BLAKE2b-256 checksum
How to use checksums
f5e20e720d6022b6d9ace940798da70c3735c6b879698d83af60fb2282d81f6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Size 768.5 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
c9529b9fd3f0bed32b64f148859ba7832b75c26e582e4c1cc7586c315454c5b6
BLAKE2b-256 checksum
How to use checksums
9557be0c086ac255fe4d1ab75bdb5a5929233640408104843ca9e9b03faf3a7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Size 803.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
e67f5cd923de5d7aeb0688105cfcc2feedcfd3ba05310585ac0fa63f8ab2f634
BLAKE2b-256 checksum
How to use checksums
71b5871e0339af40eddee2373ca6eb9773f3bdc2757cdeb4347386376f4bc241
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl

Download URL radixtarget-4.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Size 704.7 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
05915257e8ac3ee05812e411f1ae2c62851fd4986d84f8c26f44bc33a3fe1043
BLAKE2b-256 checksum
How to use checksums
35b9057d2d88941610d3492e104f6c656cd2da9d323325e27ced178f62044565
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 558.3 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
d7b939a7f1bd17f1e2257313a90ebb19ba10e7e59a0c5e5e113fedb882966684
BLAKE2b-256 checksum
How to use checksums
f17bae9ff987841fc85663f3cd4377b7e259353a9f2c75f187706143ad31d105
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 707.4 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7fca34e9c48e5a1c6d81849b185591a8b8e256c3e755a3d815951f5311880b73
BLAKE2b-256 checksum
How to use checksums
fb40ecb9eae445401566b3e9b61dec4c262ae19b98ae4c91aac4806665535e72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 533.4 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
8f515860a4a5e18022a7bbafdf36dff82b3614ede92008d52f1aa1664220dbd5
BLAKE2b-256 checksum
How to use checksums
b07983d3cf51a87ad6400d75a3ac25dd1c674fecdd9b05d3831768f7c8ffa53b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL radixtarget-4.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 522.4 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
653378321743c3e79471298e03929a345fff9450abba0f1495638355d1049d95
BLAKE2b-256 checksum
How to use checksums
8ab41b5d3a0cd7805edc15e03f6281ac7aeb3dd030dba77c9513e196949f15e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp313-cp313-win_amd64.whl
Size 378.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
d5b99dca0b6177318396dc7170681f384241819491d0695eb8fc13e9bde5cf61
BLAKE2b-256 checksum
How to use checksums
992a04996087bcba40b19094ce21593b53041d4bfc1bd1712f5416459cdb5b48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 735.0 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2770e86a92220b08706b647cd00639c893f0c51cab413d748e129cfc2c49e362
BLAKE2b-256 checksum
How to use checksums
f9ced1e83431bc68ae0cabdbc373cb985de5be03e3856baa0f2086c18f3be9d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-cp313-cp313-musllinux_1_2_i686.whl
Size 771.1 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
82ed101dc5d8a7b3ec12de59b788683d3b40b862a5f83a4c094ad22a937b9f30
BLAKE2b-256 checksum
How to use checksums
c9af46f6d575a59dd60b686064f0bf62c97f78f5a797ef59505c78c54ef2f74b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 806.3 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a428ee5cd0ba7dabdd24311a697dee79a14a1719de1dad60e98cf1e5f2bdb083
BLAKE2b-256 checksum
How to use checksums
d6a4ac4c3ec42c2d12d3a1ca26b95bb652436957f7708562cca506976a18e2b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 707.6 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
548cc66578feb9a5a4f6af6caab53e68bf5351f3d4361ab8d4f3646281a7fbd5
BLAKE2b-256 checksum
How to use checksums
30a29817987f6b98cb6851b5744b9e86a917c3ca0775c8e8797c2edd85148d70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 531.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6a81a575e771e360556c404352b3868abe3717265c53f243edeb6dc84416bb0b
BLAKE2b-256 checksum
How to use checksums
818be462f93a8dd8c48e7e9c511aeebdcf924e1476e9ceb53c85e91e049e3d71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 560.4 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f2ed8149e6effffa647a2c0341fba0a97d596de37351d28a354dd76bf6840292
BLAKE2b-256 checksum
How to use checksums
b256c347a34ded989e2ebcf388720d437e48b67c8c8ea4fcc2ed0579ccc68f58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 708.6 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7a5f86e9b8805959ee7f66bd6a82d6a67e2087ece27a89ea135de5e80fe1aebb
BLAKE2b-256 checksum
How to use checksums
b63b3a634622a98c6db58e27f4ff49efa9d25bbdd73a9302e47ff3ea0d0d5082
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 536.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
96a0c97c84c347d3628ee825711b08a351b0ae8e1f7c37435f562fd64fe33ca9
BLAKE2b-256 checksum
How to use checksums
de81dec202a939bf0b066a3ad4cf8308948b401508575fc6c520400a09289fe9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 524.3 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c1a9ef464e354ff4cb6e9b81cbe7cae61614e7d08ed7c380b2345f3d87faa1d3
BLAKE2b-256 checksum
How to use checksums
50681a5aaf605e2d194619931f95cf60c2d20e97437ff9a340aa765cfca08b2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl

Download URL radixtarget-4.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 559.4 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
17d6254b9449b12e249107340eb1b9f28cac224070cd075a5468e9683e974de3
BLAKE2b-256 checksum
How to use checksums
9d920709d70f497a0360e9a7db0387ba3dfa2ce43bcb9ecd0a8505a715d88106
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL radixtarget-4.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 491.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3dcac7b61bcbad700b0347c3aa930dcc85dc4cfc3d9432ce977737d11972b71c
BLAKE2b-256 checksum
How to use checksums
3ee246a645929ea18c24f4690da321f3cf29f9be328e021b0a513c55a6dfdffa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL radixtarget-4.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 498.5 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1b220ac0837d70837a59a1f1030c671ce4cf706ea9402268fea2effbba9a9e73
BLAKE2b-256 checksum
How to use checksums
dff3becbfd7ecacee757c5cd41560ee2c044a2e8e19c0ad273e44f3ab9f38b02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp312-cp312-win_amd64.whl
Size 379.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
dfd80f33aa21bbf30eba4a5482bdf4d5da7d6f231b6a1f7d55a99887cdc118d2
BLAKE2b-256 checksum
How to use checksums
2ffebfc926131d4d950aec8657aa0d7f7c6eff0d45690375245a61dc292abebd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 735.2 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f38ef0281e4af7a5dc41a040b2adbe45202a2c904666d9ae141d53869f33db02
BLAKE2b-256 checksum
How to use checksums
34732a57c889a5bb209f265a6cb9734f119a69dc760684b586458de86de7fed2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-cp312-cp312-musllinux_1_2_i686.whl
Size 771.6 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e70a00bc5f27d49c2c6aeda47adb776f639d503f726ef6cd484a917aa603d2a2
BLAKE2b-256 checksum
How to use checksums
0ea66e9b8d2f50e9dd2402e568f03fe305767a4018764cb4903aa04c730fc243
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 806.8 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
d92109f94a916aac2fc04ee4c8f5a3f1a3ecb60df774d1febb2a8e1aa22d0694
BLAKE2b-256 checksum
How to use checksums
f1f3c4707fa238d6fa2b2eb16f83db4b7840a51cfeab667704980836158d4e52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 708.0 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
877f6a960a7309dcd9c2eb10fed4ca7e03c117fafbda8659e52bb082466ebb56
BLAKE2b-256 checksum
How to use checksums
f4818c00262b004228163104c2996a3629b6cf828b61b0282ab391b67a0d29ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL radixtarget-4.2.0-cp312-cp312-manylinux_2_34_x86_64.whl
Size 461.8 kB
Tags CPython 3.12 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
76d46168ce9acc65abbe553b435ea113c65762a47148a8406142a2176c5e53bb
BLAKE2b-256 checksum
How to use checksums
8732e9120cda5cd05e99835d7664e9fa4dddbf5fb57fc07d80ad46453ab38d7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.9.6

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

Download URL radixtarget-4.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 531.5 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e1d1119f57e74307abda2fd1a23e83c0338373214a539ab1286a88dda55b91f1
BLAKE2b-256 checksum
How to use checksums
a8370f952cb79dd99f90d750c39635206faa30f39b09e5cfdb3ae2f377e80044
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 560.8 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ec3ff6c8b447891921f5ecbedc8569053b16c0cc356fed731b99c470c20aebab
BLAKE2b-256 checksum
How to use checksums
b84afc0c5eacaa977a6496967282c154da8b5798f5e8c0c705fea773e8a3ff58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 708.7 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a43eca0711a743dd897a5fef0aa513798ad12fae19553aaf24e18fd21fe96597
BLAKE2b-256 checksum
How to use checksums
995be7b6b3c00b380c6567551009e08662516bf653a2a7282a2b365921ca51ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 536.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
75903eda31182dedc7e3342a8879f79709138829c20a8258279a4c7e78156c1d
BLAKE2b-256 checksum
How to use checksums
eff80219eb4a010b90aeaf911ba030ac29189f9a71007cabbd1c7f1d63252562
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 524.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b23e10d2452f29fe09d3095ded30fdbc221b1acd10360e2a5f81856a756c4c73
BLAKE2b-256 checksum
How to use checksums
0c27a34161399043180158645aed3045c1f17b156eeb1e4518794cd5254ca568
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL radixtarget-4.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 559.8 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
62eae4c069123ebd933b935339b4b19c477308ab308262e4a765e4dd7443077a
BLAKE2b-256 checksum
How to use checksums
7648aeec382df32d2ad85905cf46096a1bfb6c067a7438cba06a8c7f549792dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL radixtarget-4.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 490.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e5ddd4cee0a3e6640602f6695469b0ce86fb669eefe40db56a66982368ba5350
BLAKE2b-256 checksum
How to use checksums
e121eaf70a8b7d5be07cb0722a495b7da227f9b6979e246c08af37174d70e972
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL radixtarget-4.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 498.9 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
d9d305119875ffda3af4e4cbb60ab3a3f44a618276edb6154de58bfb7fa2ce3f
BLAKE2b-256 checksum
How to use checksums
f2f02dd66769df40ceed730ed50d00b06430c15dfe5ab7f02d07ee313826d9b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp311-cp311-win_amd64.whl
Size 378.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0c515fcd99dd268f6b4e1eb21bbf14b6818c9c1317496c06bc3fd47790173b72
BLAKE2b-256 checksum
How to use checksums
b43fd171081c15c2113a10a9b9a35eceea5c421a6d55d212fb3c5e6b112aae9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 736.5 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7eb702384f5e90e1b911f8d4f314e59030759a519fc14bcb2e37135091dd091f
BLAKE2b-256 checksum
How to use checksums
bddd2b4962600262e8137c0223aea7f8ac5979143735c30d371fce4fec123b68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-cp311-cp311-musllinux_1_2_i686.whl
Size 772.5 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
49797ad5db114e600372184ff7f79e1435613156f4cab67f5b7b32c2ac1cc291
BLAKE2b-256 checksum
How to use checksums
586a6d29f2e46be3acb30ea120efaa3e335c723db10f740e5091f2db825e8408
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 807.2 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
581e0791229bfc4801af86405b62cb4f3eb41c5c68868151cb6c97b0ef32b685
BLAKE2b-256 checksum
How to use checksums
255618381cc7511db6a98957f83f420d20f3e158fc7e3b6085551ebfcbaf257c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 709.1 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b0df39424c81c946c1c6f11e2389b361644e418bf1bbc6a8b80c23d26607d278
BLAKE2b-256 checksum
How to use checksums
68d947de5b14f3fe3be5085267bfef75ba3af25cfe561584c8f275be672144a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 532.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
eb243a1ebf4b089e830dcb6d08f96e751de0a116eb522677a42b5e4e9ec0e05c
BLAKE2b-256 checksum
How to use checksums
9c8dfe45c6390bd825279ec57975acf86eca745dab5cae1797a9bc72ed29a6b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 561.5 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
fe042a589c4045607816dbf79bc41fcd9b421ce93b3e296612945ab46fe97f5a
BLAKE2b-256 checksum
How to use checksums
4f3d54231188743f9aa731a1352b4104cdb48299c8def3750ef56c743a6ba3e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 711.7 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fe6160c5ac6f7c08c22d5b3a4dc9011e2b822906f157a7dc3ea9921f3a15ad15
BLAKE2b-256 checksum
How to use checksums
9b626eaecc12148f9998f4d3237cd6ed4c23caf416ca90fa25147e92bf218aa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 536.3 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
09b587a22cbf735d790db5bf6a116c0311c7502a568177345c2725d267430212
BLAKE2b-256 checksum
How to use checksums
e9bcda800929b5fc9456ef3221a19465806e7b85c0bb97118e8d2d9e27fe51ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 526.1 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0253d0852cfb736c3e484c6ac77a401689bcd4dbc1d128f743d90b12360f401f
BLAKE2b-256 checksum
How to use checksums
7023e296772b5a811b8fbc2d224880166112c446cecc51b0774c0d71ec59462b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL radixtarget-4.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 561.3 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
cb82132c07e43ef30e7687849a71c676e533f786373b6673d3e0f796614de6ec
BLAKE2b-256 checksum
How to use checksums
3f5ce812eaea1ff3aa7394ed9df30d21e5f8643b7513b303b9be4949f10b0bf1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL radixtarget-4.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 492.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3dfb196f516a665194ad3f22e402a3c1fbbf9a8353a97fd3829273a77c9a0da1
BLAKE2b-256 checksum
How to use checksums
8f6f6413fd33eea0b22d2ed0db194bccffbef922c89e002f0d99befebc7354ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL radixtarget-4.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 497.6 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
bad895da09a580c944f050b506d752cf0350c3874bf42f84b517246b5a18649a
BLAKE2b-256 checksum
How to use checksums
b6d7f855b8cf09f06e1a5806b6cca93592394ce4e79df2d00a76ae522bbf384b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp310-cp310-win_amd64.whl
Size 378.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
ed274b85d0bde14c4ba1e9efa753644b8b19170c61d66987d212e2463e14e9af
BLAKE2b-256 checksum
How to use checksums
2dc6ff526bfd19b6d1aac758e8c256996eef6162a80594293658f4119ff468bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 736.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2d65164dff07141276e5ac758ba42df0378727ca51812b18b8e296bb68c1aa2b
BLAKE2b-256 checksum
How to use checksums
54831cfd3058e0da4d8172d10334e18af0b47317b652c5d33c57188634a3c95a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-cp310-cp310-musllinux_1_2_i686.whl
Size 772.1 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
7e354cf2e84732b631b87af1fe3555650fc9e21bd9618d425a277ab07a14ff87
BLAKE2b-256 checksum
How to use checksums
b2c627b5f2f392312c81b355a8ee10d14fa15c8dea2db197c5206481d584bc01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Size 807.4 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
05efd8b2603e61818cdf5d89a43d2a0103c5e3574ab96b60a81b08ec4caa53dc
BLAKE2b-256 checksum
How to use checksums
f8ff6214504bf0fdd1f321d9c9d0e1850b6718cb94c81d49e73e75c7f3e7be1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 708.9 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b59066e196ed402f30b0df70a243734f4fabd67324bdedec5e130409c55d606a
BLAKE2b-256 checksum
How to use checksums
fff3092c899d35889b9e3796400fdcd4e25ee50a1c6e908b010a6e6956efd1b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 532.5 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b83b17269cbeeb5c87c53f36c850ab35e50e45290b5da14c9f1d5bf93dd4573c
BLAKE2b-256 checksum
How to use checksums
718dbc63c8d89b6092f749db2eb6cbc380dfdda140b82e1cb155a2f09077e837
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 561.5 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ba8c8349aca622b722b62c766a298883ac0495a259768e8753b2aa4b1f7073cb
BLAKE2b-256 checksum
How to use checksums
8d91b07232578100307f1a3ad15b7108823691429968e9b26185d3ac8a587f23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 711.3 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
44af119000a99be3851e56d545d75d6e12c683c9966950320cb1a2ccf1333cc0
BLAKE2b-256 checksum
How to use checksums
294a2f91713e7cb651188f31038fcb61a9af8ff1a7e7463ba8819846f0ae6642
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 536.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
3cbfafea3ff152c7ed5f9731657caad6e0b3556b6cbb9fbad89b0c483630a2c1
BLAKE2b-256 checksum
How to use checksums
665f64a17cc53cdc094e7aa09c84f02891627cd00d0272a09424c8a7360718fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

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

Download URL radixtarget-4.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 526.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5aa0d14f3c1df46fbd81ddc58df1bc376e6a22610e1491b6fb485b0ca1959977
BLAKE2b-256 checksum
How to use checksums
1cf5551f8df0744fbed27d42f48e1aae3e8fe8ed4dcbb21310ad0eebca49019b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL radixtarget-4.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 561.0 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e0ba767a789a5d7a9b3b6f054bd2b3b2a627db8cbe1de11d837e06f4bad40472
BLAKE2b-256 checksum
How to use checksums
bb5a06c63a9659a21db2043812a276cb61e85343627039dabd1544b772b1200d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-win_amd64.whl

Download URL radixtarget-4.2.0-cp39-cp39-win_amd64.whl
Size 380.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
9c72b5f883722b893fb2be5c9dc6618c00689495ca4be3ed6f54688091ec5c55
BLAKE2b-256 checksum
How to use checksums
f41fc93a1f06a5f3ac961722f355d030d4a8abf0bdf17ddac557e1b19740e841
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL radixtarget-4.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 737.9 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
86cf3e739963361c1c50f9faade741feb642518c7b93a516a8905db62511bf40
BLAKE2b-256 checksum
How to use checksums
7407a9b49218ff15b3cd67f397704955fc2969a567eb38d87f2cd6ffd5d71a8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-musllinux_1_2_i686.whl

Download URL radixtarget-4.2.0-cp39-cp39-musllinux_1_2_i686.whl
Size 773.4 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
45286b8405c01ed52590fe63ac006d023148818fcc67ec4b04ead47e505299c2
BLAKE2b-256 checksum
How to use checksums
abb31d3f8f20e67fc9b127177c2599da22243bda5c6f119212f29a3e70473dd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL radixtarget-4.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Size 808.4 kB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
efcf68ee9173895669a2f4ae972e794e87fcee6b521c889c336a9f50d117546b
BLAKE2b-256 checksum
How to use checksums
27b64c1ca760c9d7547efc4ec482c919918cbfb7da514d7ae666defcb69d959b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL radixtarget-4.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 710.5 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
949a9230b1f3387381c82f9bc10222d311a495d0c6460cf6db87c24dfc619a80
BLAKE2b-256 checksum
How to use checksums
fd4711cba6ef07ab3b25e91d87aba2e3c5b71a0edcbefa0a9b080c3380ce24c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL radixtarget-4.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 533.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0f72667fb37dcf42c5431c8e6ad57e77f2d04952c0693c2cac9a5b887ef1b44f
BLAKE2b-256 checksum
How to use checksums
607fb2a06a24a2a65aab1b5e1b9bc738697249897127e5fa18ec669ba525653b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL radixtarget-4.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 563.0 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a599c5013e0d059641f3149cc198116851cb867b2f3e82837ef5e76af7f78503
BLAKE2b-256 checksum
How to use checksums
1bdaa5a7879cbe6e3eb65f9bc1148ed048a373885022f14b76f442478132f7f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL radixtarget-4.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 711.6 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8764c45ea4935c6d9669c194db927acef892abf8f19395673605057a6e16c194
BLAKE2b-256 checksum
How to use checksums
4ac093b57f40fdf65e371fe710cc6c3ff39f7f797b17876ab3e5025c634acfc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL radixtarget-4.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 537.3 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
293d6380a37fa4649e94e8b0fe570a369b56f59960faa77a3dd68806b81d3bcc
BLAKE2b-256 checksum
How to use checksums
ce11cfec0263fc17a2f60da1e3393606dd57173a753caff3ea6db6c18ce6e5ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL radixtarget-4.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 527.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
abd9c2cc955b70efcb98d9d4dae4243947da9cd8011aee37ae0fcc7a3070e023
BLAKE2b-256 checksum
How to use checksums
f5d9ecc24b64008bca5224ba0398810fc992d1bbeac9ef69fbd2e25d6b97c1f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release files / radixtarget-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL radixtarget-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 562.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
875285a83a813f593ff572a98cec865977e6849bd90be3ea30cfadcd59f7e672
BLAKE2b-256 checksum
How to use checksums
f17bea135c312f60a6bc37f9a5198a1978fbed9bcdad10c2dfcc65897a7dd810
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.10.2

Release history Release notifications | RSS feed

This release

4.2.0 This release

103 release files

4.0.2

2 release files

3.0.15

2 release files

0.0.9

2 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