radixtarget


Nameradixtarget JSON
Version 4.0.1 PyPI version JSON
download
home_pageNone
SummaryFast radix tree for IP addresses and DNS names
upload_time2025-10-17 15:32:54
maintainerNone
docs_urlNone
authorTheTechromancer
requires_python>=3.9
licenseGPL-3.0
keywords radix tree ip dns networking
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # RadixTarget

[![Python Version](https://img.shields.io/badge/python-3.9+-blue)](https://www.python.org) [![Rust Version](https://img.shields.io/badge/rust-1.70+-orange)](https://www.rust-lang.org) [![License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/blacklanternsecurity/radixtarget/blob/master/LICENSE) [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![tests](https://github.com/blacklanternsecurity/radixtarget/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/blacklanternsecurity/radixtarget/actions/workflows/tests.yml) [![Codecov](https://codecov.io/gh/blacklanternsecurity/radixtarget/graph/badge.svg?token=7IPWMYMTGZ)](https://codecov.io/gh/blacklanternsecurity/radixtarget)

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 ~200,000 lookups per second regardless of database size
- 100% test coverage
- Available as both a Rust crate and Python package
- Used by:
    - [BBOT](https://github.com/blacklanternsecurity/bbot)
    - [cloudcheck](https://github.com/blacklanternsecurity/cloudcheck)

## Python

### Installation

```bash
pip install radixtarget
```

### Usage

```python
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"
```

## Rust

### Installation

```bash
cargo add radixtarget
```

### Usage

```rust
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);

// 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:

```rust
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

```rust
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"));
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "radixtarget",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "radix, tree, ip, dns, networking",
    "author": "TheTechromancer",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/40/d0/67eebefb45ea53453767a3e6f1b790110c356b6225c02840112b4ef21b18/radixtarget-4.0.1.tar.gz",
    "platform": null,
    "description": "# RadixTarget\n\n[![Python Version](https://img.shields.io/badge/python-3.9+-blue)](https://www.python.org) [![Rust Version](https://img.shields.io/badge/rust-1.70+-orange)](https://www.rust-lang.org) [![License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/blacklanternsecurity/radixtarget/blob/master/LICENSE) [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![tests](https://github.com/blacklanternsecurity/radixtarget/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/blacklanternsecurity/radixtarget/actions/workflows/tests.yml) [![Codecov](https://codecov.io/gh/blacklanternsecurity/radixtarget/graph/badge.svg?token=7IPWMYMTGZ)](https://codecov.io/gh/blacklanternsecurity/radixtarget)\n\nRadixTarget is a performant radix implementation designed for quick lookups of IP addresses/networks and DNS hostnames. \n\nRadixTarget is:\n- Written in Rust with Python bindings\n- Capable of ~200,000 lookups per second regardless of database size\n- 100% test coverage\n- Available as both a Rust crate and Python package\n- Used by:\n    - [BBOT](https://github.com/blacklanternsecurity/bbot)\n    - [cloudcheck](https://github.com/blacklanternsecurity/cloudcheck)\n\n## Python\n\n### Installation\n\n```bash\npip install radixtarget\n```\n\n### Usage\n\n```python\nfrom radixtarget import RadixTarget\n\nrt = RadixTarget()\n\n# IPv4\nrt.add(\"192.168.1.0/24\")\nrt.get(\"192.168.1.10\") # IPv4Network(\"192.168.1.0/24\")\nrt.get(\"192.168.2.10\") # None\n\n# IPv6\nrt.add(\"dead::/64\")\nrt.get(\"dead::beef\") # IPv6Network(\"dead::/64\")\nrt.get(\"dead:cafe::beef\") # None\n\n# DNS\nrt.add(\"net\")\nrt.add(\"www.example.com\")\nrt.add(\"test.www.example.com\")\nrt.get(\"net\") # \"net\"\nrt.get(\"evilcorp.net\") # \"net\"\nrt.get(\"www.example.com\") # \"www.example.com\"\nrt.get(\"asdf.test.www.example.com\") # \"test.www.example.com\"\nrt.get(\"example.com\") # None\n\n# Custom data nodes\nrt.add(\"evilcorp.co.uk\", \"custom_data\")\nrt.get(\"www.evilcorp.co.uk\") # \"custom_data\"\n```\n\n## Rust\n\n### Installation\n\n```bash\ncargo add radixtarget\n```\n\n### Usage\n\n```rust\nuse radixtarget::{RadixTarget, ScopeMode};\nuse std::collections::HashSet;\n\n// Create a new RadixTarget\nlet mut rt = RadixTarget::new(&[], ScopeMode::Normal);\n\n// IPv4 networks and addresses\nrt.insert(\"192.168.1.0/24\"); \nassert_eq!(rt.get(\"192.168.1.100\"), Some(\"192.168.1.0/24\".to_string()));\nassert_eq!(rt.get(\"192.168.2.100\"), None);\n\n// IPv6 networks and addresses  \nrt.insert(\"dead::/64\");\nassert_eq!(rt.get(\"dead::beef\"), Some(\"dead::/64\".to_string()));\nassert_eq!(rt.get(\"cafe::beef\"), None);\n\n// DNS hostnames\nrt.insert(\"example.com\");\nrt.insert(\"api.test.www.example.com\");\nassert_eq!(rt.get(\"example.com\"), Some(\"example.com\".to_string()));\nassert_eq!(rt.get(\"subdomain.api.test.www.example.com\"), \n           Some(\"api.test.www.example.com\".to_string()));\n\n// Check if target contains a value\nassert!(rt.contains(\"192.168.1.50\"));\nassert!(rt.contains(\"dead::1234\"));\nassert!(rt.contains(\"example.com\"));\n\n// Get all hosts\nlet hosts: HashSet<String> = rt.hosts();\nprintln!(\"All hosts: {:?}\", hosts);\n\n// Delete targets\nassert!(rt.delete(\"192.168.1.0/24\"));\nassert!(!rt.delete(\"192.168.1.0/24\")); // false - already deleted\n\n// Utility operations\nprintln!(\"Number of hosts: {}\", rt.len());\nprintln!(\"Is empty: {}\", rt.is_empty());\n\n// Prune dead nodes (returns number of pruned nodes)\nlet pruned_count = rt.prune();\n\n// Defragment overlapping networks (returns (cleaned, new) hosts)\nlet (cleaned_hosts, new_hosts) = rt.defrag();\n```\n\n#### Scope Modes\n\nRadixTarget supports different scope modes for DNS matching:\n\n```rust\nuse radixtarget::{RadixTarget, ScopeMode};\n\n// Normal mode: standard radix tree behavior (default)\nlet mut rt_normal = RadixTarget::new(&[], ScopeMode::Normal);\nrt_normal.insert(\"example.com\");\nassert_eq!(rt_normal.get(\"subdomain.example.com\"), Some(\"example.com\".to_string()));\n\n// Strict mode: exact matching only\nlet mut rt_strict = RadixTarget::new(&[], ScopeMode::Strict);\nrt_strict.insert(\"example.com\");\nassert_eq!(rt_strict.get(\"example.com\"), Some(\"example.com\".to_string()));\nassert_eq!(rt_strict.get(\"subdomain.example.com\"), None); // No subdomain matching\n\n// ACL mode: Same behavior as normal, but keeps only the highest parent subnet for efficiency\nlet mut rt_acl = RadixTarget::new(&[], ScopeMode::Acl);\nrt_acl.insert(\"192.168.1.0/24\");\nrt_acl.insert(\"192.168.1.0/28\");\n// Least specific match is returned instead of most specific\nassert_eq!(rt_acl.get(\"192.168.1.1\"), Some(\"192.168.1.0/24\".to_string()));\n```\n\n#### Initialization with Hosts\n\n```rust\nuse radixtarget::{RadixTarget, ScopeMode};\n\n// Initialize with existing hosts\nlet hosts = vec![\"192.168.1.0/24\", \"example.com\", \"dead::/64\"];\nlet rt = RadixTarget::new(&hosts, ScopeMode::Normal);\n\nassert!(rt.contains(\"192.168.1.100\"));\nassert!(rt.contains(\"subdomain.example.com\"));\nassert!(rt.contains(\"dead::beef\"));\n```\n\n",
    "bugtrack_url": null,
    "license": "GPL-3.0",
    "summary": "Fast radix tree for IP addresses and DNS names",
    "version": "4.0.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/blacklanternsecurity/radixtarget/issues",
        "Homepage": "https://github.com/blacklanternsecurity/radixtarget",
        "Repository": "https://github.com/blacklanternsecurity/radixtarget"
    },
    "split_keywords": [
        "radix",
        " tree",
        " ip",
        " dns",
        " networking"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "794907cb0ecade34bc226a25e9f658fe94b6a8c9a994e3dd2b51a2b178b8c38c",
                "md5": "6ff3b3c4387eb30a779e8671c58738c5",
                "sha256": "b2512cd7ed74008431711ac9d3054d686df9176300eeaf134dc1b375505c08b1"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6ff3b3c4387eb30a779e8671c58738c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 513230,
            "upload_time": "2025-10-17T15:36:33",
            "upload_time_iso_8601": "2025-10-17T15:36:33.611824Z",
            "url": "https://files.pythonhosted.org/packages/79/49/07cb0ecade34bc226a25e9f658fe94b6a8c9a994e3dd2b51a2b178b8c38c/radixtarget-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bebadb89b15af95a5725a48512d21bddad8666696778b19e0a2933d3f2219961",
                "md5": "3fc9a2e7046038739f6e9603d8732049",
                "sha256": "8f7c450f53e1ce492644ef6b13a90a77354cabeb187782d5392c921cf688ec87"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3fc9a2e7046038739f6e9603d8732049",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 524232,
            "upload_time": "2025-10-17T15:36:43",
            "upload_time_iso_8601": "2025-10-17T15:36:43.879346Z",
            "url": "https://files.pythonhosted.org/packages/be/ba/db89b15af95a5725a48512d21bddad8666696778b19e0a2933d3f2219961/radixtarget-4.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f4ffd9f972dd8d6992502eb02c7fb56ed183fa7c5438d489811b82da44c6b76",
                "md5": "783618a0a968bc21fdb9b34f5e9b8a79",
                "sha256": "a8f660996f5f034b707d7673efd45c0ae89e5ea895cc6a0e35021e163e64461f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "783618a0a968bc21fdb9b34f5e9b8a79",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 706096,
            "upload_time": "2025-10-17T15:36:53",
            "upload_time_iso_8601": "2025-10-17T15:36:53.630533Z",
            "url": "https://files.pythonhosted.org/packages/0f/4f/fd9f972dd8d6992502eb02c7fb56ed183fa7c5438d489811b82da44c6b76/radixtarget-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb3aff393488ba8a481d0f461b5ab2f6e6ad2b83a6616a727e4514f2333ad04f",
                "md5": "15477d528bf4af031ad4a2dde0550818",
                "sha256": "c8ba39bf3d43d0336b8de8136fdaf66ddb68aee46bb0adcb9118fa35e169db8d"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "15477d528bf4af031ad4a2dde0550818",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 559092,
            "upload_time": "2025-10-17T15:37:03",
            "upload_time_iso_8601": "2025-10-17T15:37:03.199390Z",
            "url": "https://files.pythonhosted.org/packages/eb/3a/ff393488ba8a481d0f461b5ab2f6e6ad2b83a6616a727e4514f2333ad04f/radixtarget-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db687df64b10c4e98bb8cb2166cc7d82db6429e5b5e8e4c0a1b6d665c6e08820",
                "md5": "efabc4ec58d6d6feca940466c50dfc40",
                "sha256": "366c0da28898daa908827bd14bee63ee2c86ee1afde31f6f8aa20677e4b73628"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "efabc4ec58d6d6feca940466c50dfc40",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 522021,
            "upload_time": "2025-10-17T15:37:21",
            "upload_time_iso_8601": "2025-10-17T15:37:21.122739Z",
            "url": "https://files.pythonhosted.org/packages/db/68/7df64b10c4e98bb8cb2166cc7d82db6429e5b5e8e4c0a1b6d665c6e08820/radixtarget-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43e8210b8b039bec567ecef63721ed343718beace3a9e6685142c07bfc3c67c6",
                "md5": "8f098fed17a557897dacdd8c276e16d2",
                "sha256": "37053c210cae56a5a462c19bb6d229cf86dae902b39410b7bb5235335e12af6f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8f098fed17a557897dacdd8c276e16d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 545804,
            "upload_time": "2025-10-17T15:37:12",
            "upload_time_iso_8601": "2025-10-17T15:37:12.763171Z",
            "url": "https://files.pythonhosted.org/packages/43/e8/210b8b039bec567ecef63721ed343718beace3a9e6685142c07bfc3c67c6/radixtarget-4.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d36611512d3817f9c33370278b457adfefbea11e4d12e8b2dca3d52614ba382",
                "md5": "4150c2818934e01595aeceeb83716524",
                "sha256": "65dae314334c3f391226bae3b3508f6e67e302e7728b53bcf8f3a49752a9eb21"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4150c2818934e01595aeceeb83716524",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 693054,
            "upload_time": "2025-10-17T15:37:36",
            "upload_time_iso_8601": "2025-10-17T15:37:36.383903Z",
            "url": "https://files.pythonhosted.org/packages/1d/36/611512d3817f9c33370278b457adfefbea11e4d12e8b2dca3d52614ba382/radixtarget-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d692c42d5b39fb008ce1f8aee5677f2f7890b5c93bcdc268518107dc5767ffb5",
                "md5": "58bff5c62b4241abdfbcbe096ce920bd",
                "sha256": "1054790f99b9394c9800cd204ac9d0df1c192e3f583515af3593fda88c1380a1"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "58bff5c62b4241abdfbcbe096ce920bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 787986,
            "upload_time": "2025-10-17T15:37:46",
            "upload_time_iso_8601": "2025-10-17T15:37:46.914386Z",
            "url": "https://files.pythonhosted.org/packages/d6/92/c42d5b39fb008ce1f8aee5677f2f7890b5c93bcdc268518107dc5767ffb5/radixtarget-4.0.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75a3b15374ec99a86d875ec79c8c0d864e6f90d943b8c583562d8e3f9aa92611",
                "md5": "1ef930934a3d5e3e7de84c13ac9a6738",
                "sha256": "d62c21db20f32d471d9c0c9e81c104f71675b6be1fed01a24ac0a020ea3b6462"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1ef930934a3d5e3e7de84c13ac9a6738",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 719114,
            "upload_time": "2025-10-17T15:37:59",
            "upload_time_iso_8601": "2025-10-17T15:37:59.129107Z",
            "url": "https://files.pythonhosted.org/packages/75/a3/b15374ec99a86d875ec79c8c0d864e6f90d943b8c583562d8e3f9aa92611/radixtarget-4.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "106fcea612c35ac80c7516b47a870ae59146b8651c250ddc374353d67307351f",
                "md5": "383bff04a387f852cc50f078ec72fe93",
                "sha256": "b24f9093085a9f5b5be17fc7c6de502fd9d2030258a2948dbf59d9c04373aaba"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "383bff04a387f852cc50f078ec72fe93",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 687025,
            "upload_time": "2025-10-17T15:38:10",
            "upload_time_iso_8601": "2025-10-17T15:38:10.288117Z",
            "url": "https://files.pythonhosted.org/packages/10/6f/cea612c35ac80c7516b47a870ae59146b8651c250ddc374353d67307351f/radixtarget-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92ed9cf394ffd11ff5a7fdcecd34c8e4af673be2740dbc419570a648f44e881b",
                "md5": "36e8021406f660ad4723a11cc5f60de2",
                "sha256": "473de22582b464bea4b5be6786ecb8167db3b12587a8feb547d7ea6416a731e4"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "36e8021406f660ad4723a11cc5f60de2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 366437,
            "upload_time": "2025-10-17T15:38:21",
            "upload_time_iso_8601": "2025-10-17T15:38:21.936264Z",
            "url": "https://files.pythonhosted.org/packages/92/ed/9cf394ffd11ff5a7fdcecd34c8e4af673be2740dbc419570a648f44e881b/radixtarget-4.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1286795756c1d9ba73a61acf769db4015b6274a4824ca6fa90eb13caac3cca73",
                "md5": "7c0706662d38e3574c9f7ac8b17fa226",
                "sha256": "30ba4c36c6cbd485196e27cae8a21b9bbbd17d1040f60d4356155a3f645c0d5b"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c0706662d38e3574c9f7ac8b17fa226",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 488645,
            "upload_time": "2025-10-17T15:37:32",
            "upload_time_iso_8601": "2025-10-17T15:37:32.359053Z",
            "url": "https://files.pythonhosted.org/packages/12/86/795756c1d9ba73a61acf769db4015b6274a4824ca6fa90eb13caac3cca73/radixtarget-4.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c0348b30d3ee5854dc0f148512de4a2899517e7e7d3a6b0b4e4dd83c949f829",
                "md5": "9f2684a85156a2eaf5654de5cdf64a3c",
                "sha256": "8795aead083383dbe837d5b63cd54f246583b49f39a7706a172c6c3a9ea912ac"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9f2684a85156a2eaf5654de5cdf64a3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 477574,
            "upload_time": "2025-10-17T15:37:28",
            "upload_time_iso_8601": "2025-10-17T15:37:28.128904Z",
            "url": "https://files.pythonhosted.org/packages/1c/03/48b30d3ee5854dc0f148512de4a2899517e7e7d3a6b0b4e4dd83c949f829/radixtarget-4.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7913ae834fc6c95012f5446bf43dbd9c55a636f3c04ead46294a57eacb7dad8",
                "md5": "21b5bc494c90375e11eec9d564d5e9fc",
                "sha256": "4de5b2ad9657f152d022dbac28c0dbddb83a7b803d1cad37000ef98391a4d4bd"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21b5bc494c90375e11eec9d564d5e9fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 513030,
            "upload_time": "2025-10-17T15:36:34",
            "upload_time_iso_8601": "2025-10-17T15:36:34.701992Z",
            "url": "https://files.pythonhosted.org/packages/b7/91/3ae834fc6c95012f5446bf43dbd9c55a636f3c04ead46294a57eacb7dad8/radixtarget-4.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "067564e9c166be4129cd04edbb04e0e914f6cc54d10419e88166b3e9615ccd76",
                "md5": "c7ee8660053994cc1e3ecfe6d5d62f4f",
                "sha256": "bd57152c732de8b1099ab05a54d71eb5639c82730cb5d33fa0ae539f9190b66f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c7ee8660053994cc1e3ecfe6d5d62f4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 523882,
            "upload_time": "2025-10-17T15:36:44",
            "upload_time_iso_8601": "2025-10-17T15:36:44.908502Z",
            "url": "https://files.pythonhosted.org/packages/06/75/64e9c166be4129cd04edbb04e0e914f6cc54d10419e88166b3e9615ccd76/radixtarget-4.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "180a17f0cafa24e91d89ad7157096d3d44d582f89ccec92a13adaff93a38b90e",
                "md5": "5481e1e2a7bdb40273dd718d2ccb5c8f",
                "sha256": "ec89fe02fc9472ebb4402771559e88c5eac8b2929f945520889b4f5fa1ed44aa"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5481e1e2a7bdb40273dd718d2ccb5c8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 706074,
            "upload_time": "2025-10-17T15:36:54",
            "upload_time_iso_8601": "2025-10-17T15:36:54.656598Z",
            "url": "https://files.pythonhosted.org/packages/18/0a/17f0cafa24e91d89ad7157096d3d44d582f89ccec92a13adaff93a38b90e/radixtarget-4.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe406ca4f8c89eeb1005020f6441addeb5576bf216ef336f3a7bd888e2def1aa",
                "md5": "aff6f7f9d4445793bb6aadd3bb3b16b6",
                "sha256": "1f127155943081e66e4e31fb6912cda344ef5ede95d1b9be81097ee20e30bc1d"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "aff6f7f9d4445793bb6aadd3bb3b16b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 558825,
            "upload_time": "2025-10-17T15:37:04",
            "upload_time_iso_8601": "2025-10-17T15:37:04.406575Z",
            "url": "https://files.pythonhosted.org/packages/fe/40/6ca4f8c89eeb1005020f6441addeb5576bf216ef336f3a7bd888e2def1aa/radixtarget-4.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "467a8b049f9a573c491c5ac925a2bd163f9fa47568f1dc31c921645528901d68",
                "md5": "8d9bdb4af1c3c1d93159d493f5ae1931",
                "sha256": "a17b8fcd87abe0c2621935bf44d5cfbe2f2d8e22c5db083d5f2395974aaa7a53"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d9bdb4af1c3c1d93159d493f5ae1931",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 521933,
            "upload_time": "2025-10-17T15:37:22",
            "upload_time_iso_8601": "2025-10-17T15:37:22.116471Z",
            "url": "https://files.pythonhosted.org/packages/46/7a/8b049f9a573c491c5ac925a2bd163f9fa47568f1dc31c921645528901d68/radixtarget-4.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "653d08977ce4f165410132c5ffa223d363391084f995df47d3510170d537b225",
                "md5": "e2120e01bf15bed8314ec7077924d76c",
                "sha256": "07237bdae37dd269805da950b8edb8ad48f100747e80ca694050c0e483f02994"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e2120e01bf15bed8314ec7077924d76c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 545732,
            "upload_time": "2025-10-17T15:37:13",
            "upload_time_iso_8601": "2025-10-17T15:37:13.705092Z",
            "url": "https://files.pythonhosted.org/packages/65/3d/08977ce4f165410132c5ffa223d363391084f995df47d3510170d537b225/radixtarget-4.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7935e702f72f93e175df59cecb2d1a78aa3dea7e1cb8b8636eb77ab5f069a871",
                "md5": "9dd4f006b9484e6a4ff960da270b0b06",
                "sha256": "2cc6280e51d0dbae16c7554e424fe0cb9cf7e2cc423e6a29a3fc3ea9467c78ae"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9dd4f006b9484e6a4ff960da270b0b06",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 693000,
            "upload_time": "2025-10-17T15:37:37",
            "upload_time_iso_8601": "2025-10-17T15:37:37.399774Z",
            "url": "https://files.pythonhosted.org/packages/79/35/e702f72f93e175df59cecb2d1a78aa3dea7e1cb8b8636eb77ab5f069a871/radixtarget-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70c098dafb3833a75b12c273d2065afe6ad49e976d47f186988f9fc5fc411b5d",
                "md5": "5234a2aefd25129150e8697031135f96",
                "sha256": "4fa6ab2c864c362198dd29e74ea0f36a2efdf8661d5bd3b5a0b3b587a601ab51"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5234a2aefd25129150e8697031135f96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 787755,
            "upload_time": "2025-10-17T15:37:48",
            "upload_time_iso_8601": "2025-10-17T15:37:48.065890Z",
            "url": "https://files.pythonhosted.org/packages/70/c0/98dafb3833a75b12c273d2065afe6ad49e976d47f186988f9fc5fc411b5d/radixtarget-4.0.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef68b45aa489c058ae26b60a87730eaeb10d3ecdab0256f2452e92a41a26636f",
                "md5": "e5589d6dc058633c7abd73ef5ab843fb",
                "sha256": "611a21aac1719ca8492c081a2809dc92e5f59a543fc2fb1f593595317e58e68e"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e5589d6dc058633c7abd73ef5ab843fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 718959,
            "upload_time": "2025-10-17T15:38:00",
            "upload_time_iso_8601": "2025-10-17T15:38:00.376778Z",
            "url": "https://files.pythonhosted.org/packages/ef/68/b45aa489c058ae26b60a87730eaeb10d3ecdab0256f2452e92a41a26636f/radixtarget-4.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24a851f8c1f2a04171d6c4ddf1f0f90890d7c94eef817154c328cdf9ace10733",
                "md5": "3bf17dde7a91a4412558d327bd7c27d4",
                "sha256": "0539952460e87cde99b129969fa63260c8809694e28801c15e3c0f74d4e4cdf9"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bf17dde7a91a4412558d327bd7c27d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 686834,
            "upload_time": "2025-10-17T15:38:11",
            "upload_time_iso_8601": "2025-10-17T15:38:11.293189Z",
            "url": "https://files.pythonhosted.org/packages/24/a8/51f8c1f2a04171d6c4ddf1f0f90890d7c94eef817154c328cdf9ace10733/radixtarget-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6d23a47c5438a84288ebd9b641d3cc003c992254063836b261f0fd9e4539403",
                "md5": "bb42aaac068f1be1c1ca01296eeea121",
                "sha256": "7be7f6d47d6335d23e6516ad0e7506ef243837794af2a209e7f4680caa428a23"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bb42aaac068f1be1c1ca01296eeea121",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 366493,
            "upload_time": "2025-10-17T15:38:22",
            "upload_time_iso_8601": "2025-10-17T15:38:22.864534Z",
            "url": "https://files.pythonhosted.org/packages/b6/d2/3a47c5438a84288ebd9b641d3cc003c992254063836b261f0fd9e4539403/radixtarget-4.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "574bdc61c3e5744fd3bc71faa1c77b7ff37ae854b9dfb6781322426edddb504b",
                "md5": "2e781da102aa0a118ca5f53e4657a92c",
                "sha256": "4e038dc1dc30bea24e6fe2c981c8f85a128e469e26fc71642d4ff9bca776bb52"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e781da102aa0a118ca5f53e4657a92c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 485296,
            "upload_time": "2025-10-17T15:37:33",
            "upload_time_iso_8601": "2025-10-17T15:37:33.663883Z",
            "url": "https://files.pythonhosted.org/packages/57/4b/dc61c3e5744fd3bc71faa1c77b7ff37ae854b9dfb6781322426edddb504b/radixtarget-4.0.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea54c16b38c58e2ce7aacf949c6ca8b0deb0c921fbc9f8378c6408efcb3c20ce",
                "md5": "ef741b6a5dc5b95545688e8b8efe78ee",
                "sha256": "aaa9233e1a45578d6580341ca90e65c1a2bc2619d9920a996b4ed7c9dbb583da"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ef741b6a5dc5b95545688e8b8efe78ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 474591,
            "upload_time": "2025-10-17T15:37:29",
            "upload_time_iso_8601": "2025-10-17T15:37:29.138758Z",
            "url": "https://files.pythonhosted.org/packages/ea/54/c16b38c58e2ce7aacf949c6ca8b0deb0c921fbc9f8378c6408efcb3c20ce/radixtarget-4.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd94fe28305780b43d1efcf96c256d0883c3964602258b3aaf373822a4128818",
                "md5": "8d7d64b9eb2a34d842cca69f1393e37c",
                "sha256": "c1b1a34b90f496825ec1560818c863e13b601def73e0be707c9763eba0b6935c"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8d7d64b9eb2a34d842cca69f1393e37c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 513934,
            "upload_time": "2025-10-17T15:36:36",
            "upload_time_iso_8601": "2025-10-17T15:36:36.032096Z",
            "url": "https://files.pythonhosted.org/packages/bd/94/fe28305780b43d1efcf96c256d0883c3964602258b3aaf373822a4128818/radixtarget-4.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3766294d650e4c2fefb16e9a570dd093f35c5d451ca4ad62fd657b045f29ad6f",
                "md5": "eba5773d335b6829e1138465625d086c",
                "sha256": "9f9e2475f90154a893dcbbe0a99244368bf9b226b666e4c413c1e6f45da96652"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "eba5773d335b6829e1138465625d086c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 525566,
            "upload_time": "2025-10-17T15:36:45",
            "upload_time_iso_8601": "2025-10-17T15:36:45.877627Z",
            "url": "https://files.pythonhosted.org/packages/37/66/294d650e4c2fefb16e9a570dd093f35c5d451ca4ad62fd657b045f29ad6f/radixtarget-4.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed596f30310ff4112111b4c3f7252577464562863debdb2ecb8feb80d8008df7",
                "md5": "6d509319f4e996ea81138a26158c0df0",
                "sha256": "458f57821e6d6c8d26d6010d3d2d899607e1d8ed0c4e56a161b9fd5aaf685bf2"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6d509319f4e996ea81138a26158c0df0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 704806,
            "upload_time": "2025-10-17T15:36:55",
            "upload_time_iso_8601": "2025-10-17T15:36:55.686074Z",
            "url": "https://files.pythonhosted.org/packages/ed/59/6f30310ff4112111b4c3f7252577464562863debdb2ecb8feb80d8008df7/radixtarget-4.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "518a5e8793a01cb9006a7485cb2161caee8a2f8b96bc84aef2d7f350531e6c40",
                "md5": "cb82ac410cba70cc37cec026b00f9527",
                "sha256": "69f1501c90d18028e0224d6de34bd042173cd25f436159beb91206e79ce4fef7"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "cb82ac410cba70cc37cec026b00f9527",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 559190,
            "upload_time": "2025-10-17T15:37:05",
            "upload_time_iso_8601": "2025-10-17T15:37:05.318383Z",
            "url": "https://files.pythonhosted.org/packages/51/8a/5e8793a01cb9006a7485cb2161caee8a2f8b96bc84aef2d7f350531e6c40/radixtarget-4.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5290f494306ca199f4c706a974f3776129e75a5839f41c235924c4e4e928eae",
                "md5": "7ee12efbd9975dd2cd6a680c3f3e233b",
                "sha256": "a411d445da83f4468ea33b79b1e8ba5d9e7961a27332964bd973559b27337825"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ee12efbd9975dd2cd6a680c3f3e233b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 522420,
            "upload_time": "2025-10-17T15:37:23",
            "upload_time_iso_8601": "2025-10-17T15:37:23.160521Z",
            "url": "https://files.pythonhosted.org/packages/d5/29/0f494306ca199f4c706a974f3776129e75a5839f41c235924c4e4e928eae/radixtarget-4.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbb1524d299bd1151709a5adf1af6e1e839290d7c9ab18eba55cc804ba803dec",
                "md5": "4df9fa73522c48cc0f3308fbe5c03223",
                "sha256": "0e2a067fbbccb17d91e25be818a9e6c2d19eb8c0b65aec18dcc1d77c2bcbde4c"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4df9fa73522c48cc0f3308fbe5c03223",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 468234,
            "upload_time": "2025-10-17T15:32:53",
            "upload_time_iso_8601": "2025-10-17T15:32:53.057417Z",
            "url": "https://files.pythonhosted.org/packages/db/b1/524d299bd1151709a5adf1af6e1e839290d7c9ab18eba55cc804ba803dec/radixtarget-4.0.1-cp312-cp312-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4bbdf1147454ec687aa09e7a59dc1ea1285bc6b21f3358ac01b997c092f9643",
                "md5": "48863a643b6e10a567c9771ab9bae746",
                "sha256": "34d6538fa3a4e28e800631d2000a52a9cfeed80557694455eb64d4efdcc18d54"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "48863a643b6e10a567c9771ab9bae746",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 545887,
            "upload_time": "2025-10-17T15:37:16",
            "upload_time_iso_8601": "2025-10-17T15:37:16.095286Z",
            "url": "https://files.pythonhosted.org/packages/c4/bb/df1147454ec687aa09e7a59dc1ea1285bc6b21f3358ac01b997c092f9643/radixtarget-4.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9600e5a595baf2587be1d122f99b9f32686918c7b5a5ff0b4818ed489d214e56",
                "md5": "d5d50f58dc84e1bcc3c6f9213ff415af",
                "sha256": "6e9cd6da29a6bf833677dfcd4870e026b10969c4835a1b33bc1563a46efd7d4b"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d5d50f58dc84e1bcc3c6f9213ff415af",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 693579,
            "upload_time": "2025-10-17T15:37:38",
            "upload_time_iso_8601": "2025-10-17T15:37:38.335286Z",
            "url": "https://files.pythonhosted.org/packages/96/00/e5a595baf2587be1d122f99b9f32686918c7b5a5ff0b4818ed489d214e56/radixtarget-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3cec7e3587803d0494e636297d16a30d69c84e60796bdcd0921b25fb3bc4643c",
                "md5": "cdca2567daf4c81455050eff90817e7c",
                "sha256": "87d1bf41b5f971713039aab8d1cfda44ad47a47868fad52266368c7cc813e32b"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cdca2567daf4c81455050eff90817e7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 788884,
            "upload_time": "2025-10-17T15:37:49",
            "upload_time_iso_8601": "2025-10-17T15:37:49.413400Z",
            "url": "https://files.pythonhosted.org/packages/3c/ec/7e3587803d0494e636297d16a30d69c84e60796bdcd0921b25fb3bc4643c/radixtarget-4.0.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6f26f96f8808c369cf653ddc04c64dcd98937f9263b944f42b82f82dbdf28e2",
                "md5": "40be711d961d36ff392fc53bbaa89b0e",
                "sha256": "6ccdf641111b532d51a0bbcf0c6734e310b2084a7aec8b010e72e6bfdc6f5ff3"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "40be711d961d36ff392fc53bbaa89b0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 719102,
            "upload_time": "2025-10-17T15:38:01",
            "upload_time_iso_8601": "2025-10-17T15:38:01.394423Z",
            "url": "https://files.pythonhosted.org/packages/f6/f2/6f96f8808c369cf653ddc04c64dcd98937f9263b944f42b82f82dbdf28e2/radixtarget-4.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd832a5149bfe29a19795fea8d60f7913299d531f0d50e9ca7b7e1c6dc6738bb",
                "md5": "fda533418187e943da55b3d06b9c72ee",
                "sha256": "b6e57f3460787b06db8719c2b6d654dde7e4054e973abb6ad04a88a0c0e502ce"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fda533418187e943da55b3d06b9c72ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 687257,
            "upload_time": "2025-10-17T15:38:12",
            "upload_time_iso_8601": "2025-10-17T15:38:12.438812Z",
            "url": "https://files.pythonhosted.org/packages/fd/83/2a5149bfe29a19795fea8d60f7913299d531f0d50e9ca7b7e1c6dc6738bb/radixtarget-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8f5fddf8a48e648d3cf5f1fc56e353d741520ed7bec04911bf0b33ec0d8c323",
                "md5": "cdcdf092eb7e7dcb1d22a367fab3622d",
                "sha256": "35578b9c36d1bde5647e4b4377fad499f676a2274b2e97f3b9d7e4b20994956d"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cdcdf092eb7e7dcb1d22a367fab3622d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 367410,
            "upload_time": "2025-10-17T15:38:23",
            "upload_time_iso_8601": "2025-10-17T15:38:23.968904Z",
            "url": "https://files.pythonhosted.org/packages/f8/f5/fddf8a48e648d3cf5f1fc56e353d741520ed7bec04911bf0b33ec0d8c323/radixtarget-4.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d727ff74e174bf3466a73b0b2b59d38deb72266bf0121b5f219936f76580c6f1",
                "md5": "493ee26606df921044f368c0016032ff",
                "sha256": "71a00a7ddeb6d2f43f4d205d3d86aa7ef29262eab857d48933eeb4f2b8a9684f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "493ee26606df921044f368c0016032ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 485115,
            "upload_time": "2025-10-17T15:37:34",
            "upload_time_iso_8601": "2025-10-17T15:37:34.963051Z",
            "url": "https://files.pythonhosted.org/packages/d7/27/ff74e174bf3466a73b0b2b59d38deb72266bf0121b5f219936f76580c6f1/radixtarget-4.0.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f45a483672933142438a01d0ab73018ee78a6082d6b7aea6e68890e54b60b7b1",
                "md5": "7f7890ed7c8291f2473a3012467b1640",
                "sha256": "df0bd1dd63f5ba7985801c34ba8131978b4daa2e57790dce5896565ca388f6d9"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7f7890ed7c8291f2473a3012467b1640",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 474588,
            "upload_time": "2025-10-17T15:37:30",
            "upload_time_iso_8601": "2025-10-17T15:37:30.080906Z",
            "url": "https://files.pythonhosted.org/packages/f4/5a/483672933142438a01d0ab73018ee78a6082d6b7aea6e68890e54b60b7b1/radixtarget-4.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e645e78b400a37bd8b895d436d488867deda8c8906e368e662c6230700e677df",
                "md5": "403473170bf680ce331d636621aa8d62",
                "sha256": "bf5324c657c24e1869aa9c2f0664014ba84160094cd1e85d7c8888824d0d4b30"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "403473170bf680ce331d636621aa8d62",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 513657,
            "upload_time": "2025-10-17T15:36:36",
            "upload_time_iso_8601": "2025-10-17T15:36:36.938354Z",
            "url": "https://files.pythonhosted.org/packages/e6/45/e78b400a37bd8b895d436d488867deda8c8906e368e662c6230700e677df/radixtarget-4.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e13d6f644ca6b76d02313abe5237722dabe4fae516d51d795db7f2ab816254f6",
                "md5": "3563bc3143f00c08f9a4fc26c20ac9fb",
                "sha256": "326e4147562a1f91f643c73003d2002b47d8aafa98fe7a3b58013b58acb3917f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3563bc3143f00c08f9a4fc26c20ac9fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 525642,
            "upload_time": "2025-10-17T15:36:46",
            "upload_time_iso_8601": "2025-10-17T15:36:46.821363Z",
            "url": "https://files.pythonhosted.org/packages/e1/3d/6f644ca6b76d02313abe5237722dabe4fae516d51d795db7f2ab816254f6/radixtarget-4.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bed85543e6097d5271c33391a02389e5f1b94deed615011914d7f254ded950a",
                "md5": "be7eebdbaddf585cb2c699f5c45fc21f",
                "sha256": "481a76839faa75eacf9a9afb8bc5e844b8a23f23c9e7d73e03f8a7df96f65b7e"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "be7eebdbaddf585cb2c699f5c45fc21f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 707065,
            "upload_time": "2025-10-17T15:36:56",
            "upload_time_iso_8601": "2025-10-17T15:36:56.714940Z",
            "url": "https://files.pythonhosted.org/packages/5b/ed/85543e6097d5271c33391a02389e5f1b94deed615011914d7f254ded950a/radixtarget-4.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "420fabe39e8fab298bdfc8fccfb8e32419722c276b6bd38c879b5ff55c7fba89",
                "md5": "fef489d50d6849a56bf0790d49f59aa7",
                "sha256": "11eeb358350215646b2a65c77ab14c7f286780a62d6c586eb326df6178a7e6cc"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fef489d50d6849a56bf0790d49f59aa7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 559449,
            "upload_time": "2025-10-17T15:37:06",
            "upload_time_iso_8601": "2025-10-17T15:37:06.228566Z",
            "url": "https://files.pythonhosted.org/packages/42/0f/abe39e8fab298bdfc8fccfb8e32419722c276b6bd38c879b5ff55c7fba89/radixtarget-4.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c1f553bdb87049d1e2d9aeffe2f9d2a8eaf46f14173f0e97403bf854b949979",
                "md5": "fb4436b55d3782f21ab3e12b2597cd82",
                "sha256": "a5e4f2b3e3efc1a19eaf1246131e38a7449cdc42cbcd69b6479f4ffcf0e23260"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb4436b55d3782f21ab3e12b2597cd82",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 521950,
            "upload_time": "2025-10-17T15:37:24",
            "upload_time_iso_8601": "2025-10-17T15:37:24.103198Z",
            "url": "https://files.pythonhosted.org/packages/2c/1f/553bdb87049d1e2d9aeffe2f9d2a8eaf46f14173f0e97403bf854b949979/radixtarget-4.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bf9628efa7058377831b76a04752de9006531ef2f35cfeed4053afb219a35ff",
                "md5": "9830564edec43ea87369d911296094c6",
                "sha256": "421b3d08a659d8646716889c2193e2816d541e7ada17359a86973a80fd01e394"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9830564edec43ea87369d911296094c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 545624,
            "upload_time": "2025-10-17T15:37:17",
            "upload_time_iso_8601": "2025-10-17T15:37:17.003633Z",
            "url": "https://files.pythonhosted.org/packages/0b/f9/628efa7058377831b76a04752de9006531ef2f35cfeed4053afb219a35ff/radixtarget-4.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c624d8e834bb86c423e0db4efbe92e929ea7a8ca4874eb98dc90eab16cc04f1",
                "md5": "ee65b36c974ea3441de0373f8732828e",
                "sha256": "c4181af39da1cb50e9520fa55716cec55167a0912325339a816e95a08d4a93ae"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee65b36c974ea3441de0373f8732828e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 693250,
            "upload_time": "2025-10-17T15:37:39",
            "upload_time_iso_8601": "2025-10-17T15:37:39.626788Z",
            "url": "https://files.pythonhosted.org/packages/1c/62/4d8e834bb86c423e0db4efbe92e929ea7a8ca4874eb98dc90eab16cc04f1/radixtarget-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2867d0580f5a1ac8d4188de28e825c95ee9d84449825039943ec39bf81e9078",
                "md5": "99584fe9582d34da5600b8303601c3df",
                "sha256": "4053b1f7e54c9ddbece17bc7789e5bd6be72bfc32bf1a75352a440a73f8642cd"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "99584fe9582d34da5600b8303601c3df",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 789401,
            "upload_time": "2025-10-17T15:37:52",
            "upload_time_iso_8601": "2025-10-17T15:37:52.338598Z",
            "url": "https://files.pythonhosted.org/packages/f2/86/7d0580f5a1ac8d4188de28e825c95ee9d84449825039943ec39bf81e9078/radixtarget-4.0.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35634b376b3607b034e6c81042b13c141b308396036083ad74ef75e5dfac6076",
                "md5": "01f4a6ac936dc70154dd39cfd8eb5071",
                "sha256": "780c07c4a927e79fcc69f80b3bc0eecb5b8cb0413fd865bf4c540cfccac23b7e"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "01f4a6ac936dc70154dd39cfd8eb5071",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 719014,
            "upload_time": "2025-10-17T15:38:02",
            "upload_time_iso_8601": "2025-10-17T15:38:02.372205Z",
            "url": "https://files.pythonhosted.org/packages/35/63/4b376b3607b034e6c81042b13c141b308396036083ad74ef75e5dfac6076/radixtarget-4.0.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d76c4abf57b52a1fa87f0f8d3565c7e47c02ddc4bc23bfd7b25f5070e93f2787",
                "md5": "97a498d96f0dc243123bff1e33a4366b",
                "sha256": "065ac623c0617a8dca5a86d715db7a47cb95a2d20121145c76633f41335e0b14"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97a498d96f0dc243123bff1e33a4366b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 687058,
            "upload_time": "2025-10-17T15:38:13",
            "upload_time_iso_8601": "2025-10-17T15:38:13.539405Z",
            "url": "https://files.pythonhosted.org/packages/d7/6c/4abf57b52a1fa87f0f8d3565c7e47c02ddc4bc23bfd7b25f5070e93f2787/radixtarget-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e23344a79cb375db73729d09bd6cf85599ae9badf3c0caa4d53cdefe17be0ff",
                "md5": "6a859c86073f0f1c37f5fdb82125d196",
                "sha256": "cdb65210ab9f314f76a7ada36606df52d4e98d1188784e58fd85ce6bd9df7878"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6a859c86073f0f1c37f5fdb82125d196",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 513466,
            "upload_time": "2025-10-17T15:36:38",
            "upload_time_iso_8601": "2025-10-17T15:36:38.205174Z",
            "url": "https://files.pythonhosted.org/packages/1e/23/344a79cb375db73729d09bd6cf85599ae9badf3c0caa4d53cdefe17be0ff/radixtarget-4.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5abc58fe12743f4b954e8337f355835b6414e678718394f704606553ffe33343",
                "md5": "20bcf546307dcc578ec82e6b6a2d157d",
                "sha256": "b0f378e14ed456d8cc5ddb69b41a0be4beb0db3f3ff78776961b1eb0f29713cd"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "20bcf546307dcc578ec82e6b6a2d157d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 523693,
            "upload_time": "2025-10-17T15:36:48",
            "upload_time_iso_8601": "2025-10-17T15:36:48.035005Z",
            "url": "https://files.pythonhosted.org/packages/5a/bc/58fe12743f4b954e8337f355835b6414e678718394f704606553ffe33343/radixtarget-4.0.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4458c18ac6185425c2b05c366550b70280879569b6a7a307fda2ab107f4e283",
                "md5": "a2581cae1aa627eee41548c28213f361",
                "sha256": "ac728a29544eaffd2acfa0f662e715ac8175bcb784a23bf8a57b74250a2b50af"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a2581cae1aa627eee41548c28213f361",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 706532,
            "upload_time": "2025-10-17T15:36:57",
            "upload_time_iso_8601": "2025-10-17T15:36:57.760637Z",
            "url": "https://files.pythonhosted.org/packages/c4/45/8c18ac6185425c2b05c366550b70280879569b6a7a307fda2ab107f4e283/radixtarget-4.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5661e0b4aecc2d49eea61fc4d2cfed87ac974f093c52e7bba9e4bce03e48828",
                "md5": "7d8b97d35f0910e9f61ce447cc1594a5",
                "sha256": "5f95301269e30580a4b397fa8a3a188be39da8c28f51c8dd3c59526f05621846"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7d8b97d35f0910e9f61ce447cc1594a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 559788,
            "upload_time": "2025-10-17T15:37:07",
            "upload_time_iso_8601": "2025-10-17T15:37:07.366269Z",
            "url": "https://files.pythonhosted.org/packages/b5/66/1e0b4aecc2d49eea61fc4d2cfed87ac974f093c52e7bba9e4bce03e48828/radixtarget-4.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a019cc81a2d8349ae674995203bcc357993113fd97d31432788fdc8a7bd453c",
                "md5": "9d23cc62c16fcd5749b5c5b70e7374c7",
                "sha256": "53a9871649d578af0e7d99e83eaca9375e81cd6a1060de0e7e3da350959cf838"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9d23cc62c16fcd5749b5c5b70e7374c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 693545,
            "upload_time": "2025-10-17T15:37:40",
            "upload_time_iso_8601": "2025-10-17T15:37:40.920999Z",
            "url": "https://files.pythonhosted.org/packages/0a/01/9cc81a2d8349ae674995203bcc357993113fd97d31432788fdc8a7bd453c/radixtarget-4.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b01d1c5432de7ee1e975afa29b169e5762f568c92d2b13cecad6f0e79740a87f",
                "md5": "b6d7ca8849d597327c8e5917b784426a",
                "sha256": "f80e2ad358d5c71b4b4d283237401726d21929e844f583492ebde24e1ad68a4f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b6d7ca8849d597327c8e5917b784426a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 787302,
            "upload_time": "2025-10-17T15:37:53",
            "upload_time_iso_8601": "2025-10-17T15:37:53.313767Z",
            "url": "https://files.pythonhosted.org/packages/b0/1d/1c5432de7ee1e975afa29b169e5762f568c92d2b13cecad6f0e79740a87f/radixtarget-4.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8109cff2dc5b18f95154a6db709a1fd7d578934318a7b561caeb37af4ae6f5d9",
                "md5": "cab18847d0e81f5c08a3976e65901dbb",
                "sha256": "50f8466a85109bc4e73686794bd45bd822462832463909287019cb0c934cd425"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cab18847d0e81f5c08a3976e65901dbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 719398,
            "upload_time": "2025-10-17T15:38:03",
            "upload_time_iso_8601": "2025-10-17T15:38:03.410530Z",
            "url": "https://files.pythonhosted.org/packages/81/09/cff2dc5b18f95154a6db709a1fd7d578934318a7b561caeb37af4ae6f5d9/radixtarget-4.0.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c192a90dc77b8242d1fa54180e789deb1a42b4cfc93a961b33a6398f044ae06a",
                "md5": "266d8e7186403bd02d2c09c566c69657",
                "sha256": "6d6e40a60ce085d2d072b87c7e6ad9d1a63b317a30ced333c4c915cee29cea0b"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "266d8e7186403bd02d2c09c566c69657",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 686629,
            "upload_time": "2025-10-17T15:38:14",
            "upload_time_iso_8601": "2025-10-17T15:38:14.694019Z",
            "url": "https://files.pythonhosted.org/packages/c1/92/a90dc77b8242d1fa54180e789deb1a42b4cfc93a961b33a6398f044ae06a/radixtarget-4.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16dbed0ec4b01c1cfb44c61fd8616c18f7f2b561173ac8023609ceae9a5a7185",
                "md5": "2773e9ae8efb0712fd796bb33c7687ab",
                "sha256": "2479871ff885a7780a10b4b3b6359333499132c093117754c55992a02e4d2924"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2773e9ae8efb0712fd796bb33c7687ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 367321,
            "upload_time": "2025-10-17T15:38:24",
            "upload_time_iso_8601": "2025-10-17T15:38:24.900960Z",
            "url": "https://files.pythonhosted.org/packages/16/db/ed0ec4b01c1cfb44c61fd8616c18f7f2b561173ac8023609ceae9a5a7185/radixtarget-4.0.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c659157b282720a036d095a5ce6a1e409fb9572f16a25e3e31da43a9091a8ab0",
                "md5": "6a380a3958943db637b41f6926b296f7",
                "sha256": "025fe5840250746a788a75670e3c36d76bbcf581819e58774d1febcbbc722582"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6a380a3958943db637b41f6926b296f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 474577,
            "upload_time": "2025-10-17T15:37:31",
            "upload_time_iso_8601": "2025-10-17T15:37:31.369171Z",
            "url": "https://files.pythonhosted.org/packages/c6/59/157b282720a036d095a5ce6a1e409fb9572f16a25e3e31da43a9091a8ab0/radixtarget-4.0.1-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f8fe6103f3dff4cc185db13028fb3c0d6f055d27dc559a06a78ef4bfae78dfc",
                "md5": "929b12360af12402b82aa4d5a0fd5964",
                "sha256": "d9817ce730e0fc62eba8c8c3a67be05ffbcf3384739fe1c740a4f5e44abcc004"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "929b12360af12402b82aa4d5a0fd5964",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 521650,
            "upload_time": "2025-10-17T15:37:25",
            "upload_time_iso_8601": "2025-10-17T15:37:25.109672Z",
            "url": "https://files.pythonhosted.org/packages/3f/8f/e6103f3dff4cc185db13028fb3c0d6f055d27dc559a06a78ef4bfae78dfc/radixtarget-4.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11386309e688a3bb7e77be563aec5f0246fedcac8d21e7846bfa2a1af8566a30",
                "md5": "da99be9ffc95c4689a84b5935057b5cb",
                "sha256": "e3767a5d2a46fc00803e4ea28a2b74d3b3b2f8d168b08ff3417ee1aeb6e01bd7"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "da99be9ffc95c4689a84b5935057b5cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 545539,
            "upload_time": "2025-10-17T15:37:17",
            "upload_time_iso_8601": "2025-10-17T15:37:17.954206Z",
            "url": "https://files.pythonhosted.org/packages/11/38/6309e688a3bb7e77be563aec5f0246fedcac8d21e7846bfa2a1af8566a30/radixtarget-4.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05a83fbfea59503635c3198b8e4a3a5070316495a1385d85ea5f982c07962698",
                "md5": "4381aef42db0c096a6b266d52f4146d2",
                "sha256": "564dc1c475591bdf107e311689a80391f1cb183ec5c0739a133a3be389ed33b4"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "4381aef42db0c096a6b266d52f4146d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 361222,
            "upload_time": "2025-10-17T15:38:26",
            "upload_time_iso_8601": "2025-10-17T15:38:26.801546Z",
            "url": "https://files.pythonhosted.org/packages/05/a8/3fbfea59503635c3198b8e4a3a5070316495a1385d85ea5f982c07962698/radixtarget-4.0.1-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ea9ba96b0d0bfc358f87ebf5861062d9ffd8a2c9cb0236f86483f604e84d0cb",
                "md5": "6a752e41db85c413c76a3546f9130cfb",
                "sha256": "5579dd99fbc302d5b464807e8063a497a3e67cd7b216306349f143222ebede35"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6a752e41db85c413c76a3546f9130cfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 514368,
            "upload_time": "2025-10-17T15:36:39",
            "upload_time_iso_8601": "2025-10-17T15:36:39.196722Z",
            "url": "https://files.pythonhosted.org/packages/3e/a9/ba96b0d0bfc358f87ebf5861062d9ffd8a2c9cb0236f86483f604e84d0cb/radixtarget-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7eb7c964fb0a9b48fea8a3cf946ea323bb981ce71dec0ddd8bac4cb4e96ec49",
                "md5": "64aa42d93d6249fc78abc5499f2339e8",
                "sha256": "a97898e2dccae637eebb93695b0a78b8b1db50062cac89aec93307f6ce4e0972"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "64aa42d93d6249fc78abc5499f2339e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 525576,
            "upload_time": "2025-10-17T15:36:49",
            "upload_time_iso_8601": "2025-10-17T15:36:49.321616Z",
            "url": "https://files.pythonhosted.org/packages/f7/eb/7c964fb0a9b48fea8a3cf946ea323bb981ce71dec0ddd8bac4cb4e96ec49/radixtarget-4.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "028dae457cc7aa3b4657e985b4a0f252e018a43773849fc1cd954202b6bf1af8",
                "md5": "5c2ba6540cc430ee75a9daf669a51ebf",
                "sha256": "87142957ae8efe793244e57f4cdcca442f9cd23d04309695c4697bd0e3f3f69c"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5c2ba6540cc430ee75a9daf669a51ebf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 705965,
            "upload_time": "2025-10-17T15:36:58",
            "upload_time_iso_8601": "2025-10-17T15:36:58.766097Z",
            "url": "https://files.pythonhosted.org/packages/02/8d/ae457cc7aa3b4657e985b4a0f252e018a43773849fc1cd954202b6bf1af8/radixtarget-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cfccb8ac49987002037839250e8a96254a0e79dd2c176241a4b88b0ed795d0c",
                "md5": "2e808edc1685049640401f06db0ea361",
                "sha256": "6b41712273a68db841cf18d9ac31621f99e5ae81ea53aa650f0bf408da8d2319"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2e808edc1685049640401f06db0ea361",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 560125,
            "upload_time": "2025-10-17T15:37:08",
            "upload_time_iso_8601": "2025-10-17T15:37:08.634790Z",
            "url": "https://files.pythonhosted.org/packages/7c/fc/cb8ac49987002037839250e8a96254a0e79dd2c176241a4b88b0ed795d0c/radixtarget-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "627ad34810f9368dc45ed2496a2cc0bae1689090923324ecfc4600da21297059",
                "md5": "53fefbd7d8b442a62e3e991b7b6d4e27",
                "sha256": "6273930217b5a7a4f4c924b7e9d16c5b8f7095d5c9d6c047adeebf87e928bd2a"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53fefbd7d8b442a62e3e991b7b6d4e27",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 523408,
            "upload_time": "2025-10-17T15:37:26",
            "upload_time_iso_8601": "2025-10-17T15:37:26.242136Z",
            "url": "https://files.pythonhosted.org/packages/62/7a/d34810f9368dc45ed2496a2cc0bae1689090923324ecfc4600da21297059/radixtarget-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "457f3864bdda08ee9f4c34cc2f9b0ba9b6d0757d937f514139d47eb83f2eca53",
                "md5": "7011c854a4231a56290b8f762ad3d019",
                "sha256": "f6643c26866a3772cd36f0a202a83218ca7e49d1c99ee8e7e3d98bea8ae15984"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7011c854a4231a56290b8f762ad3d019",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 547560,
            "upload_time": "2025-10-17T15:37:18",
            "upload_time_iso_8601": "2025-10-17T15:37:18.913348Z",
            "url": "https://files.pythonhosted.org/packages/45/7f/3864bdda08ee9f4c34cc2f9b0ba9b6d0757d937f514139d47eb83f2eca53/radixtarget-4.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02c779b6522766d186c97580f6839e739a201639cb41a3987a34e390c18a8499",
                "md5": "c5b265059f4c435bbe16a89778561de2",
                "sha256": "f3013c3c0172adf910e1e6771e364c4a933435c4c34a8f9d476d905f592c4ad6"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c5b265059f4c435bbe16a89778561de2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 694690,
            "upload_time": "2025-10-17T15:37:42",
            "upload_time_iso_8601": "2025-10-17T15:37:42.221047Z",
            "url": "https://files.pythonhosted.org/packages/02/c7/79b6522766d186c97580f6839e739a201639cb41a3987a34e390c18a8499/radixtarget-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a0417707bc733dc41507725777c5fb41d2423aed867e5c314e7a02ecca2a0a0",
                "md5": "58a3033ced7216f9665ce455af866f8a",
                "sha256": "32071e569f55a2b80726e8621218433130d758343ff5d405a94228ed6078dd75"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "58a3033ced7216f9665ce455af866f8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 789404,
            "upload_time": "2025-10-17T15:37:54",
            "upload_time_iso_8601": "2025-10-17T15:37:54.633152Z",
            "url": "https://files.pythonhosted.org/packages/6a/04/17707bc733dc41507725777c5fb41d2423aed867e5c314e7a02ecca2a0a0/radixtarget-4.0.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6996abbd66159d1e4a78299c9fddbafc7091d52572d9bcb1c44d6d284b9b16c4",
                "md5": "5dfe5e51b527d0b41b4abaadd68ce47e",
                "sha256": "cff104c1438d62104ff53cc8c2394f3b919fe2838c2280ac7a46627a2dd6513c"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5dfe5e51b527d0b41b4abaadd68ce47e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 720976,
            "upload_time": "2025-10-17T15:38:05",
            "upload_time_iso_8601": "2025-10-17T15:38:05.824319Z",
            "url": "https://files.pythonhosted.org/packages/69/96/abbd66159d1e4a78299c9fddbafc7091d52572d9bcb1c44d6d284b9b16c4/radixtarget-4.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bc5190e9c244be0f39882a5839b2d77776de6164ac14cb3f845e4464acaedce",
                "md5": "45a8b21ebae9b3d76854f7748a8fb203",
                "sha256": "f5a1179f5849b503b5e0bc62b8d0e871f10e4d57b113e57be6d9cbdeb1644d1f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45a8b21ebae9b3d76854f7748a8fb203",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 688566,
            "upload_time": "2025-10-17T15:38:15",
            "upload_time_iso_8601": "2025-10-17T15:38:15.900103Z",
            "url": "https://files.pythonhosted.org/packages/6b/c5/190e9c244be0f39882a5839b2d77776de6164ac14cb3f845e4464acaedce/radixtarget-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e07f5f89c448c0d6eb1522831fdc9d5c7cf5cd9734b473e4eefbca73e7f5e10a",
                "md5": "49f16c16a83dbed0bb55d993ce74e427",
                "sha256": "224e99030530d8178f5824f401ce57cca676946d973c1564f4941be5d0301498"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "49f16c16a83dbed0bb55d993ce74e427",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 368007,
            "upload_time": "2025-10-17T15:38:25",
            "upload_time_iso_8601": "2025-10-17T15:38:25.860254Z",
            "url": "https://files.pythonhosted.org/packages/e0/7f/5f89c448c0d6eb1522831fdc9d5c7cf5cd9734b473e4eefbca73e7f5e10a/radixtarget-4.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ece503ea1406565a1d653afd699815abebb4c5971ae562aa58af7abfa8520fa2",
                "md5": "e2f502564ddf2b3c88e5900e7ffbfc3e",
                "sha256": "5e9d21d581824f10a835ed9b747e2297c6654dc397117696a8f96b1fd4c52ba0"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2f502564ddf2b3c88e5900e7ffbfc3e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 515824,
            "upload_time": "2025-10-17T15:36:40",
            "upload_time_iso_8601": "2025-10-17T15:36:40.586109Z",
            "url": "https://files.pythonhosted.org/packages/ec/e5/03ea1406565a1d653afd699815abebb4c5971ae562aa58af7abfa8520fa2/radixtarget-4.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "850239db6dd72cb5e5503dfa7906308ec2aee8d63a7c94c62f20e534daebc65e",
                "md5": "aff5f3d88fcb243d679db874aa86835b",
                "sha256": "2e20276c8ebdb4448a16c24d2bcd0149363628a975864e83d45446de987c580e"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "aff5f3d88fcb243d679db874aa86835b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 527986,
            "upload_time": "2025-10-17T15:36:50",
            "upload_time_iso_8601": "2025-10-17T15:36:50.290684Z",
            "url": "https://files.pythonhosted.org/packages/85/02/39db6dd72cb5e5503dfa7906308ec2aee8d63a7c94c62f20e534daebc65e/radixtarget-4.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "049ec285ee49c28444282360cecd1e27be4121bccd6077199b639f73bac9e70f",
                "md5": "20b10668a9b265fec996b818ae5af329",
                "sha256": "7bd5cafa81ce0f9441c11b167fe23614db374c1d705fde4d52c828a9090bb5a0"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "20b10668a9b265fec996b818ae5af329",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 706899,
            "upload_time": "2025-10-17T15:36:59",
            "upload_time_iso_8601": "2025-10-17T15:36:59.736659Z",
            "url": "https://files.pythonhosted.org/packages/04/9e/c285ee49c28444282360cecd1e27be4121bccd6077199b639f73bac9e70f/radixtarget-4.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "292eb9e23068909f259f2fee4c0c47742e29adbac0262d487ab5164220aaf51b",
                "md5": "049cd086f3bf43d30c38315bc5903d92",
                "sha256": "766873a07626bfe91b8b4e6bd354593fc25d589acd59e31bb0eba554567c8140"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "049cd086f3bf43d30c38315bc5903d92",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 561283,
            "upload_time": "2025-10-17T15:37:09",
            "upload_time_iso_8601": "2025-10-17T15:37:09.601925Z",
            "url": "https://files.pythonhosted.org/packages/29/2e/b9e23068909f259f2fee4c0c47742e29adbac0262d487ab5164220aaf51b/radixtarget-4.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f15177347fb13871e9ccd79eb0e7006fd12edfb6e4650611ed29dddd4408dbc5",
                "md5": "95f242387a931a39304ebc2049e097a9",
                "sha256": "da61c5c94f11754f5862e3b655f4365fac23e9981cd13e5b9eb241b142e30351"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "95f242387a931a39304ebc2049e097a9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 695919,
            "upload_time": "2025-10-17T15:37:43",
            "upload_time_iso_8601": "2025-10-17T15:37:43.337915Z",
            "url": "https://files.pythonhosted.org/packages/f1/51/77347fb13871e9ccd79eb0e7006fd12edfb6e4650611ed29dddd4408dbc5/radixtarget-4.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94d14b61ce5c1439aab7ea174eb60753ab400fb9c6d03059b1848ec32e8827a1",
                "md5": "72755afe2615657c832291f94c4b85d1",
                "sha256": "d82aa7524bf5065d44f6399c8b19628c71faef5bbcd3b78f86540d44a385df55"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "72755afe2615657c832291f94c4b85d1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 791744,
            "upload_time": "2025-10-17T15:37:55",
            "upload_time_iso_8601": "2025-10-17T15:37:55.975000Z",
            "url": "https://files.pythonhosted.org/packages/94/d1/4b61ce5c1439aab7ea174eb60753ab400fb9c6d03059b1848ec32e8827a1/radixtarget-4.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65517b4d2e88e21d65247e5a9ac7a04b0b519db8317aecefe339031441853f45",
                "md5": "eb62cafc51f07e501a623b5c019d35c8",
                "sha256": "08c7e499117c4f3b9a33842512516372fba2fd5eba77f260621c49d0ad7a33b7"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "eb62cafc51f07e501a623b5c019d35c8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 722321,
            "upload_time": "2025-10-17T15:38:06",
            "upload_time_iso_8601": "2025-10-17T15:38:06.981973Z",
            "url": "https://files.pythonhosted.org/packages/65/51/7b4d2e88e21d65247e5a9ac7a04b0b519db8317aecefe339031441853f45/radixtarget-4.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "830a67ffd28e069b8f711308051736b855049d7ae1381de577e59f63ad8f9e91",
                "md5": "7e0a902730055f09dc9668cbb93fdd62",
                "sha256": "ca3fab010a9fb75d89b777e48729735d6a4ee07dd39c228d066d9e08ac4e8fff"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e0a902730055f09dc9668cbb93fdd62",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 689902,
            "upload_time": "2025-10-17T15:38:16",
            "upload_time_iso_8601": "2025-10-17T15:38:16.870692Z",
            "url": "https://files.pythonhosted.org/packages/83/0a/67ffd28e069b8f711308051736b855049d7ae1381de577e59f63ad8f9e91/radixtarget-4.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be492e705fa059f44b6485d7a1efb5d29c14019f79e2227353d717dbb7fef023",
                "md5": "f41cd134a551d0426efc63dee69ca12b",
                "sha256": "b6b48590f44db77358b8a75e16f4180c4f116fe3a3a385cb59182fe5d049897e"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f41cd134a551d0426efc63dee69ca12b",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 514113,
            "upload_time": "2025-10-17T15:36:41",
            "upload_time_iso_8601": "2025-10-17T15:36:41.782038Z",
            "url": "https://files.pythonhosted.org/packages/be/49/2e705fa059f44b6485d7a1efb5d29c14019f79e2227353d717dbb7fef023/radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea23c28d7e31bb0845a8cf29efc13a6e14349a71dd60ef533f4289f10e791f29",
                "md5": "df76f1f4744197f9a991a15001569e1c",
                "sha256": "d623301fe7570a7aac5e97a5a5cafc3c0b8b9907fd49e920eea3f8e166573c9f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "df76f1f4744197f9a991a15001569e1c",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 526873,
            "upload_time": "2025-10-17T15:36:51",
            "upload_time_iso_8601": "2025-10-17T15:36:51.523647Z",
            "url": "https://files.pythonhosted.org/packages/ea/23/c28d7e31bb0845a8cf29efc13a6e14349a71dd60ef533f4289f10e791f29/radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2e6a70445b434a1eecb39ac15e64735f8dcbec145d4666c57a96f2f7a2af97a",
                "md5": "a27b28a093d7c5826708ceaaabaf9024",
                "sha256": "2f8b2cdf163149c6d75dbfcce930949c740d7f9bf7e36828789c7da8adbf3196"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a27b28a093d7c5826708ceaaabaf9024",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 705562,
            "upload_time": "2025-10-17T15:37:00",
            "upload_time_iso_8601": "2025-10-17T15:37:00.911822Z",
            "url": "https://files.pythonhosted.org/packages/a2/e6/a70445b434a1eecb39ac15e64735f8dcbec145d4666c57a96f2f7a2af97a/radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55f63733c72bd2cf94647a988c8aef312a388b339c263cec7104d4bf89a81a14",
                "md5": "181183164557e187718e90fb03e708f8",
                "sha256": "0434be766a177b30d3f962ce1793e634552f17bac3ef0885e9531f9cdefaf82f"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "181183164557e187718e90fb03e708f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 560584,
            "upload_time": "2025-10-17T15:37:10",
            "upload_time_iso_8601": "2025-10-17T15:37:10.864376Z",
            "url": "https://files.pythonhosted.org/packages/55/f6/3733c72bd2cf94647a988c8aef312a388b339c263cec7104d4bf89a81a14/radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76e2c1abd176fb5d32cf5d2fce5d23f3890aa346f1dac54b4653277a80162131",
                "md5": "9b7f1d1541d655f414ca1e3c237d9c46",
                "sha256": "53d17d814737d2e028a4f90464235716f3db0136e526d838edbef23f2c3c022b"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b7f1d1541d655f414ca1e3c237d9c46",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 523362,
            "upload_time": "2025-10-17T15:37:27",
            "upload_time_iso_8601": "2025-10-17T15:37:27.182320Z",
            "url": "https://files.pythonhosted.org/packages/76/e2/c1abd176fb5d32cf5d2fce5d23f3890aa346f1dac54b4653277a80162131/radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3fc097ad7afb109e3e2e54b315806ef3c305db89a53abadd1cf06238787d2445",
                "md5": "3941b4d272f55d7fad6053f06a550d43",
                "sha256": "554358a29f0e1a0a964f17b0a135dcce658baafaf596d89b6fe08b866bd84dad"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3941b4d272f55d7fad6053f06a550d43",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 547262,
            "upload_time": "2025-10-17T15:37:19",
            "upload_time_iso_8601": "2025-10-17T15:37:19.883166Z",
            "url": "https://files.pythonhosted.org/packages/3f/c0/97ad7afb109e3e2e54b315806ef3c305db89a53abadd1cf06238787d2445/radixtarget-4.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f7ed56437f26137fbae5df3f6098e2b4bec6878e587885409bd450821066b0f",
                "md5": "364a2a5e8ca8b07b61b5b1017a63c82f",
                "sha256": "3d6200693bde79b026a14192ddd09f6a0a6e46ac1e18417e4156e3e4b9761b1c"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "364a2a5e8ca8b07b61b5b1017a63c82f",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 694147,
            "upload_time": "2025-10-17T15:37:44",
            "upload_time_iso_8601": "2025-10-17T15:37:44.319221Z",
            "url": "https://files.pythonhosted.org/packages/9f/7e/d56437f26137fbae5df3f6098e2b4bec6878e587885409bd450821066b0f/radixtarget-4.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04dda19c8f433efa56384cbc12303514d6674ebc828ea36c064f2fcf70bc91ad",
                "md5": "ca195eac695a1892655ef434496e749e",
                "sha256": "69553f8f2c6eefe9e265a4ad7fc3c93ae8ac125d77119c85efac3c64069b325d"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ca195eac695a1892655ef434496e749e",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 790825,
            "upload_time": "2025-10-17T15:37:56",
            "upload_time_iso_8601": "2025-10-17T15:37:56.990703Z",
            "url": "https://files.pythonhosted.org/packages/04/dd/a19c8f433efa56384cbc12303514d6674ebc828ea36c064f2fcf70bc91ad/radixtarget-4.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87001d5b629bcf685d4b3ff91743fd8fc62d9e15c9f5ef9bd03fb3bb4bbd4060",
                "md5": "3534453cf140928d3d3079bd90aa7479",
                "sha256": "02d1ce608db9c8fb43fea0b404f28656be7c52e03488a4d002b4254d23e27f48"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3534453cf140928d3d3079bd90aa7479",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 720745,
            "upload_time": "2025-10-17T15:38:08",
            "upload_time_iso_8601": "2025-10-17T15:38:08.004973Z",
            "url": "https://files.pythonhosted.org/packages/87/00/1d5b629bcf685d4b3ff91743fd8fc62d9e15c9f5ef9bd03fb3bb4bbd4060/radixtarget-4.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e096a69aa11ca57ead3c99bd55563cc33150e7cd51964914575872c4d0c10f17",
                "md5": "e7e9fcca4193b378ea1cd70115a6fb74",
                "sha256": "d2fca3b397b32ee03ca7c94674f0d519c0b9b32381aebcbb11cfa3e74dee9f89"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7e9fcca4193b378ea1cd70115a6fb74",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 688481,
            "upload_time": "2025-10-17T15:38:19",
            "upload_time_iso_8601": "2025-10-17T15:38:19.481984Z",
            "url": "https://files.pythonhosted.org/packages/e0/96/a69aa11ca57ead3c99bd55563cc33150e7cd51964914575872c4d0c10f17/radixtarget-4.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f876500888af561305ec9f8c61b3380ed77349450167ad2017909489de14d8e8",
                "md5": "3d0832db22cff36dfc04ff801370ac2e",
                "sha256": "2d93ecf2bdb58881b80b724b40c0cfbddc0067d8bc2adf8c63848cf685e758c0"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d0832db22cff36dfc04ff801370ac2e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 515624,
            "upload_time": "2025-10-17T15:36:42",
            "upload_time_iso_8601": "2025-10-17T15:36:42.798729Z",
            "url": "https://files.pythonhosted.org/packages/f8/76/500888af561305ec9f8c61b3380ed77349450167ad2017909489de14d8e8/radixtarget-4.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55af633a34a023a3487e521334b30e0e960da90b93d3aa7189739e2570dd806a",
                "md5": "72afab74fe44f9aa3bf32c2544d9e32b",
                "sha256": "2547c66a159639241661bae7a16c1401dcc6e45b8e2be8a91c9d5d623e8a2610"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "72afab74fe44f9aa3bf32c2544d9e32b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 528012,
            "upload_time": "2025-10-17T15:36:52",
            "upload_time_iso_8601": "2025-10-17T15:36:52.682885Z",
            "url": "https://files.pythonhosted.org/packages/55/af/633a34a023a3487e521334b30e0e960da90b93d3aa7189739e2570dd806a/radixtarget-4.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "233e086497369057d560813081a1b39b55f71be3ec8da6b99a644449f36a99c2",
                "md5": "6504ce1060278be7543f33f35ffae361",
                "sha256": "4ed93a0203b5cfe58ad615c7594bc68d1e885b222b560a7b61833e21bb1cee09"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6504ce1060278be7543f33f35ffae361",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 708262,
            "upload_time": "2025-10-17T15:37:01",
            "upload_time_iso_8601": "2025-10-17T15:37:01.926147Z",
            "url": "https://files.pythonhosted.org/packages/23/3e/086497369057d560813081a1b39b55f71be3ec8da6b99a644449f36a99c2/radixtarget-4.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06dd5964da8e4c873279a6aeaf9918365b9a7d0bd0577cfd31656e817fb0a849",
                "md5": "360f23dbe0a2b6a3d2995aaf03f7a568",
                "sha256": "8f8ad12c3f72b65b2d46d96a67e1a7ed9836cd66f0663810542ce1ed812f25c5"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "360f23dbe0a2b6a3d2995aaf03f7a568",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 561469,
            "upload_time": "2025-10-17T15:37:11",
            "upload_time_iso_8601": "2025-10-17T15:37:11.838989Z",
            "url": "https://files.pythonhosted.org/packages/06/dd/5964da8e4c873279a6aeaf9918365b9a7d0bd0577cfd31656e817fb0a849/radixtarget-4.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64fb210b733161c148a6cd064ea427b9e946ef535ca43ad8f1fc0184f96018c1",
                "md5": "6caf796ed628e09df5245700b7b5daac",
                "sha256": "4e642b5672a0401c25489e1117eb722e2b3ae1894383c7111c7e5cbb241a0bcd"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6caf796ed628e09df5245700b7b5daac",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 695921,
            "upload_time": "2025-10-17T15:37:45",
            "upload_time_iso_8601": "2025-10-17T15:37:45.875616Z",
            "url": "https://files.pythonhosted.org/packages/64/fb/210b733161c148a6cd064ea427b9e946ef535ca43ad8f1fc0184f96018c1/radixtarget-4.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4707c688e67e1f4417d7070997c7130a727ac149f90cb26bda3f895ed315c13",
                "md5": "befa7df5616570bb6a2b5ee3848db8f7",
                "sha256": "67a5d27329325e4efa8c5bded9939e75ddc811f0e0557210dde4b0aeb03839e8"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "befa7df5616570bb6a2b5ee3848db8f7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 791919,
            "upload_time": "2025-10-17T15:37:57",
            "upload_time_iso_8601": "2025-10-17T15:37:57.968822Z",
            "url": "https://files.pythonhosted.org/packages/f4/70/7c688e67e1f4417d7070997c7130a727ac149f90cb26bda3f895ed315c13/radixtarget-4.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32838b098795cfacbe7bd48ae7c7b4577bc195a51779057638f929e2fcd3db71",
                "md5": "3258a348b5b44c7a27fe7854706b7e1f",
                "sha256": "eaf9c9fb23cde3ca752add42d6b1c39bd60b80828d3b94a44dd3385321c996a4"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3258a348b5b44c7a27fe7854706b7e1f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 721980,
            "upload_time": "2025-10-17T15:38:09",
            "upload_time_iso_8601": "2025-10-17T15:38:09.207945Z",
            "url": "https://files.pythonhosted.org/packages/32/83/8b098795cfacbe7bd48ae7c7b4577bc195a51779057638f929e2fcd3db71/radixtarget-4.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04b7c54c78d1ba51ff374f8a38723568527f2550c6aee039227ba6f4ff1cb082",
                "md5": "d9983a9abaef3f11b93a18e3650aa97d",
                "sha256": "c6faf99616daa62f6a11be51640c0adfc98f014e3c486387daba02f2149743f0"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9983a9abaef3f11b93a18e3650aa97d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 689860,
            "upload_time": "2025-10-17T15:38:20",
            "upload_time_iso_8601": "2025-10-17T15:38:20.853908Z",
            "url": "https://files.pythonhosted.org/packages/04/b7/c54c78d1ba51ff374f8a38723568527f2550c6aee039227ba6f4ff1cb082/radixtarget-4.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40d067eebefb45ea53453767a3e6f1b790110c356b6225c02840112b4ef21b18",
                "md5": "16d4dabe9423cba1b34f3f8404f64ebb",
                "sha256": "3f8bddc91e7236536bfeca9971154a30afe246125f30f88388ad892900a7c155"
            },
            "downloads": -1,
            "filename": "radixtarget-4.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "16d4dabe9423cba1b34f3f8404f64ebb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 706749,
            "upload_time": "2025-10-17T15:32:54",
            "upload_time_iso_8601": "2025-10-17T15:32:54.388115Z",
            "url": "https://files.pythonhosted.org/packages/40/d0/67eebefb45ea53453767a3e6f1b790110c356b6225c02840112b4ef21b18/radixtarget-4.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-17 15:32:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "blacklanternsecurity",
    "github_project": "radixtarget",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "radixtarget"
}
        
Elapsed time: 1.74901s