Skip to main content

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 (.pyi files) 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.x matches the behavior of xmltodict 0.13.x
  • xmltodict_rs 0.14.x matches the behavior of xmltodict 0.14.x

Installation

pip install xmltodict-rs

Or with uv:

uv add xmltodict-rs

If a pre-built wheel is not available for your platform, install the Rust toolchain first — the package will be compiled from source automatically.

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.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xmltodict_rs-0.13.9.tar.gz (56.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

xmltodict_rs-0.13.9-cp314-cp314t-win_amd64.whl (203.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

xmltodict_rs-0.13.9-cp314-cp314t-win32.whl (152.2 kB view details)

Uploaded CPython 3.14tWindows x86

xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_x86_64.whl (470.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_i686.whl (496.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_armv7l.whl (535.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_aarch64.whl (422.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (282.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (258.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (245.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (277.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.9-cp314-cp314t-macosx_11_0_arm64.whl (275.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xmltodict_rs-0.13.9-cp314-cp314t-macosx_10_12_x86_64.whl (295.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

xmltodict_rs-0.13.9-cp314-cp314-win_amd64.whl (205.1 kB view details)

Uploaded CPython 3.14Windows x86-64

xmltodict_rs-0.13.9-cp314-cp314-win32.whl (153.9 kB view details)

Uploaded CPython 3.14Windows x86

xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_x86_64.whl (471.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_i686.whl (498.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_armv7l.whl (537.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_aarch64.whl (424.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (283.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (260.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (246.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (278.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.9-cp314-cp314-macosx_11_0_arm64.whl (277.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xmltodict_rs-0.13.9-cp314-cp314-macosx_10_12_x86_64.whl (297.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

xmltodict_rs-0.13.9-cp313-cp313t-win_amd64.whl (204.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

xmltodict_rs-0.13.9-cp313-cp313t-win32.whl (153.2 kB view details)

Uploaded CPython 3.13tWindows x86

xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_x86_64.whl (470.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_i686.whl (497.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_armv7l.whl (536.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_aarch64.whl (423.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (282.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (259.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (246.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (278.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.9-cp313-cp313t-macosx_11_0_arm64.whl (276.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xmltodict_rs-0.13.9-cp313-cp313t-macosx_10_12_x86_64.whl (296.1 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

xmltodict_rs-0.13.9-cp313-cp313-win_amd64.whl (205.9 kB view details)

Uploaded CPython 3.13Windows x86-64

xmltodict_rs-0.13.9-cp313-cp313-win32.whl (155.0 kB view details)

Uploaded CPython 3.13Windows x86

xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_x86_64.whl (472.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_i686.whl (498.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_armv7l.whl (538.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_aarch64.whl (425.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (284.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (261.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (247.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (279.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.9-cp313-cp313-macosx_11_0_arm64.whl (277.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xmltodict_rs-0.13.9-cp313-cp313-macosx_10_12_x86_64.whl (297.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

xmltodict_rs-0.13.9-cp312-cp312-win_amd64.whl (206.1 kB view details)

Uploaded CPython 3.12Windows x86-64

xmltodict_rs-0.13.9-cp312-cp312-win32.whl (155.0 kB view details)

Uploaded CPython 3.12Windows x86

xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_x86_64.whl (473.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_i686.whl (498.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_armv7l.whl (538.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_aarch64.whl (425.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (284.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (261.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (279.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.9-cp312-cp312-macosx_11_0_arm64.whl (278.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xmltodict_rs-0.13.9-cp312-cp312-macosx_10_12_x86_64.whl (298.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

xmltodict_rs-0.13.9-cp311-cp311-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.11Windows x86-64

xmltodict_rs-0.13.9-cp311-cp311-win32.whl (156.5 kB view details)

Uploaded CPython 3.11Windows x86

xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_x86_64.whl (473.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_i686.whl (500.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_armv7l.whl (539.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_aarch64.whl (426.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (287.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (280.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.9-cp311-cp311-macosx_11_0_arm64.whl (277.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xmltodict_rs-0.13.9-cp311-cp311-macosx_10_12_x86_64.whl (296.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

xmltodict_rs-0.13.9-cp310-cp310-win_amd64.whl (207.3 kB view details)

Uploaded CPython 3.10Windows x86-64

xmltodict_rs-0.13.9-cp310-cp310-win32.whl (156.9 kB view details)

Uploaded CPython 3.10Windows x86

xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_x86_64.whl (473.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_i686.whl (500.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_armv7l.whl (539.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_aarch64.whl (426.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (287.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (281.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.9-cp310-cp310-macosx_11_0_arm64.whl (277.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xmltodict_rs-0.13.9-cp310-cp310-macosx_10_12_x86_64.whl (297.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file xmltodict_rs-0.13.9.tar.gz.

File metadata

  • Download URL: xmltodict_rs-0.13.9.tar.gz
  • Upload date:
  • Size: 56.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for xmltodict_rs-0.13.9.tar.gz
Algorithm Hash digest
SHA256 eb743d8a19b69fc13484453c68aac0d3efd274466c0bfd39eca03331554e6d6b
MD5 fc8aaaee4b200f7b0aaa10698e2518ae
BLAKE2b-256 666f09fa16f2df65563f315139b043ac416866acfeee13920a7a1bd82bcf169f

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 98ac53108e72a4e952ee0b89475ccf85dd16de78970c771c3564be556e208f23
MD5 ee6d953ff130d8219cf365b4b95ef181
BLAKE2b-256 c2ca4baa6e83a1daf68e5ca176de9789982c45d89c26a611def778786ccd63fb

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d40e6e5a6dbc0ef12f550cf5a86bd01357e3c479f51a3dbd259e0895bc784b43
MD5 ba95f9dba3f235e94d9649bc13f8cfa2
BLAKE2b-256 feaa6e9cd068574449a64489f186a45d68b6882c83e40af0df5eadc4d1ecdb17

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7190af39295c3237779c96d8f00919b803650475632bbbf2f746823eeaea1b0
MD5 a73d48112d7164f58b30d77229dd03fe
BLAKE2b-256 1ae807010870b5561916da5dd83c2e9634459e1d2ad88622d2d50ac49e90c84a

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0da726928dc5c6db052565ea1176616a0cd07557b3416e77d9e78bf773e88437
MD5 f0ff2d8471a4919fa0367ada5c5cb180
BLAKE2b-256 dbb53ee02ad0f2fd51d05dbe4335386eb00d5519c82fc46373853ce6d7a6047f

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99fd937dc22d4bd68194933dcc355254d606e889addaccc17a00c29a4dbbc9cf
MD5 680009730873fe2fdfca1bc9eca04d0b
BLAKE2b-256 c1dd872568a3ab8e8b38750c453a7c7e274da15081ffa772d024294a28397ad6

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 423b898aea90e190c0dae20785cae8f1702d8e23ae020b9c90008d2eba6236e6
MD5 5b26337f8f56047a9f33ef012335a725
BLAKE2b-256 09000fe56395155250dedbfc51cc9f04c5b619ab9693d95f381c9cc9bdb477a0

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d95bd7912768aad48ed89d76caf5e2458add958884d9f2afdb8a2d10f1f5b93
MD5 b3fe8ec0e6cf379e216a25dd380609e0
BLAKE2b-256 5f5fc883d294b8838769620f546e72068ffc04e5315d4796cbf8f89254793d82

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ccdd2a9150554d33c9595dd237c363853d82f61e4546487d680743f755aa3a15
MD5 6d30b9814763b393e23b057a2cd0dac3
BLAKE2b-256 2090f295d63decf805ec8daaecb3f3fd95871aed782893b314b4009251da4459

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed1b55a2b7e9cf47a56bd9751c3b68737b618b8a75302beaf2a6e2d83fab4af9
MD5 9ab4a5a9fc45cc801155fd46112c20a9
BLAKE2b-256 56abf49eeb501430a7c483862c28729e9dbcf3210e50254f727925aa579be391

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66c5dde3eb3a399f9363d4291944ef7066967cc276cce257cb82c2c5fb0fd65d
MD5 394f418c4f50f3c69ffe04869969b7c8
BLAKE2b-256 4bdd9a5c7fd5260af6afa73ae8d816da86f1fee3891eab362d8e4853e31d8218

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2696777190ffb88cd65d3e1688791fff3781d63356ba891e51f33425bac9b1de
MD5 7bbefaf2ff59bc0a5b03f82f45dfae60
BLAKE2b-256 396394c4d611e276c111f5b189e82fc5a7399d40eb239ed36c5364d737cb0fbd

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 09f2bccb64f67955864f7cf9f00f0a453905db1c2e869c6a8b2f0709673d91d0
MD5 e90478c449b43e0f9c07e0e9a4ef1c92
BLAKE2b-256 1ec850fc54d603fbbe438a5c944efd1543abb64c47cbcc8c9287f09baf1fe390

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c015a646ea4fff5bff05ad5da636fe3022b530a700c972285d7b8d3ca56f89f
MD5 ff80ee1dfaa2187555ec1542a6506a66
BLAKE2b-256 2fe4aa9c5c7619d2570e1be6bd154876e8556e97ba16d68bad366311697f6c48

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 258d382bd054bf5ebd2ef203fb085b50b0dd7e28f35d5eb60b57a3126b44d172
MD5 4a3dafd73bf3afc9194c1a985aa2dca2
BLAKE2b-256 0055fcd9c07f1a6bb53c38608f0adff8ec3ec12938671f489a3d9ce931253088

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 000d12c2e63149f1668373057e6369a1e1f3711f355715139169a31532c07efc
MD5 d0be36b8af29f0aecc411828b7ac7d95
BLAKE2b-256 1773e7b84731728c48dd350fcea25e911d96a594fdccf1048d63fec70e9ea266

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bbcff8aa154675db679c714d023985da7dcbabed64f8837d516a45500cd0302b
MD5 a69510b241a0fa573728840c1e42f391
BLAKE2b-256 0af111c32fbc68dab8d1e822c7428505f89f7686af326faeabfe115de918cf94

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d472f1d8e0e76160df0873ef39a33d55b12314d5088c6722eab4e3a1e370567
MD5 2e994da83a3d92fc22245bd59c06f805
BLAKE2b-256 b0b42fb4eb380fc1c63a6d62a4ca4408d6610eb3d59bb3fba0e8494a61e80257

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b594764b027a39ee6356e500db9c4a26b4557fb9422e9b70488391c1603e8b1
MD5 05e3743415b91a3ee3a5b8bc44560bb1
BLAKE2b-256 3f4c2a44d77aa3e9ec64ae93ecda2719536b908f6eda0a4cbdb88630b7db8a6c

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9420f73885f8e4d4868954b7435e4549f1bcd23210638c72ce065689fcde3398
MD5 534e128be3d8ec6f2e84b171597cfba6
BLAKE2b-256 a7748cb4d81f96f4d4d34ac4cb92fe65e61a47a30aabf81424d0b1342c19fb5d

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5d9a0adf23f8f3b01af0f2c111f0cc95e132df4b2317e04066c527699da412f
MD5 9fb21f6f409f899d56c8f580a53e5f35
BLAKE2b-256 4cf2f06254785de499f5c0b28927426a416b4b053916582907a72b0d79301751

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93709b60c0c69ba063186547f64d28fde0a7c4f454572a8136790aad4d761ba5
MD5 49154f8db9bbf84d3ebc954ed6f727fb
BLAKE2b-256 c202365d34c3e78e73ac989a8067748cfc0d45e12185c7838e78428dcf2a80a5

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11aaef688acac11e2243eb6d65770d0a963948a2b8386c375c6d0f511cbcb15d
MD5 4db1a7097152d3598ccdbc5bac087534
BLAKE2b-256 70f1bb272e67262ac718d2571dac216ec521376d9049e29f4935ac75decdc8bf

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 074051cd715b29f99facca8b69cffd44a1a9dec928837661bfc7057ea7814904
MD5 840010584922b2f71d3bad80e2d4bd1e
BLAKE2b-256 88d424017e2d68b31e50003b2887cfd6eef26205450c75d7a0a175e949b05c4a

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee32c0f3f7e3f791872c8c503b800f326cedee6893a154872aabf2255c9e7d10
MD5 cafd3c86e2ed8ef94236b9e2327f20e4
BLAKE2b-256 80e5af238728bebb5b2b2439d51739ad7ee5064b3d23bb5645de09f21daafaeb

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3262c428a6ab99606d5c36cec45b4335185e74a53039e1bfa5c09b82df88d114
MD5 f99255971f9751cd8f735f21e6feaf9d
BLAKE2b-256 1e488b48ed0e2280dd3fa4c26e6a3b0aa0c9c1dc15b143eaa65f2a6aef5e5337

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e79c382632bb5772a82134c53edd950179ccb695351b05703f6b64435ace4c3
MD5 5c6f86b409dbf116f067c610842076d9
BLAKE2b-256 5ea9ed029a8623ae2f16da8e3a302a05d99112804e04ba71940ad345fa68f9ca

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e41edd096285ea4c3d361caa71fb1ae7be62b1e8af1307f3bfddc3f26d7994b
MD5 1b2f388274cc1bcf10e509bfecce656e
BLAKE2b-256 240bd14ccd8d6ae32fec6e5b6f40ecb40c3b61aaa81cdfffbed920d95bc48dd6

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00f1011d306e45413892bd6f74df52f541f63c7a04f2634ccecba875bc0ac615
MD5 03ed5969b5e54e18df477f25cc3fbab2
BLAKE2b-256 e8260468a98f483db5dce978b49fe3c604b3e6b9edfc93de62f1ad7fdbdbd039

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5e4549ef06d3a88eddf1a612695c716977d3fdb7444e4cfea7341c00d4897ecf
MD5 56ec69a86480b4bef97290b2a9fd1f8c
BLAKE2b-256 0cce30ff262b6c9f022ca62fc12af16215e4ab8acdf62a02b981c07d34f10cfe

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e97f5467f69777325c0b6103427e7475122bf3192ef662fb59346dd3b6ebc548
MD5 66137640ed6527d15fda6be35377940a
BLAKE2b-256 f2a91253c7989b9b4a9344d43761a1f0cf2015bff0b233129a77e803fc77137d

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a20f3aa50c18b54a2765f23ff57493ff4e6d9f6b9b29215fcef026fdff66939
MD5 c056fe758c91cdfd78a2fab903dd4e6e
BLAKE2b-256 bdcb8a300d5bf0c2ec64db4da8ceefe23fe06211be2fd3e8f8aacbf391ab59b6

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8fcf9c55897279cbf39551301fc57e48c3e60b6d7ea69b6eccc6aa8805a6287
MD5 383bcef7a94a75054995cfd800145fbd
BLAKE2b-256 8a5fcfd9be23bc870b51870c7d6dd6f3099820373f23443d47c2aacc26a12524

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c23e40eaf77cc56f806dda0578346a3b192d079da1d23871575f453dc8202b93
MD5 73104da92d4b3519bc1e7714d6a7ea5c
BLAKE2b-256 3a0aa0e3277e0b498bf63bfef14038793c83c83cda70876287febe548688fad9

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 044e6969636bee2793c8162b68f93942f3d90d2d7aa101bec589b51ecfe852f6
MD5 92d4cb5ecd5011bbe1c1588f5200fa39
BLAKE2b-256 786031d79ac9f1196928efeba431ca7bd06e0ae6ad06230af9d2f3a70e63bb97

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef3f4fd824e0a4dd66241c0f4a6e25f4df9653e06391108a91802dbf864f50f1
MD5 a5b2e33e26f45695dbfa8fcdcbf28672
BLAKE2b-256 ba393d8064ad4d00dc4d9d8ff74d1f73882b99be7ab4903c05ab9cfb84548057

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 430deebc83153484a79d3d727999e243cfee1f84317ec0bf17bf2acb0cfe610d
MD5 6511c9de08787cffda04b91ee136ab54
BLAKE2b-256 f7a02289363c6d8390e22e39b7eea4cee8ebbd6e83ab6950343871c0162c28d2

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1435c2b3657418ff8bcb01448b3a7b2f8f5c9f0f35cfcd57e4ca4ef67ca4ef56
MD5 58b0680ba7ec333eeb8bf54d9f19e771
BLAKE2b-256 99252a1c502fce1dd0120069ebed6ca5bf21adaedc3bed4cb747d76043fc87af

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b41f270b7de03983f71a045fa557c0195c22eb8a1019381d10583515ba596113
MD5 0734931935a3cc3a47f75ee0491b1036
BLAKE2b-256 869cbf815c785cdbc0c27da8b7486b58bde44bad9bbfd16d41586795862e7cb5

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 001191c1733ccfb30a526fbe97d54f14219e7475c564327dafc2753842d8f49b
MD5 db7ff3b61ff289093f84c0a66205b3a8
BLAKE2b-256 02c1b8b0087112431054367daf8447a2ed742cedb26eb58b8b6ebdad26a5a8cc

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 66eda7c37f64e6556fecdd4f6ac17b94d3457df368a009c3917841b267de22e3
MD5 5dcadb7397129e5bba6edecd84572610
BLAKE2b-256 6cba48cba2b08ccaf564928fc2640d9327cf45841013d4b3e4e1d3ccdab20a4a

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4780dc156e857145ea0ad4cbc2cc94cbb9c67a4126c93e1393eb7a93aa29ac79
MD5 6b81124dcf3b88a2ad1459ffd1910bfb
BLAKE2b-256 1ab7f6bf508a1f19b4ca84e54ae007ec2c3c5f52d268af3cafe8af34826f9b9c

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b12dda2ed93f314170c849c3c23a537adc9842870086790158f0ad2180f681d
MD5 885826ed836513e4284047cb853ef3f2
BLAKE2b-256 8c5e94a4bf7ec31bb9c841fdcbf246d3aabeccd2e581ba75fcfc5590c1b9e201

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6fd18befd77913420aff4f685b07bb577aff91355c4ca8ba291d7e6936fb65d0
MD5 53ee0fbeb923e2ce8eea96a6d5e4d5a0
BLAKE2b-256 5637e377ed9c285d1c057977e1a408d9b0fbf4733fa9ca2f42ccdbe76dc33a04

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 39a76171acfddd0ccf173b208f2796792b693582ec5d2209185bec88da734800
MD5 9f4cd338146eb31498d460fd66e49f93
BLAKE2b-256 fcb37e56a5d8b473fe3aa8ce389d33894c63aac78ab7ab8726e40e0ea10da48d

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fe8adfae26b0df6cf70d2c0313e06ced0cc81aed94f67f11fab6877ba61ff33
MD5 55e2f506f180f2f9c642151cbcf02124
BLAKE2b-256 2f54cf992a62db6b9d3c973ac64238e932c0911a8fec642acf7373f18866325d

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15a5ff142fb351b7abd53d371a9e8228f59a81a5c03ec630d5a5868996b423c8
MD5 b327ccc6b86e564436c44bde1eb4fa36
BLAKE2b-256 214abb58ac0f609fd25ea010e7fa9dcc7796feaab2922d718f42c032645a0fec

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f700fe8796543fd87b9ee4daf10a6ebbc53c56df8185c2567c962d9b4c97b551
MD5 6ee4e4ecd6b91e01201bc198786ec2df
BLAKE2b-256 cdd5e979f190a92a2fc94b1302fc208439aa47154c71f160acfddf3ee4920324

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26a42dd035a9dae7774d9becb3abc916c6271830749a60514818576dcf33f36b
MD5 aa228a4872de2d93491153fbc10f2415
BLAKE2b-256 d5daaf865ff81e93a54fcf44b86dcf405d2d20c4ae3800c0f9b133c948b16055

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ef5fb0df6bb68d02fa90d92528fbffcd4f71cdf576d51890a927f370f8ead30
MD5 bb8a1b21caec877e816b6d7d3acc3f59
BLAKE2b-256 013f55e6a64954350dba866bcb52a75284e012a39d6f852336758fb525cbfb2b

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c23faa2f81031d54d8d332af57f1882a3fb2972ee9ac0ae0c29c7ef8a04706a6
MD5 e58a23ba752429f781af1c07cb82858a
BLAKE2b-256 f9063aa1c33a93637dcee88998fc3c7cf3793558e60bbc6fcfdfc716d12715eb

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22470f38b6656f1b978a43014f063d39f7db3d1d26d28457f932679271668f41
MD5 394c25fcca339e950a08e2eafcafcba5
BLAKE2b-256 c50c3e81fa9e51c4eee0eaf875e8e18a997720c507eda1ff36bb42bb1eced120

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0223609a715fdec7d57ab4f5f61699e26d713f853bb7c42c89426528179a496
MD5 f3f40ea51774ed61aa748798cc17465a
BLAKE2b-256 95761f7fbe03a52c123875b36a9c1aee344ff5c924bdca1c8f272b48f314adc8

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b88cd3f727a4197aeb75a9ff4996ed644ae58a068d876c2d8ab4887f6d8db977
MD5 e249f60e9dd7d89d5bf465bbf3c248ee
BLAKE2b-256 028fbc97324abce2aa3952ea1507976ec8e3bb3a9cf9899db0880651884fd988

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa97d9510763e26d5854c687135d14d735a96915363cc56cd90cec14a451096a
MD5 7b8f94f4ee1e0ff4566a8a0c49db7586
BLAKE2b-256 fe359760d40dd54871b4861df0a1869699a1aa3fcb05b97a26bdb86f402cf3ac

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4860530dffa4b32ac379495891f02dca776e0a7441714b7e637da6024b49f72
MD5 427eb5a9121fc0f768696a49f6148efb
BLAKE2b-256 1804589bd3e400bfd09fad01baabc24b691774782421211e149a02c2a75b5732

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8eb8850e78e4bd27fcf665d44e26694f85dadb3a2715620bd0bfcc127f757cdc
MD5 4891ba9edbb7f9499b177671a89f56e0
BLAKE2b-256 37e6fe1d3d9040e00b2e704026ca3d5835b5b361d7e0a03387e7d229b40a277e

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f4213eef299e43a74e3c8f3ff9c7453586ec879bf01cefa1d85f5ef56b58da2
MD5 a6fdf5b2f1c8d2a298372a6adef79e31
BLAKE2b-256 eb9c353bf5962786f1b910ec09ce9f500beef10b7974b4d04b790768503cb820

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ddf3baa03627c09f5ea88ddd9ea255bc0e956da34f1eb4c1c93eea8760a75575
MD5 3c2f9efc36b06593aff70f702ab4d5b9
BLAKE2b-256 3d4d51902f2073100209913638c971fba4ac53ab29daf69bbe5b96f981d913df

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b50af502eaba5b8cb3854283031debf24c4fb9e90e8834feb73cb90af21c0ed
MD5 34fd707b133adc1db0cbc4b4c78fe1f3
BLAKE2b-256 801c3810072bb9f05cae63aa701dd76df495f1b38f6d42954ffc0ff2f4a716f2

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c1f5c980e82336d98af9b87ab80c4dc16fae257cad62180301f96737b48e992
MD5 92f38331f157c1c4c9b2d2bef1ddc594
BLAKE2b-256 e3884a217f25383f1ad4289438be84a4593521f83965a433e4243e10b73afca8

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5f003347c125b439f260f587cef33c08d68bb217f1e63318890a59db31c2ade
MD5 c6975a78ccb9e470254c849e6324ae5d
BLAKE2b-256 eccd4e8921819c4cf8460f243d8cdea3b5bd3e81930e89f4d83bc7c5392f5ac3

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7c32ec1f5c795c31a54ec26e64d419d57b2f07d5da2cbaf8a972e4350765e0f
MD5 71cae7319f1ed94d41968894c2ef09db
BLAKE2b-256 bc98e18d1f8a67b146de65ed94b89a77d229f8abe143686a16d9249f10881659

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 640433b2ba92504eb63bf4777237aa52f36bceb67c35f3628c219a5a477ef8c3
MD5 6ce683d1c992baa8777921d074494611
BLAKE2b-256 8b5db372c1745eb4b6ff56d9eb2e71d91526c16c403a95e7849c0509ad5a98ba

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb6c5962221724262ab0c36230faefd30fa5ed57a5c566f9656ff81bf9584f5c
MD5 3de1021bfbfdfd053ca61f20d708c936
BLAKE2b-256 574725de21bf94e14b61649e6ca856adc8dee1a44270d42a2f635c168d3ee3cc

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2bac0f42728a68b5df6b305643ad47709095367fdc439050ca638268c41b6ae
MD5 5398692e6444e1468ccc1db2605664d6
BLAKE2b-256 f675ba3d90e891e4a91ec7eb2d3ee8d128bfd97fe6e412092c38d666b6938381

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35ed821728a7e672227c9c4063bdb384006fdb1490c06ce725a63ca2eedd37bf
MD5 fe829c011c1fb6f8b81fdc94835d19de
BLAKE2b-256 553e1d4f0cbf80c220b5af28ded73b9f5c4f87fa35ec880440e0cc44432f0a32

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4714debb91a60a9ed8acdbc8e0039488658f0d262fd3daa7ca4ab471c4db6e45
MD5 d2c27ab1242442482ea9c0152cd44e86
BLAKE2b-256 931de5bfa1565d48e69b70a9839b9b834feacfdf45d60063e0b9c6d76688b143

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 30c6804565f23af605a83a8d0c93697047e94a1ff4af28649575d70b2b1c0079
MD5 2aba31d1991883338f505c5dd530f783
BLAKE2b-256 8ec040eba9d6c703910c51f01c65bdaed42e0e6b07b8b7be32327146163c06ef

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42156feda3a3ea92fa4eea08e4efcf1e336d477815e4fa623458ff79610e7e91
MD5 8c67ab8feb2c17cc5d1c4c43d7dde4e3
BLAKE2b-256 6edfbb9aee22ce80b766160a02fedbe98a2a5dcbd1b9ab54d4f4737d39997ba0

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab1d4a319c3f3ed6c66ae0d2d671848f73e264609b3c72f60280ce38c06683fe
MD5 d901de8b07d1ed231b1032e32d70373d
BLAKE2b-256 82c8931168b674aa05355b16954739b3f5d66ed4fa9296deb0e6df9111169e95

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a71ee6fda5c2159d9c4574ac432578e5aaf4f0376977eae2b860a4f0b0bc8df
MD5 9c1a762824809ba9497570fcc6eef80c
BLAKE2b-256 7a014fcc2e70fa7d7486468104b220629240b6658ce105157ea59a6379e2cae8

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 68e32bc51aa560fc48dd8c9db23e217e81a383e407949c5a9c5229ca8ffab26e
MD5 f32524d1dac1f0e5751f4471361bad8e
BLAKE2b-256 a4afa454cea3c0d2831be46d6eb32987806bee0f58f008c5a19a6f4efb051926

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 094ac61812c3ad97ad840b79686bbcb11229657a48b3b58961ffb382fa3ab769
MD5 f3eb383c84aa55139a3d15a6388a844a
BLAKE2b-256 698886c8281f23fd9d4364dcfff039884b7eb59482ce162d355772f3e74dbdde

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4cbbcf81b4dc254e809208a412aba5ec4e1dd1179045b0508589955285bb309
MD5 21fbc61929d8123fd2588e4e5d112faa
BLAKE2b-256 a212f984d14ee3b18df53d8b4af4386dc494831af91ba69a3aead5bf26de00cd

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ad99647d4aadd150d069e7aab3f9ba48d0674be68b90f53f8c8034c49ef1cc6
MD5 f6d0cb9862ff4298ed48929c9c26bee6
BLAKE2b-256 5fe5e4023ca927702017688f7ace980bd99eecb83042211cfab825993e453da6

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de3daac7fdce041738b17486e7209771d37d675d6ff55831d9849ce352d5ac01
MD5 dc1cf07b555879912ac581b7da76a444
BLAKE2b-256 529221a4f3709577743486ff44b86d085e27e4f53c8d8ceac2d333181dadbaab

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffeda687625af6f5d887c039d3357a110a556c55187a940416ad853d91f6cc2c
MD5 eb8b13179cf29eaa9bcd741398138c3b
BLAKE2b-256 da834c833317c5cae41033d13f89635a21fd0b8c60724366a8630febdca6e014

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3eb1c020242921993098082288be80e7525eb87ef14269b1cc3da3c8bc1049f7
MD5 ef2e33f35903ce4afa20a16029a2350a
BLAKE2b-256 ae2089d6c572f29d85559085ca55c4618dd4c3b1f38373e75acd6f9ea631f706

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7a769d550a495a4028a2ccd80c914cd20d616074845e6ac8c6970ba6fdc5145
MD5 945b04fdde1f10a474759d7d73be1fed
BLAKE2b-256 8427e143c8dbc1c806d26563c7058f94220898050e12043a067aa283a6aeb155

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5b92c0a8670b8489ca0e302ba971457d4260092ea86568a19a1c6e3eeac969b5
MD5 3e318636cd433db7b515a4e1c809b00a
BLAKE2b-256 f8a1cdd81ecd7bdefd766c784e0b59168b91bbe4e7f6d6239768c9cca988ed88

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0491b4639019b760abbc0abbc1633f57c6273cd74c16c56d00fb01a43075fc4
MD5 3df23192955e2039c97f2d1de4a580e7
BLAKE2b-256 62a2d693f89048560bf170399eb7ebf5ea5adcba005689ecc7b411bc9ec944c0

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 85fb2ef5630d45e7f3b043f29d6e28f307c9a36a5b6ff0722bd7c24b1769353e
MD5 ea63419bd757c0f50974960d0788e4ed
BLAKE2b-256 d96a074670758a3b1b76ec1d1b34751645b0bbfe2b82fd5107d6791c7f9e795d

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52c849c97455669be456bc8467025b126d2bfa92414fcbe826f29e569aad043d
MD5 4e6f8ef6b64209f411f8604f2b841d6f
BLAKE2b-256 b74fd25eff7eb8d224716709142a6c777c1b359d332ec7a4d8d9a6c1a1a05314

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a017b138412997b607fe3485181992fe1ec70941e142e227707a924ef71598c9
MD5 e897c01a582779b34c261cf20ce965bb
BLAKE2b-256 23c884b3a6baf5277870b981848cd38da7c75dbab198571a96382bd03d32a25c

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f741a7f57f555ad632756318084b87a4ed1feb195d7ef6b0e877adddf56dadc0
MD5 e73b23a1e1cd0a90a497ea26dcbda476
BLAKE2b-256 632e4dd7d9bbf9737d82cfe10b5da1df72c2404d24553961aa47c82d346a4271

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 987ed451be67eaa084561427225ccd2e32461d9c0a7a3d59aac2d63857f013b6
MD5 347cb08188dad03ed40b5634442f44bf
BLAKE2b-256 179371a2d18b98344794384d2d7ac39805ad512694859d8c467b5cc8cf5efe56

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 424929a0d95b293b790e732ae86af4ff92ddcb2075da049e98a5651fb37cd3aa
MD5 d5e613228e4cd700d835de28b42f7f88
BLAKE2b-256 7beb59a2c9dbad96dc0a7aff4a8a1e63e6c3de7b093a3dbccb8a8697904d23bf

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66bc52de0781eec90ec8d8f7ea062ee711e670e0ac8a4aba233ea4eec2c76d21
MD5 4c7b05a3b7759c51d3a8ac7e366a94a0
BLAKE2b-256 04fe84e1c09293009a566a93b089167cf685ebc5320fe886fbb679903adecb20

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da647908d55ac5fd09e124d60ff36199f86097ddc0435f85fe78545766469fb2
MD5 9d7b9c953fc11d309a1b5f2f907b9a34
BLAKE2b-256 1cc90b9d41eed7c2039027c2f8462edafaf5875e2c5617ee815945a96826a698

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 657d0e724d7bea12879faf5b8fdcf168a9f45bba53a411b850ca12b5ac22e318
MD5 f94ef56eea7f73ab30aa21a35a887294
BLAKE2b-256 6400e39b853df9d39afcdf193aa76945471dd46674588dc40de9f929f4c39edc

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d689e7689ebdbfc720ec5de8513e9b7b12e480028924cc7e934ae1a58e08f348
MD5 339a9486609aa257a421e6aa28d57305
BLAKE2b-256 703d6b12dcd06a1d05722534b881cf478bf9926da646df5dfc12e2028adc9737

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d31db26bf46caa7fcc60688182ec1bedf25a36faf2e2c589cf267e1d5caa944
MD5 576a4e709d7ca3d973de89498de6abcb
BLAKE2b-256 a2cf140d95c94ff9a724ca9d5b627abcf17ec955ae8010e4a69e830282f40f53

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbf3dad9f3669924a6d1c951c6527831db217d06f43f3836bee2ad6af3798086
MD5 3a50f0230f1e5a721f3045801f5d051a
BLAKE2b-256 c2530c7e0f32b4270451fd35dce044d96e2a20f99312187cf3c0da19735581e4

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 295de031a0de1db086e649dccaabeca997dd98df6a57af5b13be132c4ee20e11
MD5 4cc0725c69bcef81ce83fa71a8de42a7
BLAKE2b-256 9d920061d1ce96f8227de2f90ac2b9de07240aae3efdb7abe42b1a88efe3173e

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad13e96ab57a64127672bb6709ef24110b9497d0b60930662728373dad523102
MD5 c66196f542634dbab6f6753c14e2c43e
BLAKE2b-256 731b71cf5e16465f6a4641b7b843ce20b89073a2b485743f11f53fdbc5774dc3

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0acd492d790051080a27e4c108225e460642cb55230af0da40eba9c9f2c5215e
MD5 6605577a176e9cce3e4d236551935a08
BLAKE2b-256 fd8ec9356e0d4179c0629342de62938fac5f5468e3a60ba2adbf45e8e22bd66e

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a1aa035f05cb490ebd586fefef8293d02f4d759f0a70a3393ba3493876cb243
MD5 1d8880db0a72c44843c98938e86a6f0c
BLAKE2b-256 0ee99b1abf1b68e11bd8c7fed594eb53f3982fabda88ed3bf1edff1fc4ed5430

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.9-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 382d3bd2bcf655d18c949ff123bd5aade7d711a18470dc7e091ac2efce2ce5fd
MD5 65bd7270dc65bdbacb29157ac56a3e18
BLAKE2b-256 0f593116d4c0e26a6f465364ad8100b1889eb4715ed3baf41d295694af332308

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page