High-performance XML to dict conversion library using Rust and PyO3
Project description
xmltodict_rs
High-performance XML to dict conversion library using Rust and PyO3
A Rust-based implementation of xmltodict that provides significant performance improvements while maintaining API compatibility.
Features
- High Performance - 5-10x faster than pure Python implementation
- Full Compatibility - Drop-in replacement for
xmltodict - Type Safe - Includes comprehensive type stubs (
.pyifiles) for better IDE support - Safe - Built with Rust for memory safety and security
- Easy to Use - Simple installation and familiar API
Versioning
The major and minor version numbers of xmltodict_rs match those of the original xmltodict library. This ensures that the behavior is consistent with the corresponding version of xmltodict, making it a true drop-in replacement. Patch versions may differ for Rust-specific fixes and optimizations.
For example:
xmltodict_rs 0.13.xmatches the behavior ofxmltodict 0.13.xxmltodict_rs 0.14.xmatches the behavior ofxmltodict 0.14.x
Installation
pip install xmltodict-rs
Or with uv:
uv add xmltodict-rs
Quick Start
import xmltodict_rs
# Parse XML to dictionary
xml = '<root><item id="1">value</item></root>'
result = xmltodict_rs.parse(xml)
print(result)
# {'root': {'item': {'@id': '1', '#text': 'value'}}}
# Convert dictionary back to XML
data = {'root': {'item': 'value'}}
xml = xmltodict_rs.unparse(data)
print(xml)
# <?xml version="1.0" encoding="utf-8"?>
# <root><item>value</item></root>
Type Hints Support
Full type annotations are included for better IDE support and static type checking:
from typing import Any
import xmltodict_rs
# IDE will provide autocomplete and type checking
result: dict[str, Any] = xmltodict_rs.parse("<root><item>test</item></root>")
# Type checkers like mypy will catch errors
xmltodict_rs.parse(123) # Error: Expected str or bytes
API Reference
parse()
Convert XML to a Python dictionary.
xmltodict_rs.parse(
xml_input, # str or bytes: XML data to parse
process_namespaces=False, # bool: Process namespace prefixes
namespace_separator=":", # str: Separator for namespace and tag
disable_entities=True, # bool: Disable XML entities for security
process_comments=False, # bool: Include XML comments in output
xml_attribs=True, # bool: Include attributes in output
attr_prefix="@", # str: Prefix for attribute keys
cdata_key="#text", # str: Key name for text content
force_cdata=False, # bool: Always wrap text in dict
cdata_separator="", # str: Separator for multiple text nodes
strip_whitespace=True, # bool: Remove whitespace-only text
force_list=None, # Control list creation
postprocessor=None, # Callback for transforming data
item_depth=0, # Internal depth tracking
comment_key="#comment", # str: Key name for comments
namespaces=None # dict: Namespace URI mapping
)
unparse()
Convert a Python dictionary back to XML.
xmltodict_rs.unparse(
input_dict, # dict: Dictionary to convert
encoding="utf-8", # str: Character encoding
full_document=True, # bool: Include XML declaration
short_empty_elements=False, # bool: Use <tag/> for empty elements
attr_prefix="@", # str: Prefix identifying attributes
cdata_key="#text", # str: Key containing text content
pretty=False, # bool: Format with indentation
newl="\n", # str: Newline character
indent="\t", # str: Indentation string
preprocessor=None # Callback for transforming data
)
Performance
Based on benchmarks with various XML sizes:
| Operation | Small (0.3KB) | Medium (15KB) | Large (150KB) |
|---|---|---|---|
| Parse | ~8x faster | ~6x faster | ~5x faster |
| Unparse | ~10x faster | ~8x faster | ~7x faster |
Development
Setup
# Install dependencies
uv venv
uv sync
# Build the Rust extension
just dev
# Run tests
just test
# Run benchmarks
uv run python benches/accurate_benchmark.py
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xmltodict_rs-0.13.1.tar.gz.
File metadata
- Download URL: xmltodict_rs-0.13.1.tar.gz
- Upload date:
- Size: 48.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d097afb24e5c4eae391725cdd4735842cac14f60df4a127cacf0058edccc7611
|
|
| MD5 |
312bcf49c340b00e2b28767fca667ec1
|
|
| BLAKE2b-256 |
54dbae03bb3f8a5ea1785c7c6f4cd6856d5c5314a9937d3170679bcf50f02da7
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 184.2 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c80b515c87e50dd0324e21f806302e7f8316669872dd1baf3309e661fb135fed
|
|
| MD5 |
6ad4c5ad3c93ab3aa60cb1a2b7bde2a4
|
|
| BLAKE2b-256 |
9100fd803b34dbda14962ca56e2ce845e63ffd125ae1707c767b4c2f2a5a7378
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 415.3 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdab75e9bde202dc1a783a50af7f756233095a34957020da8ec66f322e695a3c
|
|
| MD5 |
d0d2f41b372a8aa51199ab5b5897bf13
|
|
| BLAKE2b-256 |
627997f2f1432e0f9320762a6cbfe7f9d50c6719e798be585b297206b0dd437d
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 439.9 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1869dcc0e45f7d633eb265d1b19d080d10c8ed60378fcad8b25674b916e4ce5
|
|
| MD5 |
b7cea46c78a9b0c4ee2f6d4f2a9ab84d
|
|
| BLAKE2b-256 |
a62854933f181574324de9ea04569f045e6ea0eabe4b558c748a03ece5f5480b
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 510.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f054a5be1b779debcaa8a483384c6ed5ea08b450715cc4640d274433ffb90d7
|
|
| MD5 |
656c07c34478a91dd2cdeeaaa559462b
|
|
| BLAKE2b-256 |
3f3ad4c4743a2c6638523f0056abb54dbf846fd26c13640219d382fb3e8facb2
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 410.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe3fac67a36704d79ba5f465417b19a158f1a24997e1634acd5da2fd119f84a4
|
|
| MD5 |
05a22e22adc20e00e850b5850647f330
|
|
| BLAKE2b-256 |
4ac27fb7b4cac911c266d329cfae360eba4167013ed6e0d2b88c2b50f9a0975c
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 288.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddecf6ab5e71c9e382b69e0f95f9dcba2dc1301649e05e3b5a484cdcd4a58721
|
|
| MD5 |
54ddc9649413830a0508ad7099fc78eb
|
|
| BLAKE2b-256 |
4a8ea017936ed107e16a2411ec3349cd5aed024ee35789f591f35087df56d134
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 284.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edecf73448054c984899cf46cf5c9127a3b1da9fe863aee2b66388a24f27f3f9
|
|
| MD5 |
e81100adde827fe441cd77cf740a6614
|
|
| BLAKE2b-256 |
164cde9afb99a31afa8c1eb4432990fe85bf5df8731ff658fb28ab8e2343fd54
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 261.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02c00c9b7dc7025ca0ad8e69d05ba6e3037cf974fae1330c9bb8b57837dc31b2
|
|
| MD5 |
1ebf132f3f6a7eb46e7ae61d2fceacdb
|
|
| BLAKE2b-256 |
699e85d43a14fb98f9ed6a55421004549e4e8fc6d91ded249b8e11a421724602
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 241.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86589e3b8219556b1b33b57e11cbd5570f981d2d5a3a0e1e134ea7dc8a0b60ba
|
|
| MD5 |
445a9fdf8bd5b9781f1753b0df1e868a
|
|
| BLAKE2b-256 |
556f44accd00889fffdbafbe495d898b3cff3822801168ed6182d49c72082de3
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 226.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
097a16da20194865d64e518b15c32f33773a3514de65050fa651a4cac9342557
|
|
| MD5 |
511ee067bcfda35345d7cd10b39da0da
|
|
| BLAKE2b-256 |
a45af3acedf853b1cc4a46045585a185e411c2fe266bfe595b191d572dc01cab
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 256.2 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a33b6e08d189a1c8c1a721db5b6ba19b4850edc5cfbcea3e4391d1228cb9e616
|
|
| MD5 |
9fec6694ca42baee59883d187c708701
|
|
| BLAKE2b-256 |
9c1b5f7e0f1cfb9edaca921c204cbbaffbb431cbc1fbca73859cfc27ec58929a
|
File details
Details for the file xmltodict_rs-0.13.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 255.6 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b63c1f98a97a0aa54b876498bd58df4f37162b219651496f69054775ac0e814
|
|
| MD5 |
6fa8d06d7a756a30d7c06004fe865f8d
|
|
| BLAKE2b-256 |
94108fb6ea14942b05935709539a868947e0c4029e3380a33b92fc18b66bd053
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 184.5 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e098b6c5e84df680aafc2841bb9712f558cb1c4a2dd60efdc48c4130b70419e6
|
|
| MD5 |
c2d7ade06d5f42fbb381d05cfeba4518
|
|
| BLAKE2b-256 |
62d7655be648a3fb5a3ff5ba16cd5744aa1390517ce74672cfeb368034994fe3
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 415.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fa8a6726e4d8a44846c0cb3a6ef77ad39d5196b3058cab1e1e38792fdbdfe86
|
|
| MD5 |
54fdab465a89a2ee588958337ffa0ea5
|
|
| BLAKE2b-256 |
cdb5064183d4efc5f1f23a4dce6392a3cc36825ef1a30b57c00e2a6b4f9b410f
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 440.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b64d41764c7661eb69ac01ce1714905cdb82694e004391c53ef3dc09b5e89db
|
|
| MD5 |
22653d349a61d5514660cb3f4de94fac
|
|
| BLAKE2b-256 |
ca425c30385fd956b676a497268e05c849bfcc35b87c61f73425d2ba7c2f0479
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 511.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13c5aa8ae2956549a22941269f5541b6c4bc0abc290b11d05008a73ce9341c8c
|
|
| MD5 |
0fce444ba261416f6f33aacbceca3987
|
|
| BLAKE2b-256 |
3acfec1dfd51587bb3635311f79e3702f79c9a62907236657b06f9caedf3beb3
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 410.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fc46c5ebcd17be57e41e32e7bae8eea2bd496683e02562c5cfae7a914ec93c1
|
|
| MD5 |
d432acd055d647f991f7ac1d60508f71
|
|
| BLAKE2b-256 |
8a78f3b343ca1d28a8a1095872ded6d6667ae1f6e03ce6dc8dbfa816082ade8f
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 288.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cd32b7cb80f80f5220c987844dbb5a76946d4e1879f1949aeae20bf7a832e19
|
|
| MD5 |
58671fcaa11c200ab3e408c2db848ebb
|
|
| BLAKE2b-256 |
57298fc7bde5c971c8f4d0ad5268d9681534660132d288f086b36b286439b1c3
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 284.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b49d7a74303aff4d4e208aa9a36d2180e21b4ad75a7dc92f8d13e8f35e6b18c4
|
|
| MD5 |
d9a9f0d19670ca47d5b8b1da7e857cf5
|
|
| BLAKE2b-256 |
336cfe75d2717a1d53863bad49ffc0f2f8ede162fe2dac1e1661852b4dcc743b
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 262.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0827f4e062e4a207258644fa2251a8564e6aeb00cc8c280fc2399def07dd9a62
|
|
| MD5 |
b788aaa2d8e98af1f44d558e550070ad
|
|
| BLAKE2b-256 |
d6028ec8c414b896446beac9ce73d57e7295e298fdee9912588fda3b0dc40cc8
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 242.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea89c729eb194cb6cb7e8f1c4c5930d2f5386d7994b256eb141a3d2eb7efab17
|
|
| MD5 |
8da2268d85537ce3fc71fa051994d3af
|
|
| BLAKE2b-256 |
c3ee9d36f487a2d834b8cb05f95bf6a06d141175141861bfc3eb4c297c2f6e82
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 227.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51aa36cbce30c35c3be494d5512952b49371f640127ec5632189849bb8cab104
|
|
| MD5 |
dc309fe530e43d11973bffd2db070571
|
|
| BLAKE2b-256 |
d61713b72d2ece93035c52eb5bf208621528a8b836a122db74791701101150d3
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 256.5 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1834a6fa1dfdd77d9efa403e1e4feaa75e60fd87fb8cfe3cc353d98394a047a
|
|
| MD5 |
456b430c68780b5d44bdd812a6cf39f4
|
|
| BLAKE2b-256 |
bbb9989526d640271c0b371850b57933d66a3405d6eb2d17ad47092eb9ae880c
|
File details
Details for the file xmltodict_rs-0.13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 255.7 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cde40a4655da536e0944bb09e572e85c0c3f64539c1abf865df0033258635f76
|
|
| MD5 |
386c399645673ba707309cb7265569ae
|
|
| BLAKE2b-256 |
c02761fd045d65d251bc8f613c21f6b2621460428887218e664225ad6e9effaf
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 179.4 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f1a25c3b03d6fd74b15c145f6adb3b70dfbf7e1c21bb892c9328bf7d05211bf
|
|
| MD5 |
eb97a1f7f4f05d9590583748723d2480
|
|
| BLAKE2b-256 |
d686a01b87912534fe39bd4d901d3624fbac3eb7915f67a9b4b4251f548da633
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-win32.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-win32.whl
- Upload date:
- Size: 128.7 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b90de6bb2baae8163091b4c5b2deb5e4f796334ba3e4d20dc6d862c7535f220
|
|
| MD5 |
6d560d690821e87fd0aca5741541f2b5
|
|
| BLAKE2b-256 |
62705370ccdb8e3dfc7be5b50b8a3937216f6c0f8beccf5ff47e9f45339e68ec
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 411.3 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54b5231443463f1d237d300d89c7c392689d80059321f82c4314ca3c39d37f16
|
|
| MD5 |
ef969bafbe2e1d8bba6e929f0783267b
|
|
| BLAKE2b-256 |
8e7dc426221edf8880c6bbdce314deb6b4b7f45f3ff87953d73012c18ac4f7ea
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 435.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
295174883a516aa8fbf6e56f082ed45a280de1375d25cb8c30228750eb9f3eb6
|
|
| MD5 |
81aab10303a0191b98fdd73d954c5937
|
|
| BLAKE2b-256 |
50ab9ecaf7be3d2bc23aee9c262cdceb35684bc03db8ace0cf95f88f5b742cee
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 505.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c22a5525fe9716aead6db15db52f7977a2d92b9e7a31f5ce4c6fc5630f8482fb
|
|
| MD5 |
325a61be225173ee45bae4bb0cc81747
|
|
| BLAKE2b-256 |
5e3a33b6f74768456da2d1b75b6f898f90b762c12661f93efc2842638f3a9544
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 406.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b91289e83423fb5669800d2cd6b50746dc3c3ed7de04fcd37b0c4e6b35271c7d
|
|
| MD5 |
33e1a6cb64dd97fb86187809238bfdb4
|
|
| BLAKE2b-256 |
9d700fd07c08b695197a5919ebcc44e066f202130d10a32eaf82cf99b5c7fba7
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 283.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c1ddb23432c3fff86c809e51a8b9eb06c44e54800d41887fdea63b6f6ddd027
|
|
| MD5 |
04162cf6f343db4c072b62adbe93e877
|
|
| BLAKE2b-256 |
4874daf3a143136a5175cd0313d0d82618bc94aff435baf92470c9c8f0299924
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 280.1 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
896a0e3c6329dd6d4fa2fa9beec8fcfc82df15f1ac77b64dc177d7e1089ec5eb
|
|
| MD5 |
b1f7cb593933fb8c5315b377ca41f656
|
|
| BLAKE2b-256 |
fc441b8f0975519522da6e2a9755d72deee546eef42e4793561f20e1fc103af3
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 257.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a1262ce4c0aae8f4e1cf19902d8610cef9da375b1022e0030b2897d1b3ddff5
|
|
| MD5 |
7dbee78d45551c73310fd2af933e5be9
|
|
| BLAKE2b-256 |
2a2ea2c99c80289bba565156c4f1243a9c631106a2a0937b2b1cdc4a321d74f4
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 236.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
857b11b22a57d4613f734bdd5194ef181d92267299e0f60f81f869ae53522b4f
|
|
| MD5 |
23c036d5e84e5e42df5297a53f109555
|
|
| BLAKE2b-256 |
eeaf906012dcc99d80318c18b1ad0d4c7bb04eea4eb835f16d201293281eb447
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 222.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b754a4bc0a21274a4e4c9a24a7b83f7340d34523f7766d23c532de563b21574
|
|
| MD5 |
ff7f3a7e1286dac6598fb5d060bd8406
|
|
| BLAKE2b-256 |
75181992c81148577d4738a466bc5f38b4997ec9cd4fd4eeb5bda445a572e7f5
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 252.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25df9d22eafd735176488b162078fd0540cab6ee2ecbfcd2527e14b4c73f5702
|
|
| MD5 |
b65a8b85cf563c80aaa6d659f91acaf0
|
|
| BLAKE2b-256 |
800e8adaae120ad5739ec812cfc759e6a3635b5dba6041f90d7caee362eda264
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 252.1 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d2e6ad6aa86816ca1eb8066747ec459d8e7145bb71135a8c71f5e9d237e2d63
|
|
| MD5 |
669335a04543da9d338a422758ccd467
|
|
| BLAKE2b-256 |
75b4c7a3163839b11fe39e0a71d117dec9f947b8a1c1ba231abdea6edc69f3d3
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 181.1 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b916c930dbf658ead5df47c9fed584841a321383c20d84c14eae6230ce7a5dc8
|
|
| MD5 |
008cb57b20c53de76c6ce9531781a149
|
|
| BLAKE2b-256 |
cde9e57392b75f7595c42910cd55bc5bd800693f0cb58886373d32e5a8adaaa4
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-win32.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-win32.whl
- Upload date:
- Size: 129.9 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75755fc348694bcfea341515603c17580cf649f262d9e3b202986889ebf3c987
|
|
| MD5 |
47be30d9adda63e205ea81ae872a516d
|
|
| BLAKE2b-256 |
948db9cc818badba97cc21354273440ad15eb64e0db8532480424547e5e7c89a
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 412.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c965b7c4e13123cece1955e639d38bdd38dcbb4bf04eb8ce5ba32fadab8711a
|
|
| MD5 |
5fcae290836a44222beb8f67c61b9b9c
|
|
| BLAKE2b-256 |
c87afdc1b83f4a0f984fac46d384a19c4a1f81ff4639f5df07abd2a04f41589c
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 437.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7028d9a387a95ee391872790a2c290f076938021fca2038722f9099c140071e7
|
|
| MD5 |
270db79c0bf45ea6119bb993d89cb95d
|
|
| BLAKE2b-256 |
bc2d9f0a7b8eb7d1f8f0e28d70eef12c36acc12818599fc5b6d9285a476b413c
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 506.7 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3c55b4675421ed9b01d84ffe3815cb0e7e42caaf42647d97783c4588077f0b9
|
|
| MD5 |
f7b8b3979ef7d0030788a9ccc75a37e1
|
|
| BLAKE2b-256 |
6d725012acb8a2fe7edd30e48d5d2aa92af9a9dcdedfd3dc556d28c0aa546b61
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 407.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c73f0adbe1ca41c716bb387962496843049a6ef1765d36fbde0dfec114a27b8
|
|
| MD5 |
034a534d07d6213a91d7582da4bdc1a0
|
|
| BLAKE2b-256 |
4a8ecdb705b5754fb38af7c750ac255de4fc80439a920ebe3ad2c2a3204b57c0
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 284.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4754afcf626c1bc5c9c5c6891cd4b3a2ae76c6956aab481eb4c9cd328c4f6309
|
|
| MD5 |
d061c083338989622c8fbb70f86f3459
|
|
| BLAKE2b-256 |
9f81fd9f64f20c7fe5f44afc735ebfc270c513dd8b99f4ca6e76b9a4fb6dc602
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cd4350ce5475a4ce506c70b99d069870dc7eb233c2c037fddd20b5807436e24
|
|
| MD5 |
e60da9bd8b6bf1a0beeb0dd8d4d8eb49
|
|
| BLAKE2b-256 |
c751346671cb54cdfde279ae775d6b003cc5558484e0325ff7fae0e7cecff6a9
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 258.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2c7c08fa604d2e1ad4cae8e631dd42a83f3f32edc5bd9aee49b47db85bdabcb
|
|
| MD5 |
b559db6b242cdc9bc238f24fc5adbfd4
|
|
| BLAKE2b-256 |
338344c9f0e2bbbfc0b417522a23d55a128cffbd06f0a7cd83bfee9067aad689
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 237.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95ebbb0b2af9829b94fe6296c38d38b79f5d3d0f6f6dd5f00a44a9de3c3ad5fa
|
|
| MD5 |
c012a118b3e2ad15d612de5dabc00171
|
|
| BLAKE2b-256 |
32c5f451b8801246a4af6bd140bbcd1fa51b3238a6707635bbab7e6395115d81
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 224.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b7a5865f36be5804309b84d88bc81aa936596f0b1dfeb638788dcab05664c58
|
|
| MD5 |
641cac047a4bc7a5aab413034563fddc
|
|
| BLAKE2b-256 |
b142e1fcb9ad74661b56f3afe8a442613cc3e3e56248c8b9337ffefafcce3da5
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 253.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0283d1cd0655fb64f73002b2533e6bfa9445721932bc387140c71a91ac0cc574
|
|
| MD5 |
778c6b9e43cbd80a35e1bae4cb80ee1c
|
|
| BLAKE2b-256 |
aba550663cf56180fd9da762ee2128733105863b116e7a27afb3a37f0e3a31fd
|
File details
Details for the file xmltodict_rs-0.13.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 253.4 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f860dfc19465a710366e000e9183e1dca7e5397724103959c05a5dd64783fb42
|
|
| MD5 |
96d778704e6326faaf6e146dab6e796c
|
|
| BLAKE2b-256 |
1c3b17d5feffe7a9e6c2fb5cff8822326719274637101c840827960058aecde7
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 180.4 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2815c716db684036231621fe6aea7612e42f6b94f527be6ce9a0901c0c73dd43
|
|
| MD5 |
9852d0230d4d962b895cf6f893f6a041
|
|
| BLAKE2b-256 |
5a2aab6044cd6124558f9e059758cb6f1f72f29314594fb08b4df8cb32c5a812
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-win32.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-win32.whl
- Upload date:
- Size: 129.5 kB
- Tags: CPython 3.13t, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd5faab5749f842bc0aefe06253e8c5c0a5c3259e3a7b2c7375c767999fa79ea
|
|
| MD5 |
8fc58152b8d27728b166f3816fb07a0f
|
|
| BLAKE2b-256 |
f722a3dcf35cf27e92ef0dbb024c7a82f869cf15a62a11941b9f459de28c68be
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 412.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a3efc9e498e049049dcb92bdbd1b3385ad530e65322d6c92ecbfc3c4720c220
|
|
| MD5 |
e64b4b237a9074120534b77f02950252
|
|
| BLAKE2b-256 |
9b60da3dbb3b72b7b643b5976c65ea34eb5be1adce6160909eafa5f9ed73e143
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 436.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
878eb1d5ca688d8598ffa9ce6297d519e293bafb48310e6a0fef4d98beba3d67
|
|
| MD5 |
0bec394997e7f7467a36311f5d4ebf71
|
|
| BLAKE2b-256 |
e4bcf7bffbafa03c3675c6592f5d39134bcb6d2fd2e608ee4e200997b7b74958
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 506.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bcdaa8b9224eeceb13630ab2f7115426f5ba2a75d4204b47f0ca546eff7af49
|
|
| MD5 |
65619ebf0488416c028231488e31ce25
|
|
| BLAKE2b-256 |
dc1405bae9b2a4b45de9ca11af7c980f8544067799c61b760065939df04d3724
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 406.8 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96554c15ab4e2e35f488252055713ed0c8b9115908bae839ef9bf88b258d5d79
|
|
| MD5 |
05f3aef3a76dc7305633ea6b2ea72d95
|
|
| BLAKE2b-256 |
2efc30764cabb7bc1ea807f3bdd1f177e6a5e4eff199a3a99a221df28da76ea0
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 284.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df69d903cb3ad62f249ece9469db291be8b1dd586eb8ad91528a628e1218d31f
|
|
| MD5 |
3055dd17e51252456651087b0f42ccf3
|
|
| BLAKE2b-256 |
e958dd5db95c159003fe956d80d99220dc142348c7b176337ce2de643b874e16
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 280.6 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8b173f6f53314a4b6dac24f11e479bd0c7cb0b1594eacffc958bad302327fae
|
|
| MD5 |
78fe3313c685d0f356691e5df368db8a
|
|
| BLAKE2b-256 |
57891e5ab7744d126d62600c9ab349e31f628e3c9c3ab057185507485b3a75c0
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 258.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14f791e7159e01041155516f6a36282d9addab26d3e828b46ef1d432e886858f
|
|
| MD5 |
f5ed724d01f060d856559411d889d320
|
|
| BLAKE2b-256 |
12ea56f5c7457cb277b7542acbcde606ea997c504ad2f0f173647af7ef699a25
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 237.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43d47d993773b13755c295210b5f9cb291f5e7be3cab5a0a913e3c75d80e2d2d
|
|
| MD5 |
f43953e015b6eb174a05f3b7b57904a5
|
|
| BLAKE2b-256 |
9c29d8a70bc98adf7698276181bc440a7a9fe3a3e37d62cfe1dd7b15fcdfc4f9
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 223.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6d2d24d214cc20b2fbc738179a70ef8da715f541d2874f819c38a66a01fe057
|
|
| MD5 |
c5f63f20b6dadd1b7dd9273c286b304c
|
|
| BLAKE2b-256 |
4052d08b01bea842255301d451a41ee4c0a7074ddb98565e3f7e8106fcf7f40e
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 253.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8e7424f1f893dccd8b065359eed1f40f732e2db68431d1dcd0cb77ecacd7db8
|
|
| MD5 |
71831dc835cc908650c24562b1a2abf9
|
|
| BLAKE2b-256 |
cd7206980a1eb39e3be2d60072fc4523f3fc2e1524f185ee7e1b6938ea3531d5
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 252.8 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a1fa363f1a8aa4f1bec27ed16077d2e482f28cfd599b1bbdf2b05195cff5960
|
|
| MD5 |
0cba06ec1c70a81f38f058c8852e2b7a
|
|
| BLAKE2b-256 |
ad9d36aa2d86bcc45d5b7e42b7bb48bfe380af20d44a41a595d81de5dcc75725
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 182.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba9d109fac4bc3042253288864714fba0c0a652e9f2b8680f9bcf299f0a613b9
|
|
| MD5 |
cf95440942d2e338e6c2dea0b66c514a
|
|
| BLAKE2b-256 |
02fe884c72f989a3572ef844371c6c0f20ec4195a3bc7e78ab4135c813e3dba8
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-win32.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-win32.whl
- Upload date:
- Size: 131.0 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73fd3335f48dbd182f5aeed5d9f2ae0bb7d5fce7c4971c14363c68f995078b75
|
|
| MD5 |
35597a3d720607a09c44f4258c092741
|
|
| BLAKE2b-256 |
b214842111c9353daa5c6aaa66e8b1c891ebcd58afbb250be6e10314cbd37626
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 412.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e51ba4ff7bf43daa660b0a02685d8323d64e6261a9f4240f8d28f9e28fb7fc5
|
|
| MD5 |
fe66369f7747eca67b3515a12c5f5474
|
|
| BLAKE2b-256 |
04fed781d81fbd301f69a5f228632db67817e5c6eb87d8a0df3e0f0ad8e2bca7
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 438.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
816fa1eba12ce84ccc569d6d1a17aa0267a92887f90e5f135af98985f4fb6a81
|
|
| MD5 |
ab508e13efce51e33fb961271e2cd2a0
|
|
| BLAKE2b-256 |
cfae24a603b1cb055255d100f76e8ac619b8c5903d04ffa177384358cc1bc82e
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 508.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
565dee66cef81067922273e563e7c9668c3b1a929a13d8efe2a6a38621fadb99
|
|
| MD5 |
30df310e660a966fd6a3f92f72e7bc44
|
|
| BLAKE2b-256 |
67c7fa61a2ba55548982501e1ff3704d5f81365945f9dbcce1051c71e5c0ae55
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 408.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bbeabe2a44fa59cca399e08a3e02518a7c61fab046d1e8b740d4b2c1ce4e156
|
|
| MD5 |
51d9f6299ef27a1ef47fbbf11d83fdf7
|
|
| BLAKE2b-256 |
d8054ea0512060073e55dc749b4f26c3b032bbd316ea42f325c48007b5036449
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 285.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
028656268a3f1907b21fc5365e7f93c45e26ab6360df00eccd580384024782a2
|
|
| MD5 |
33ba15191760467614d5b18388abce5f
|
|
| BLAKE2b-256 |
23c471845e9aff6cd77eddc61ef957fcdfb4135dc2ae3e4a2d58e61a665746f5
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a40e5577cf2b88ae0d2130bd6e77866a62b9047930e2037fb050842c1784ce60
|
|
| MD5 |
07e6b7956c25bd2086512927424a306a
|
|
| BLAKE2b-256 |
c4e132bba70c2f84957d280a7778f93e782d8a99d52f3816072dc818f72592d2
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 259.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7939fe45a4938c260138ea614c95bf04569b45ed1db6290b155050815a6ccf8
|
|
| MD5 |
d3e8dbd2a084834defae933c67a81633
|
|
| BLAKE2b-256 |
22a0655858973d3e86558860bf548bb7d8515859eba17b75257328e5363ae7c5
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 239.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dae55dc66e7b2d767726ce7d5b7fea5969b95abce2155eebe7bb14f577f52f1
|
|
| MD5 |
bf3af439609854362132d83099d7c73c
|
|
| BLAKE2b-256 |
65cab697b943b4839c895d21f9ea78b8b998846bda0890a674d2c80506b38ebe
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 224.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
095785bd7e675aa6f58f230871761ed7908fb53b81c5415bf76d0514531799d8
|
|
| MD5 |
7cd1560b7fba5fe3e909c2b011bf4fef
|
|
| BLAKE2b-256 |
fe195d4ed1685e4fb7c5e12d9593b56c2df49c51c52af06649135e5138ca4d84
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 254.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
670dd5ad3cfca647ae037308e42d5d487e038f9a6ccdb0d457c436d80fb97a70
|
|
| MD5 |
9763e91745120e1202a988c6784ad3fa
|
|
| BLAKE2b-256 |
94b7d6d75d12bd7ddf03e912c0f7d87bc47e99ad6c33e879a3124830bde1fbee
|
File details
Details for the file xmltodict_rs-0.13.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 253.9 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1144b811bc75c104d53bc78cbf6987295aa3b0d3cde369c2f5f492b8767d337a
|
|
| MD5 |
bffa4558c08f71d851737e84d36e9a60
|
|
| BLAKE2b-256 |
069f1c8bf03f1cf8f12b58a772eb48b15a9a22f20d84a04c25b66dfc836f90de
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 182.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9a3108d7f33063a28d3e3b1839f4ea6e426856f9b93b20cfd66f34216e3c793
|
|
| MD5 |
bd095e6c7280de2a6a26c9d43c6fd7eb
|
|
| BLAKE2b-256 |
0bb2cf48e06ac39dcb257d23e18205787744d611bee40b5a075629363e095c18
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-win32.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-win32.whl
- Upload date:
- Size: 131.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8790beb0dbab66be102f69982bf5a87f3aaa6854851eaabc5c53d11fb39b3dbb
|
|
| MD5 |
e3330e52ad1fcbb69376e00dc845ecbf
|
|
| BLAKE2b-256 |
a8be98d02cb152e4cf4cbff63683f4bf219173fee4294966bae72c05941d959e
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 413.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff2e6acc72cdb8c6c6936bebebc1fcf393c4db61f2cd47d88062fd5bd9e2a3cd
|
|
| MD5 |
1ddf576dfa322793ddae533ace584cb2
|
|
| BLAKE2b-256 |
b507503016faaf1e95d33f0ec5216d6604222fbc7675e5d6ea274919ea4a05c8
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 438.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c1ccb61465cf6ca6b3f2fb4ba415539e14860b2a463abcc480258b0110cdc86
|
|
| MD5 |
c24465725a62dab5e81054cd21b13e89
|
|
| BLAKE2b-256 |
98f03940aab98f44c82e543e85ea7614f206065deb781e91001167c39b955cf2
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 508.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
273eb245b4d5034334745501877af3bfd4700e1ecb3a6db7f97afc9bad569886
|
|
| MD5 |
1bdebf1931e2f90a9a93ef0289e0e23e
|
|
| BLAKE2b-256 |
09ab1a97684da2aba98f1a71182053cd43031a4d7e657afc02ab3aa7e3992dd7
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 408.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec738dc54178d5f7e0aeb52d88ed0bd27cff7dcddec3c3629774c129c75bba15
|
|
| MD5 |
3a8d5cbb6a51edb6744618813deb7816
|
|
| BLAKE2b-256 |
2f38d1119ce275448c9be8f5640843d4a6e04393fff018c3dad5089bad00fa26
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 285.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ac0b620ef85a36ab899c076722d6e5edb905ef02806ccf6ec3349bf162c2103
|
|
| MD5 |
e7a48e9e704fe4945f263223c6e4497a
|
|
| BLAKE2b-256 |
ced48916e3b2aa7fc0c5482dda6ff6b129955baad7286fff43f5ded53aa9f953
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a787c6b457fdda303fd26e85245d64db042b4a11824f4b49492dce374c54d3f9
|
|
| MD5 |
880a032478b4c87e6121f77d502829fe
|
|
| BLAKE2b-256 |
290cb93811acad264954ead5f7d78a48cb9b516ddf371a9507dddfdc6602c862
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 259.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4c2d5e942d007d07b1729fd8f67f328a371446e1877e02017ee94ae99163a7d
|
|
| MD5 |
041abc2b3ece403d00022ee2b1b26c4d
|
|
| BLAKE2b-256 |
400d3424ad114023fe1757fd1a52a2f284d374f10a120906509f9798f3b88d5b
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 239.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b5a5eb4db5eb77e427fa9a1ef15b02dd518610266713a451b499dc229553539
|
|
| MD5 |
35aa3d2bc6c9993d832f9a7a0b2f1490
|
|
| BLAKE2b-256 |
4cf0c7c0a9ef477469f948941d578f5368386860ec58c4530705969f63836eb2
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 224.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9579f14903cd9a9ffa977104dbb6b17ef0893b1cc6fe67fcf8f644e521d19ae3
|
|
| MD5 |
d9ae1bd98b29c96887fbc9e618d6cad1
|
|
| BLAKE2b-256 |
3d99499dc09792e9a64314734eb08cc1cdea3cf0ad591f2a7b9651b352c36f30
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 254.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c56ef0e6737edb9d6a54f3e29f85be2295d74ab077fae17ee4058f1706c2062b
|
|
| MD5 |
653b861a8b0862cd92d2855ba86d0839
|
|
| BLAKE2b-256 |
fab7407a73d4a90ebe0caef7b594b39b456f5e06cd65cb2c48c984723a8ad977
|
File details
Details for the file xmltodict_rs-0.13.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0a0413bd6b4f9965f49b0799f881f021fe7361af0b1f01b99cea7e2efea573b
|
|
| MD5 |
d21344de0f11c8c0cb4b4a1de2767a7c
|
|
| BLAKE2b-256 |
763bcd0d9dd746d97049fddae2ab7ba372616ea3f1b16fa70b201c85e3f28323
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 183.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fc81ed986e4f13048952b04bda3c70eb44bc4ae4941f34c30a80827a6180df9
|
|
| MD5 |
d5fd7892f35ae0856fa2123395f23133
|
|
| BLAKE2b-256 |
fa2ac917ca162c24c8e4ca239074a3ef5b6e8fcd7978b1e37092cac0fd3b4e85
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-win32.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-win32.whl
- Upload date:
- Size: 132.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
406ef980c2361adb077e1f8d22ceff23166a0e4f4b8b562de976c5b027fe947e
|
|
| MD5 |
d25f9627c418931971aee97233f10b1e
|
|
| BLAKE2b-256 |
78f393ee89c920ca8c89a8cbbb3542968ace465d424fb84e08ea6a523c915550
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a67f212ae285a074f25db0b71aa17a174b8d6c8a0d704a9c2a0574a371d043a
|
|
| MD5 |
3ea2b8c9e9a1eb2c470af8bebb8cc323
|
|
| BLAKE2b-256 |
e61de08c981e8e5669a3ba944f4c8ccc188e9b231807c1c54123497ee64db23d
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 438.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a72d794591dd2b3ff21aac6ecb0f3a93719e6b20883d3ab9c87548d0a8a8c354
|
|
| MD5 |
82488d41a9036e26468c73a7b57ffec6
|
|
| BLAKE2b-256 |
8cde4a42ce6d83a5642c29e8e69f8d51443939c0f04826acbda62e27b6656dc8
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 509.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7515ec6e3d13ffaee19d339712fe723149fe7c678e031fe194f47a4604972561
|
|
| MD5 |
d167c7700c4117d4becbbb86ad93b925
|
|
| BLAKE2b-256 |
9fb020f2d80e1e6079b6ea3d0dd40016fdceb5c7244141492f0470ea9e6c07b1
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 409.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f60cfaa194ba0bb95d963d5daa82a0844a65a4f298a85e18c9b839f4dd1e2074
|
|
| MD5 |
a77c50d71352af8de85bf8ef9ddf1456
|
|
| BLAKE2b-256 |
848a9275db6f1e8334837ebcd8e228fbddf5f597500cf71c257c9367adca5baf
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 286.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5841e614e16de33b1fb2060c7121ba312cc1befd5b5840425894ef204bf07ff9
|
|
| MD5 |
89c645c82cc8ae321da0dd0e7df16f26
|
|
| BLAKE2b-256 |
59f5a77b96a41ba97391afcb292e698893c629919b1d30c8a71148fb40c63075
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 283.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a80c7ef03d0b85c3a0075d6f7bfb90eb5abc1192990ff80a5c86e667717247b
|
|
| MD5 |
e208358d3c985ebe6e5880e8590a11fa
|
|
| BLAKE2b-256 |
7a94c50071ad42edbec2becbc9f444a75a4ff45f2086180d54ba0e4610344ee9
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 260.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44e5018b82b20be2b7cf4f5ee493ef098535bd8b04f4c5aee5cde20c46100db6
|
|
| MD5 |
cb4637aaeaeaa9661565e6e04fdf207d
|
|
| BLAKE2b-256 |
76bcd25d89460e9cb811d4e7a287fd6a1711673bcc285facf5a533e38506c97f
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 240.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39242b73b300a6900ab1368ca6c64e9e897556dd49cd60c21eeb3c7333e1ba6c
|
|
| MD5 |
6904570d9c07a2d5ec62205e60881d4b
|
|
| BLAKE2b-256 |
e8118272b2a1a49217c7a365c4e06be6dc054a5088f8ab835425ddacecdf526f
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 225.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b8886a3b19642f0c82a8c31b727f33e45b5cc1057c50a7f77b5fb2a60c4bf0d
|
|
| MD5 |
53b509f77a670936c279df0246cb0d19
|
|
| BLAKE2b-256 |
858b23233fe18da463343d4ebf2cb8985c98fdee65801f01657c63dbae44f75d
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 254.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5e9fd2b6e769e54a825b261a17ca846e42164150290cc1e8259f2812371b6f8
|
|
| MD5 |
76d7a954f8829942082e17db8185d609
|
|
| BLAKE2b-256 |
c826815a4468e7488ecd18f9107f90d2c29ba415fb44635c30021974c7bbe3d9
|
File details
Details for the file xmltodict_rs-0.13.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7395eba9dec04d208726126d4bf78a63cf3aadd26fc3ab4153fe9c44166464ae
|
|
| MD5 |
acddf2a108d814ff0c62fa45e522194a
|
|
| BLAKE2b-256 |
d14b78161ec9987b89bde52c06cf424fa0548a49e09d116ac4054d4e502999af
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 183.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb0137329685ded68ad3b858b41a30be1ad930a918e52272e3a10d34ba878a44
|
|
| MD5 |
b67606cd793261cb6b6d129cf90a4a22
|
|
| BLAKE2b-256 |
f07cfdfc5aaae07cb58aaef419f8b720b69022ddbfff26c81f64d6da5de9b1e1
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-win32.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-win32.whl
- Upload date:
- Size: 132.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43af88a3195042b71df53679eff167a9ccf32a187943996fa981349313ac16d5
|
|
| MD5 |
fcfac42350d42c7d02a1dd0de02d5a33
|
|
| BLAKE2b-256 |
abbc7f6fed1328a9592d955665f17779afecbb1abb8cebb25f67d3ee0fee9782
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbd7c05753694779d146ef19488483415aea0b98eb25dd6925750099d21fed8c
|
|
| MD5 |
54c6ccdb81f27138a85a37e263b2fb76
|
|
| BLAKE2b-256 |
2340e058a166c2535010ada22b80bcde6560cebfd9945dc1f53b9d9c76cb08f0
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 439.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d56c6693024954428dbfcf10d4e384737bc641da28e1f086cc652cc14c139a9
|
|
| MD5 |
82c17b6390c608f3a3269caa9b46c8ae
|
|
| BLAKE2b-256 |
ea98d6643a61113bf152e71ee455cf0395ca545379c0dc8f01cf8751a9025f67
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 509.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fdec375215ca943c917669ac2e783f59e7b3bee0916a4a7e5b360160ac29ea6
|
|
| MD5 |
72532e7599d491fe915a25cfc65b1880
|
|
| BLAKE2b-256 |
3f619b7ea49b344235dcf7b18fce03d867a6f9c417216e4984fb68b1200f36cb
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 409.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df2ad52ee13d39affe9c95fcbb3cdf69be195b356000b2c53585a895c853492b
|
|
| MD5 |
c4058d375a88f6c5e4cae6649cd19aac
|
|
| BLAKE2b-256 |
1cc566b2975eb3db052fd2c7706f20c4bf7480a4c6e81de4ef2d2320dcd1b031
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 287.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7615f6056a348c003e8b0f04d4cae4e81fda30325bdd4ee0ee382f664ffc72e
|
|
| MD5 |
21dbdc884c24b5678571b47c31a2a4d2
|
|
| BLAKE2b-256 |
184a5b33c111d37f50d00f0c1d1934d0e62cbf9ccacee47e0e9e7af5ba2ab6cc
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 284.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8b0ac243b7b99ceda4dbffca69ed77725465838b0f251ca1b0c1c7686355a2d
|
|
| MD5 |
8b9e79ef0bb1cfa30039f67d38d4e647
|
|
| BLAKE2b-256 |
8aafffe07441ffd752942df89fc506c497b9d3f23876911802a946f5a9ad3469
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 261.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
595278a0ab62a788d97d44ff98a92d5ff54f26020f187912a98566cc9b457bf3
|
|
| MD5 |
92034534fb662ecf6fe48e1c05483cd4
|
|
| BLAKE2b-256 |
fad91daf95be878d5795617e658c0578068d0841ec9eeacfd5563bf2fce9b8e4
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 240.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab3c9f9f375ea4bcf96ee1c548e93cd55253feb088c3410bd0ced609f72fea0d
|
|
| MD5 |
a206c47c848aad0c0bc082e56e624b9a
|
|
| BLAKE2b-256 |
b200df9fe4e4914b08af03f7dc039330a1a4480a4876d3a2d5582b201023187d
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 226.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5f9285e884316b55231a9bedc5412cbeddc64f5e21b58cd9a375b61669b07db
|
|
| MD5 |
3187d06d94d467be384b7b6ad38132e1
|
|
| BLAKE2b-256 |
5b4a05a755c0963c75aba59b0256aaed13f690f2651322c57f16020e08a7450b
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 255.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22b8f77dd2fbdb78ff5789bdc5d4c7461579ad165f33a1db600e6ac007153bf2
|
|
| MD5 |
bdc78ef8eacd93d993d08108dc9041e3
|
|
| BLAKE2b-256 |
b13c94f0958b780bcf1e953887fb91ab0165fc18bf0a902cbfd8a00881699070
|
File details
Details for the file xmltodict_rs-0.13.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: xmltodict_rs-0.13.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa0d866ddde8372799f228456fc8ae215c9eb0df9e71f2204dead51e737aa6db
|
|
| MD5 |
1b0a9c7c685bed51de7ccec8ae7b95ae
|
|
| BLAKE2b-256 |
8c93e11aae4903f1922882cc281dead92f354c8c659f36e379a5974a12f808d1
|