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

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.5.tar.gz (53.4 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.5-pp311-pypy311_pp73-win_amd64.whl (201.1 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (468.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (495.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (531.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (428.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (282.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (259.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (244.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (275.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (271.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (290.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.5-pp310-pypy310_pp73-win_amd64.whl (201.4 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (468.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (495.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (531.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (428.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (282.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (259.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (244.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (275.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (271.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (291.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.5-cp314-cp314t-win_amd64.whl (196.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

xmltodict_rs-0.13.5-cp314-cp314t-win32.whl (146.5 kB view details)

Uploaded CPython 3.14tWindows x86

xmltodict_rs-0.13.5-cp314-cp314t-musllinux_1_2_x86_64.whl (464.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-cp314-cp314t-musllinux_1_2_i686.whl (491.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-cp314-cp314t-musllinux_1_2_armv7l.whl (525.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-cp314-cp314t-musllinux_1_2_aarch64.whl (423.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (276.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (253.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (239.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (271.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-cp314-cp314t-macosx_11_0_arm64.whl (268.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xmltodict_rs-0.13.5-cp314-cp314t-macosx_10_12_x86_64.whl (289.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

xmltodict_rs-0.13.5-cp314-cp314-win_amd64.whl (198.4 kB view details)

Uploaded CPython 3.14Windows x86-64

xmltodict_rs-0.13.5-cp314-cp314-win32.whl (147.7 kB view details)

Uploaded CPython 3.14Windows x86

xmltodict_rs-0.13.5-cp314-cp314-musllinux_1_2_x86_64.whl (466.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-cp314-cp314-musllinux_1_2_i686.whl (492.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-cp314-cp314-musllinux_1_2_armv7l.whl (527.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-cp314-cp314-musllinux_1_2_aarch64.whl (424.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (278.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (255.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (272.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-cp314-cp314-macosx_11_0_arm64.whl (270.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xmltodict_rs-0.13.5-cp314-cp314-macosx_10_12_x86_64.whl (290.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

xmltodict_rs-0.13.5-cp313-cp313t-win_amd64.whl (197.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

xmltodict_rs-0.13.5-cp313-cp313t-win32.whl (147.4 kB view details)

Uploaded CPython 3.13tWindows x86

xmltodict_rs-0.13.5-cp313-cp313t-musllinux_1_2_x86_64.whl (465.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-cp313-cp313t-musllinux_1_2_i686.whl (492.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-cp313-cp313t-musllinux_1_2_armv7l.whl (526.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-cp313-cp313t-musllinux_1_2_aarch64.whl (424.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (277.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (254.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (272.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-cp313-cp313t-macosx_11_0_arm64.whl (269.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xmltodict_rs-0.13.5-cp313-cp313t-macosx_10_12_x86_64.whl (290.1 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

xmltodict_rs-0.13.5-cp313-cp313-win_amd64.whl (199.1 kB view details)

Uploaded CPython 3.13Windows x86-64

xmltodict_rs-0.13.5-cp313-cp313-win32.whl (148.9 kB view details)

Uploaded CPython 3.13Windows x86

xmltodict_rs-0.13.5-cp313-cp313-musllinux_1_2_x86_64.whl (466.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-cp313-cp313-musllinux_1_2_i686.whl (493.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-cp313-cp313-musllinux_1_2_armv7l.whl (528.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-cp313-cp313-musllinux_1_2_aarch64.whl (425.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (278.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (273.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-cp313-cp313-macosx_11_0_arm64.whl (271.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xmltodict_rs-0.13.5-cp313-cp313-macosx_10_12_x86_64.whl (291.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

xmltodict_rs-0.13.5-cp312-cp312-win_amd64.whl (199.4 kB view details)

Uploaded CPython 3.12Windows x86-64

xmltodict_rs-0.13.5-cp312-cp312-win32.whl (149.0 kB view details)

Uploaded CPython 3.12Windows x86

xmltodict_rs-0.13.5-cp312-cp312-musllinux_1_2_x86_64.whl (467.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-cp312-cp312-musllinux_1_2_i686.whl (493.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-cp312-cp312-musllinux_1_2_armv7l.whl (528.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-cp312-cp312-musllinux_1_2_aarch64.whl (425.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (279.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (273.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-cp312-cp312-macosx_11_0_arm64.whl (271.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xmltodict_rs-0.13.5-cp312-cp312-macosx_10_12_x86_64.whl (291.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

xmltodict_rs-0.13.5-cp311-cp311-win_amd64.whl (200.3 kB view details)

Uploaded CPython 3.11Windows x86-64

xmltodict_rs-0.13.5-cp311-cp311-win32.whl (150.5 kB view details)

Uploaded CPython 3.11Windows x86

xmltodict_rs-0.13.5-cp311-cp311-musllinux_1_2_x86_64.whl (467.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-cp311-cp311-musllinux_1_2_i686.whl (494.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-cp311-cp311-musllinux_1_2_armv7l.whl (529.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-cp311-cp311-musllinux_1_2_aarch64.whl (427.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (281.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (257.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (273.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-cp311-cp311-macosx_11_0_arm64.whl (270.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xmltodict_rs-0.13.5-cp311-cp311-macosx_10_12_x86_64.whl (290.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

xmltodict_rs-0.13.5-cp310-cp310-win_amd64.whl (201.0 kB view details)

Uploaded CPython 3.10Windows x86-64

xmltodict_rs-0.13.5-cp310-cp310-win32.whl (150.9 kB view details)

Uploaded CPython 3.10Windows x86

xmltodict_rs-0.13.5-cp310-cp310-musllinux_1_2_x86_64.whl (468.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.5-cp310-cp310-musllinux_1_2_i686.whl (494.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xmltodict_rs-0.13.5-cp310-cp310-musllinux_1_2_armv7l.whl (530.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.5-cp310-cp310-musllinux_1_2_aarch64.whl (427.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (308.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (281.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (258.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (244.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (274.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.5-cp310-cp310-macosx_11_0_arm64.whl (271.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xmltodict_rs-0.13.5-cp310-cp310-macosx_10_12_x86_64.whl (290.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xmltodict_rs-0.13.5.tar.gz
Algorithm Hash digest
SHA256 3a51cdd348f46bf00dd600e3aaf8d49c55fbad1b504e8d3741508a601e3bc314
MD5 5c7f363ffc0880e6993c4affe0f7efe7
BLAKE2b-256 0d898bb7c160fdd93784684bffdd1e394481edca13fd474de8b6081262baaa08

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a9e1730f1e9dfa6b6874e67c68950f2c8f5ecb9f697e064c42c3fba5ef1d2dba
MD5 af634678bce2fb6954eac57d97743ab3
BLAKE2b-256 0acc167c1d9ba6dd55ffec25d7c3b87d5d2c898a1d5dfdac9a532f464b1d3387

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c64ad3fca52d53ae3af482a4f9af15dec5ae5684773fbb12b4fe4c4378084cc
MD5 0379860a24db8c7ee96dc161d715d783
BLAKE2b-256 a58897c7ba4e102fc495b5e4a52a7ea29ae4732bcd09104eb31aee6ad838b46d

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 347b2584564910b14970784eda4735d245277bf416a7046dfce833dcaf332f8c
MD5 db4ddd9f921ad859540f1926d7cbb289
BLAKE2b-256 145433d13d7e8294145dbc8c549675d946e5383972f6da97e91fb61de4023a3b

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ed0426368d6ac5968a4d18d6d6899ea2a534e405cac22355a394b32a9435c12
MD5 184ec3843b48928b62c73b7487249d2a
BLAKE2b-256 9d1120a1f378f710f7f6d2eee6b7ff3d25ef0e3a7fe416d785c63e664e762c3e

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8129df1344eb5399dae32194bccd9e6baf54173861691b831b9b70bc685163fe
MD5 9bf5c7529194f5cebb829f5614750d03
BLAKE2b-256 a9c61e02a8c830f9f7accd73f8f93f7a4e15b5358a6030dea76edfb1906e39e0

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e4b8bb674284113dd818fde39c0ea7391479e91dccaeda648b747f73e2a177f
MD5 77990e31b6cb378920bcdacd0cfaa3b9
BLAKE2b-256 f11f13f58e91399be5dd4d9ae6a742c9e7aad1311cb0cb4b061f61c516ef05ab

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c8752216e0470c02a64763291f0d44fa4450fa9dfd55976342ac48216d5d455
MD5 80541fdcd560b305435a5665cbb966db
BLAKE2b-256 64e991311aec9069a410dd292e27326bc63f92bed44ae99657ac85d0eb4af909

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a873a8ad07a5070b4d30980a6356680a25e6bd9d1904891cd1057cfe0efce691
MD5 8babc6d89ffcd7b11e7dab82cda5e692
BLAKE2b-256 ad1e172eb6f0348ae2925532f6522ce9c24729a6ed34125ec59df67d6dccc51f

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 292ac773bebd4026441eaf2c12e8c0b75e3833615fffa8a714ee01ef0838ffc0
MD5 996b80664891a6aa80d6f99d68253510
BLAKE2b-256 4eaac8738bf770d53e1e4cfdbd58dad53f8456f16c8023eb29e2e53b41fea3cb

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b7b889f21aff47949d42b482edaafbf1872156e8e4d3f3e49989a68942be749
MD5 ea633c75320e56a063c3766751e13a36
BLAKE2b-256 144b89f44f2e28bc9ffaa1f47272a1e6ea2a7aa452f393b1d5dd80eb3529f3da

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 02dbdd826957860bb003fcb3e838d05a4ac14972fef9e36ab1ab879b0304f918
MD5 acb3689a66453ed0f919c04080c36ced
BLAKE2b-256 215eec3d7537acfa4caf91dee7c293271bcea5a6389b61a054bc36dfffd90d56

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6491f7750da101a7dea2b685fa7287cc07b0e208bf84645d246c88c7df5940ab
MD5 4ae8f2f42a040619bfc82a98eb5c8ec0
BLAKE2b-256 a7f01daa6f0a04818a22656f67408faeb61e278e0eda20d2323194883187808d

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4bc16e4d9574f5e9f3bed2b9917ccb7ae308fac99f4dc5eaa11dabc9ebd7134f
MD5 8912f66d6ca42aad8f8f82859f41fe9e
BLAKE2b-256 9a2ed3c1b3ae8370fb5db2c7a086b696680b5c18adbf19335cfce35d9118011a

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 21f7ba0c071c4d7cefc36e19914a46f5016629771f01156bcd2cf7e6c615ae8b
MD5 a2943df2a906896669b6763074e961a3
BLAKE2b-256 4fdd82946155c23b7d5df0c49a0ce2d72a486e36d28532d75cbb535b8e582f45

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3519018119f07d0f4552369b25976c54e8f737764cb6084029225318e451465
MD5 7693024a49c173f4d7171a0bd3413171
BLAKE2b-256 7739b8f17f706648201d11ed8725acd32b667874d595da7d29eecbcd1982a214

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d843bd42719ccb8ce45663002b76b5a7c37a281896e167bf871cb96efa648005
MD5 ca53987cbf0e5c30e966c38d35bdcca5
BLAKE2b-256 6457c1e814ece059f148d795d7b2f096883d6b5e69b4e45f2dfbb8e286646b9d

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c75890054073df7b79f901390bca0944665acc718213385dad144711bca01020
MD5 c1164ff29155efba4fa7893645a8e753
BLAKE2b-256 74526ec56e5559b4dd315a1c983abfd6b366fd5b1679abdf0e8c55f2789f4bf0

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b5e9a168c84e654e9fe4a07abe90d5f7ed74291837c063868de5870ccaf00e7
MD5 bf62b86a7b0b90c969444bbfffcc099d
BLAKE2b-256 6468b9cc4486415dae816dc880a1d1a4517ac70ffd248c2afe4f53c0f5641879

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5414c1f588372e408be8e98cf54599f6f092514445836a4de51cea8982979c1
MD5 f1775db314a684c50f27224c13ee36c6
BLAKE2b-256 ae10f1367a6cf9a5051f8a5e91b1c69c78fbe2c59c4b87c4f714131fcd5eae64

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44131389f8ede8ffd3b921e06feea982b24ba012a403537bba783e557973ca8c
MD5 3cd86dff9825211c2fa3cce715e2a994
BLAKE2b-256 739476ba8de55978015200d075969f1b47bc8ec33fe9b4e787b079b0fdc245ce

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6e41cd7a97aa942bdd8aca0e9306f1e9687fc35809e57fb57d62d6bb5ed7d59
MD5 1dee53500f02ade1e57b80b0c3f1b793
BLAKE2b-256 e41665f3c9c264f780d6b947df17eecfcb27a3726d1a371cf9ae63252cf2eee1

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ab7734aa34fd58ed88c10a6695f5bae77417baa2396dea573ff3e3c25358c63
MD5 bf823bbd7d0211b1a3903f0b42a2450d
BLAKE2b-256 7d459c7254abde28b0435286afb68547461c90afdda1845dc9158ef23836902b

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 773510b2ef9272b5ef50759cae79bb50208c25fe8ad2cb1856abbfbe252dcc54
MD5 7915c00989b807449dc18da3008b2ea6
BLAKE2b-256 a2c8765a09fb3467dc71bd44347a300c95c2f255670bc2fb84a458f2eeccc131

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 857d124f821bddcc51f7ac27f9f9a731aafd5d708aadae6fe8221e0cb7d4ff9b
MD5 2bfa7fda6dbf7c33bce09585038dbb95
BLAKE2b-256 0ac13b0562465e6ce87f5e9b881f03a80b3660fadb81fc7e3026b7c92cb50757

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73fda4724f7ca2fa24f05faeccb6ac39896a5b6880e13b2e3e28f9a3eb41d009
MD5 a020f2fb8ab93cc7b24d635db6a4a68d
BLAKE2b-256 9d2a886d31881f6f82615ddc8dcf510e53df5fdda748f460d3eb60b60dc5e2bc

See more details on using hashes here.

File details

Details for the file xmltodict_rs-0.13.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f3c274087bc2227a0a681f14d7c03286e4d78f4cf9da083912890fef3a7bc22
MD5 2a816ef8567fd3e998989446f4c80ed9
BLAKE2b-256 fc53d12309cad9b78ca46eb909c3b193a688a3ee00a02f18d3fd02565760e57b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 23353bc575e43c96855488b8d1212987a2d3aeec1f3bd923b39ff6ee57b49570
MD5 eda845bcf6022e85f48ede4f319f5f86
BLAKE2b-256 83eadca8e8b34ad61bb24fa72115314584429fd69d625bb0ee6492ec56998f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 11a40adbeb447ee5515445ee8eb6d439f4ee6be55688d7b3abf1c90b36e8722e
MD5 3b9db9d554c5a50826197b16f7ffb64e
BLAKE2b-256 ad6fa3a3c42046171ed63ec70e1e2b2455ad4b70e4ab3bafeef8b75cfc01a56f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ee6acce707faf430ff7da5458d04dbcd77a8abfa87fb8fc44474cfe1fd05de4
MD5 adf8c5ddde775953445252b7a883b454
BLAKE2b-256 059a279c26d23aa18ae83f02d9df8dfe9626d31337e30108c2ff72008312e439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e865c2c5ef92a5c6176720ff97f741b8b4d91e0d09039d8302216a0189689321
MD5 dfcae62a4f7c4f323e90626a298b3d4b
BLAKE2b-256 7f1340cb48ed1a5117b4e8cc8b87ce91ced51b99010189f657562c3384dd5015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd5ba0088eff1eeb82ee66cea0b27ad07c04f88c66c017d3344fbdb2b5403279
MD5 cd02788065d7fa985d68b7bf2645719a
BLAKE2b-256 e540394b6abeb50f248ed5c3cde3b92807af8a7f89e5c79562e3a238e2f783c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fc6031246c707b03c061648c7291c8eb74fec5bf7b1004048a157d4ee6eb6a0
MD5 865add010857556ba23f7087d8e5ce08
BLAKE2b-256 138cded9739705e65e0362d20f8ff9fe6f45e2c924a315a11c8a5e243f574ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a446cb97bc80fc834e8964738ca702a873efc3e4f666b2acf455f5a56ce3a2c3
MD5 28ba6b8a5337152024f7a1a5b5079593
BLAKE2b-256 ddd0f5d36de4be7faa9cde4458d4c19653bf24709bb9f8b5c305602301627cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d56b6ab48f002fbfd4724e722d6ce44d2d1fbeba69b001c32854b213e7241e2b
MD5 85e11c2a43e11f5ee78f7d3f316c283f
BLAKE2b-256 a03716ce7219438197cf446f8b2623f7fbda493da7afce4b31cd32c63e677be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06c9c7077bd5e7841148c69288bcba0258a3d34aa2c432de30c69d0e1fb6b816
MD5 224a225f38517bbd77cd4970d53c564d
BLAKE2b-256 0103fc851dd6b9efe1fe29403bca98f4e729b3553ea98ee17a4b7321ae6a6132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6385a60cab8e62f994740550a2c87f70033f33c58b42012446c7e9e37312e72e
MD5 c4e7029a5f9681dd58b74ad316a3d817
BLAKE2b-256 96bd16b59f3ee96d7aafb67aee9d203cb31fbc940375b316f239bf067c6d06d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 700d0a75c33b4b52361152b9a853d8660662a89e089fd5621e70902a190af06f
MD5 ec345f154078f5aa77bd407431a28374
BLAKE2b-256 3d81098eda197a31384bc1d84805b55e1667c1abbea3ef3d7b54400e0c547312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8fff25d3f91b9e4c6ca840aaa0fcb2e462138279ac2b317f8e439670aa93471
MD5 24b72a76288c1b946b53e414afd1cc6d
BLAKE2b-256 dfc749aa1deb51278815ffc5bd6227b8454e6ca244e684e9e780048e6b427136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77c609f1ac4e3adbb3316032ae9d18cadb946b90a9b58d13730221a1633802f9
MD5 5cd5ff8b9759c94731ec816669852a9b
BLAKE2b-256 dbee97b290038bf68239474c52be0a35bf5c078f5aac248282eafc467a123c0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7c719881d2988c4bde184b16eff2f194f9880cb605eaf23ba2978b5631bb0f3
MD5 12864ed1bcce8c07e56417f64a0c51eb
BLAKE2b-256 09d441cd24f47da3b1523b6deb4b8ad3e2468fe108e73eec63e4c66ec3ac86f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 935dbf77626407b9c413217bfa536029a2ff4c9d69cbc1bb84073edaa8c056af
MD5 68a278633816023925a7163c29be52b7
BLAKE2b-256 cb67057146c3e107aa716ace304862253ab27a2df3e7e50594bdb681b4d8870e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2ff28bba27f7252f61e2c7c4fceb57d94cf9c8361fa79768cfa14f4cf81432ef
MD5 87041d15062a162a0ad545ab08e17f12
BLAKE2b-256 335204873d52f7c09944d256bb93e655af1689850c3887830772b921b7f18367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ebf56c7d5a9ae291fb3a3c740492ba9f41e95a197bf2b5690d3bb1e73014b81
MD5 edc45fc114db1c8236f3ad4d61290f74
BLAKE2b-256 2d6737f2080720f887a590c15d7bfda91215497c15e8156030ecd2e40147a95f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c342d657b96e7664c8f947fcbbf13f1d4a62cc7a1194a735038cf0357ff9da5
MD5 fdd6ccf879340dd1fdca31f153abb9d7
BLAKE2b-256 5383a79feb73191ecfc5600e028645a32c73193efa6662b0a9f990c72a2c2fd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05e0a69790c595aa76f54c5a7e9b8fb277ec1ae61badfc4919554b5f4a022c13
MD5 c2718e4e9a80aee737cdcb3ddf22f0e0
BLAKE2b-256 02f757989102cd14b29b2ccaea435a7679c947d1f190de8a85757b857c1ee2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 604cd687ca03083465f77dc3fd3d9cf052250671b3c0f6ae4c4be4d06bd9d345
MD5 daefd95bb4c06d5d2b63b9aef5c318ab
BLAKE2b-256 dc57bcfd321541f4b0f466ba0f86069980089a6e0f32f3c96697db44afce0036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b0f2adc8adfbe872d20459cd4e2c58f0960ccb4bd5f7592fbcb495c2f51be96
MD5 7afac5a3340956f434ad6150cd80b9ee
BLAKE2b-256 e84c9a78396cfa88dac3f0751aff68852e27effaa713689e31de79bde2fdf23d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c1f7f6e6d8bdb2e49e2d7abd582bb42993b9c6466af9b26235b1b1d05a92886
MD5 48b20783b3e42b230f858f5264a40fad
BLAKE2b-256 beb35e9f55a4c6700da26bc10474be20e58a7f8934a47b893e2ec8df9906d24c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95cee387d2e2579cb1c2c397752c3247cbed64236b3875066184dc946fd57399
MD5 b25e6e2a2feff3bfcc30943a26ca3e02
BLAKE2b-256 b7d95b490cbe78551f46d099bc901b2799e881e7142c68c01ba54ac7a160946d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55bc2bf34a68b70a45b1ee89cbac3fdbcd480b03bbc889b0d6e6d24b27dea769
MD5 26d070a570dbf046f00cdc496d899d97
BLAKE2b-256 b6cd604e7e9d784ca67ce66443ad35a02fc4d383b9cd2cfad5265617661bf052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57c15aff230235c6f9cea5eebfa55e2f5d442cbe33ce7718b94790a24af97d50
MD5 8463e0db3fe3a736a325e19dba367358
BLAKE2b-256 34f58f84e420a728c5bd3fb73aeb71a36efb8c0b1fe026d04b521c281f79a6e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d92038973a430b8afa009f895e69bbbd916f07fab70ab2ef0b19d47ae2a204d
MD5 9988d81f391d957aa152754b798953e0
BLAKE2b-256 f1bb392db4ed5c232b000df132af9dc58bc8b589fad0f54d70352e27038702c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 122e15f39108337a3e7fd3e0d22bd5d88a099d6ca12abed6dff8e79db74e57cd
MD5 fd964bd2affbcea37256f5c170ff3027
BLAKE2b-256 274dbe7b98f00f2ffe0e042787e52be0fbfc35d2c7ab30a743545b3d587eb4eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 472fbcc6b5daa87fc8c275bedb5d4e727f29acc874a815be3c8a7f3943d6b3f8
MD5 d637f3846dbdda8780aa4e57af09cebf
BLAKE2b-256 ba76704c54f12dfaed4a995317c6cceefa42092de0781781354bedfe43fc0693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 66eb3ed24b4b9fafbdf4f3abd0d7321aa7b5af0365a9cb48baaa756c3ce0c0a9
MD5 81c86b02663bc6d746f9012206fbc4b6
BLAKE2b-256 c44340072f9c8e5a97d6790c2fc6c111aa7a09d49d849cbc2b8139d2edffa25f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 00d907e3f4d554f89cb96fbd5033bdd342ff7b99b7d0e6aa7df11c090aa542b2
MD5 ca3fd8b20625555e6f6279ff4c7a0cf3
BLAKE2b-256 3fb9394e316301451091a2be74685bae747e42d30190774366f08fee2e6dbb67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ce2d08d6b213b76b2c2067053553a92168897879bc14bf32d47e954933b1c10
MD5 6f9798ac17647aa94789913257811827
BLAKE2b-256 d7d846e593f217b60615191d62e94606c04b667a163224e48e52f00de9d9adc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b8adfaae8c932ec672c8edbaa6e889c26022c9bad49c7545b7d911b523e333e
MD5 a783f456ff34ffc52104bf32c2e5f3a6
BLAKE2b-256 bfbdd240e3413290b11cf2d852aad26717a068e87088c03dc5b48eed14dc9187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8674d241d086e09e1cc905b24de1379be206923273cea868d3266cfe46e86907
MD5 df0df167cad4a8d8b159758a8a47a9a2
BLAKE2b-256 be54f94d663bec6d1cb8023eb72f4bc7f38d457e2c2b32ce388d119ff310227a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47936d97dc3571e8dc72af8d8522392ba171e54596225c400ea2d17d4938a6a0
MD5 4fc3d4ae2ab2836b727511705e9595de
BLAKE2b-256 4bf121b6b5902dd0f50f04cde2d9d9bc7648bf01239ddd2dc891af8f86d3c216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b88ff60f355d9549c3fc87a8a400acffe2ff83e2fa3200b8de3a93caccfe064
MD5 6fdb02713c6af72e43645f3c89e36148
BLAKE2b-256 86efdc0233440eee3d7c85ea1cf393f5b08eebd97f94492abb5836cc45960d0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7dae4bbc656eb6eb7342bdc303531f7154d67366a4f6c557c26cca1a746e307
MD5 e89dd0050ce9a64a2112cd4d0b4d80ed
BLAKE2b-256 7edcfbf6bb6236b0951bf0006404d38cfa6095f9cda0651ed0a033af1b6f9c9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e08549aefb30750dbbd04eb4e722141e569f1152a9af3fef8078b913d9914401
MD5 4d1f1542690f558e3c7dc9337a57e841
BLAKE2b-256 752307cf5241294afa2d4504b680e6290c60e873eb34a9db8e0b42585493cce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a03059cffc6ca29465d57ed2f8bb31df1553ba552d0a2b194491471b52f7399
MD5 347c101317bf2b4cbf4ebb67d5ac5b4a
BLAKE2b-256 c19bab909c1cc2ec5042a774a03d87a1ba659d2547f864d01791a41435112018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de1224380392866a75bf85460a59beba8ff898e4cb248f3c59e074f92be7e949
MD5 fdab0f3631c0d5850d1f1fe0e96860e4
BLAKE2b-256 a497c5d8022d0d005f5cfb55d07d9ee57538272c8c9ec8159feff3dd94616528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9cd8e1d9c7f2f26c68fd413088c6adac98078c85815b9acf7995203c0f6a7552
MD5 eb7f5618f6786f646fa4c38b2183d4f5
BLAKE2b-256 21845d947de19f06fbed00fd6bf9a412d2979cfb3a3b34b1039b60cdb253f10b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b3177b8e16c17c7cc614c05463469ffde0efe99f5c15f8db92bb9d406b731a6
MD5 15834d5179577631476db28378458065
BLAKE2b-256 dab801f16156c098759a97826f8d66e401e8a412ec1a8d2e2775de74fd0b2fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04646d9ce4a48c84c3790a8ca83b6120c4c42443170ec8d17ff3ebd859b73e61
MD5 bffc4eee2a65ffd0c409a82f808b3b3e
BLAKE2b-256 f7a1a866edfe0e4e99f45f5cdc46fc4e5b0cf11a82c73347eaf3c8617ab16f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 69011bf60ca6f96ffab1d518999a4d386c4dbd3b7cd4f466e4b837fd1052f624
MD5 8e35dd549f4c29ec255c82270f61a52e
BLAKE2b-256 06697a5d94033ddcb43a3678ff10eb43a865258fa202278e6a2855cb064a70be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c8c0d2a84bcaa9171df486e93d12033bdf8f33fe1f6e14be418457eb49988cfb
MD5 6806a0f949ba4740a34901fe97af41ca
BLAKE2b-256 c41b373a978286091e349c05fb8bbe9c4620b247f2788fb2f28606ead8e0334c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a17a6bba8c31fe6b3eba268919ed584ea143c414459b537833cb71835cc0027
MD5 3570f7a8c40587bce96026276b73afcc
BLAKE2b-256 d338db8383c282dc231bd6c136b45f55f9676c31e01ef86f3e8975165a344b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79b8e75caaae07130caa78836ea528c1a40adcc853c19679039290fc95540e3b
MD5 c9e30bbe720c5b22e9ce617b1c0b1b56
BLAKE2b-256 9eed8bf7cf86607d8d49027250abc8cad02324b4ef51bcb32f4eea558007da8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 580cc3c5bc7c1cffe66353b9e1bd3117bc3e09ecdfc6d1cf31e8a7361234fbc9
MD5 27b2a9eb34b8efed0cff0a5420d137a6
BLAKE2b-256 a0df63ddaea369ee799d94f740f409a492b4076b73afa1ffe17c20cbf2146f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8be68d18b4504d0380b69f90a0f099a7ae1340f3fe7da9a9ab851ad6996d9979
MD5 9b6215ba503caa173bbb94c92abc2867
BLAKE2b-256 de06b0781632ca367f9592608a95b24331be0ba5aa56901a76d7edfcdf0949ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a09f418df2bd50ccd1836805ccc70af3c739d35ef47fe347735adc7fc605abf7
MD5 30b745043952125cb0a5d1b6dda42aa2
BLAKE2b-256 c0d399a88eb3ec113b5d3dc5886af845e71283bf5f1e7dc839221917fc6fe632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d567b23b35741d81df431aa945768098e190c4ccf28d3475c4b135fe8db05f0f
MD5 a8af6c7d5c52a129bd5d3387df80fb2c
BLAKE2b-256 0d5d6246d840f0666e87bb8abcdbb73e981a7925f956d910706ca66532ea4edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36dc9c33c91fecbbd419f3097cfbb4958243dcff4655b0b980d856bd216f8399
MD5 7271338a297d02068d9ae5639b5d10fd
BLAKE2b-256 8510f263eea0977b61f9b3feb2e599f6ea56bad4b89dd569b1d9151b53cac77a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e49a712ba8fdf846007d4b45c6609f63a0b4034738cb13a524f538149182c5b7
MD5 b9f201032889b8c717e9513bcaa524d0
BLAKE2b-256 cde3568bc1c02ab58652e66762305ec66704899d719e31b0b8462b183abd1df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c06ba302c3e1f57c9601d6713e844d60d136e0e0fc694f4018742e1034183a6
MD5 85ed209e9203390b3b1e28e3bb37cf30
BLAKE2b-256 6bddc62578de2af1b12adb4fb294103eaed017ded244e1e105ce6813c609a677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 101cc65f2bf66f7bac554b2ee2032ad12f7ec8d5fadff90686da9b81102e1edd
MD5 61bf2cef250fe33eabaae0da6d979b46
BLAKE2b-256 0775778a424f7900aca884f83f39a998db94d0a3e76aedb5473f6737541a5753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7da62cedcb3715e411770fbb3a082a3f2a2e976e390e06ea942a53a4c97cf0b
MD5 d36555f9f17df0c3973793556ffc3def
BLAKE2b-256 8d36163c7493f0de435517bf324089fe1a95169e7b9333b97b83d148414ce7e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52aa918be8b7de68c12877986fb0764937e22df749026143f37b75243a5abed8
MD5 139b9eb1b4ee7c844378d82de70cbfbd
BLAKE2b-256 800f79576c7b2168268285057d9cabb005e7985a18bed13ef1b802c303f5626b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2e26c425afce7cde93f544881029ec8148d8423efa9d0fd34a59a1d2833d657b
MD5 ced01dc7699388b122e88d1508e8b95d
BLAKE2b-256 ecd6cb6df97b24d8552cc213e77e3a711f0e8109eee8dc5b61377f66dfb92188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 10f9380de252ca74056eb5037f9a775586543c9ff19a80096d0aa349437887b3
MD5 4be25ab2d1a43e53d8c90df7ee4d51df
BLAKE2b-256 99c89a2f97fc06002cc6a4b2fe7603467fe07330c3ea0e9208fef53dec100e72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4ff08cdf6184f32a9fbd869e000aec554834585550beb4667e96c5506a66a28
MD5 ff25829f482d0b1f52d4bcc57082941f
BLAKE2b-256 415e996ff38656fa5bc29d41a30479b5af9a984b10bde1a49e7846d5da3048a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4874ba656a2c581a3d13756b235c24c96976b1d5b11f8920990cc4545381cdcd
MD5 f7711e47b439b15d6d838a0966f374ec
BLAKE2b-256 0a02481abde32154acccd141e0d4fddbc83f2ec4f5c8c80c2846cb0c2f32c032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f1f32aff751ea77f501ca2e388465108988b0dc90bca7e6414b9503aaac409a
MD5 af9290c6c650fb6fec93ac2a3db29af8
BLAKE2b-256 e380a7903f3576983b9bb5f5b9ff24d120ced109733cfc0343e8352407dca888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 befc6ac5f193eec27a3ee1eac250e628b2f7037d08d7645cbd366af7df6556e4
MD5 f73cd9ae2ff24f4dbaffc9a0b476cd73
BLAKE2b-256 4606688de3a3c9e58d8027d7c603f219470860b155a087d7f386d72eec79680b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84f69776dcd6b41112a1b15b951e310b48c4ac4a02ee689ae559fa6d4caa9751
MD5 8414f1c183deb2905a9e36121546b7e8
BLAKE2b-256 ab22b9596762b7ca0594afaefee052c023dd6c88ad195695a099b48af73083aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68c75fa307183bbc0389547d97e15ebf65c1d31d3d4b13ac638e47c8afb76f03
MD5 15a63c4d4fd2042791a324a28b7757f3
BLAKE2b-256 00cccf3cd8782347c63d74f678c40a303e51398c5fc54ccd0b053c70f7b0e7a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab65993b99960c7fea3f286b4de695bee4ed90a41697a25d64c1c1c65605af26
MD5 17912557e7adceccd196195bf88dfd6c
BLAKE2b-256 10e5806e4631f2e00c09e54b387b585e703135827d75965929ac9bf9750431b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e51820c122176720877215d68259ea2c75ca47a461deda05f6509379233ac3b
MD5 3cd40428946522b3cd3bb9a14374c086
BLAKE2b-256 0565bef071cf482623040062ff539e6d732c95c0d2d6d06efadf9365f28bc0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ed7fdcac612bb819fe264ca536a712803b0a6a06efbf013fab7f4cefcaf564b
MD5 c696af7ded1428d9535978ea3fb3bcef
BLAKE2b-256 16cb49079d2542b2d04bd9f4fa5280fb586452fbadb90f99d1d558a12568f07a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74eb90fe2b544fbaa9ed1afd89ecca95799bd4ca614f9302763aecf32d98178d
MD5 a6e7d556a7b990b959c822b447b27428
BLAKE2b-256 6a451e31f896d032077a794804a5705c60777b00514462d511715cd0c08a0519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f350b275859426dee097d0d43e6e08c5611e2f3bf381ca46b8c8c2f2a2638492
MD5 26647b881eafff9520b7566c2c28d119
BLAKE2b-256 960c9d006d9784c57214b730a187eb8b194282debe7555f091c804bd2aa4e482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef49eebcb710649f5c59038e1a1198918b2d45ea0498b2977c67ee51ea54ca53
MD5 23c7c0015fd1d5bf4abf80c07476089b
BLAKE2b-256 e92e967d20e7b62638672d741ac76be15c95fd0418f3be62f432bac4d493cb78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 67cc3d2c047d62d3bac04cbab392a02830d5e82e68cab4882a8c1da8103a7af5
MD5 ffcb9ff8c07eb471748180277fb3a8a0
BLAKE2b-256 ebf9c229f3d4fad36f5d050342900932027527630b29428326f726a77d5546ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8a98ec1a47e663cdfe23efb56f0d1ebd364cc3841a17509b4369f672de2f93dd
MD5 38f854643068e6b8a12f18bc7d7de11a
BLAKE2b-256 2c966ec0ef6b7ecf0b7e692449276d5d6013fd0701316b96e139442df5360f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36cbfa610c7bf274289e66dcc65e245e21fa7f7ec5676f11e14fe03872c6fc7c
MD5 898e72d3bf1299819229da55e87d7491
BLAKE2b-256 e751e14a0a4de9b7c9b722cf7e475a6d16da2bbaa042b2a6070d486494457bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6d5d8e6f73e51c7b616ddf9d8482b5566575955ff7f7142be785c3374546a82
MD5 5929201f2930979cb818330cca8493ee
BLAKE2b-256 d6e030309efda448ebf4a4b16b3c3abd9bbdc5e4a256a542edcc2823c01b4700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0663451e910379b903d85928083a35ec96923d9263b969aea31a8d18b9116a1c
MD5 b3dd3bc2f03419e9cd6ce9b2679c3d52
BLAKE2b-256 5cce625541e27004ade959466574dd2dcf344daca1a3b9742e63f3ffc6ff59be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41bcd1b7dc8a5203c9e826a46dad5c28a9f0f9cc8089b735a1d09741c5b3a2c5
MD5 54f6c6879a59c471dcb8fa4b233060a7
BLAKE2b-256 2acbb1c796c79162ee7477f719248328d8742d57e5d4e34aade4824a41155d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab86348b6ca3e9ee78dc10c1f4d573f4b406f2fed0c360606e4715519d11f30d
MD5 3e2d36b73c877e87e63c4ca963b42d8e
BLAKE2b-256 eb1eb02d362707a46cf220f60f13259bd15e067227abcbd2ef819966a4e9ec70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94d1ae379cdf7e398c6a74be24aee57784d85846c1594af7934b98038d919bdc
MD5 4b5f4e14a8211e2012cc801f870046fe
BLAKE2b-256 71cb6e9dbfc6dea8c3c15440918cecba1a5bfd7fda2587d9c1dbd709cb0d482f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35478eaf04e088f84017b32a16663d85386aa04a95d3a546c15fccbf5ec5a973
MD5 b95b079f7666424b359f6b47ea72cfa5
BLAKE2b-256 eead6635c93644dcfe356d09de683c97f355cc4685d1746d7568a88871d46d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a45ec8e3e0ca2f713a27509125fd07d6651481952ab5373d4f243bed5420cc4f
MD5 679baaefb6f3c4b23fc04fac0f00c4af
BLAKE2b-256 f412fd5d14a6c58601344d197d6868bc9ccbb1248d0c920e62b7df94f9fcdadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ba9fee519b14c10d6a959e66e2c876be9ebb09ae4780f303e7ec66373f869e6
MD5 c0321f708e27ab0a894b25c06932d4a7
BLAKE2b-256 9a910150bcf8886aaab09fee4c5643563a610080873a4700767d0b89061f9c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7536c860b4763f2693fa505477969a4eef09d4fe95b47bd69d0fbde14670c451
MD5 8507fa8a599ad17a78d97548db779196
BLAKE2b-256 5ea26107562d6f6b1c09954e7b68d184c550de5c5def7f3f0260389e7b8c8a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 338f9f5349313e51ae073823720a8f1d72fd2e3dca9f3ec5c92ee0cc273b167a
MD5 bc115e2c65468751906ff6ea35653512
BLAKE2b-256 ed940e93cb4d491cc8195a4aafaf4e0e31957ed35cfd41b1d343b7395e0bb000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14aa5321cd17b5d4c3f2ded228594b7accef79a71d338b0ad4abb5330667581f
MD5 8f166a6f7964b9106c567d80f6718a6b
BLAKE2b-256 5eb874c3be89650bac089a425b0babcde31f77428c34e9e0ff4c8168cb9f5e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4dfcb8e1cc370b3508edf52f8caf2af58c693b9529391e2f54aed60abd2b4e79
MD5 c73ab8d77ec0446b8802fb04cbf0e257
BLAKE2b-256 dcc1b2793cb5751d988172c1e60ea89c3d12420858949b186f72c0b65f185365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d5f710ec826736f54dafafcce628070d8c18ffa6e2c45afadb77db5b5ad55142
MD5 dc8b7cb0279aa700ec54602f76e9dc2e
BLAKE2b-256 20f1f83746059bdea23eaabedf5c5b081b2164560d22a52ce82ecdadd83c8701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50753f47ea1f7eb79c6f7eb7124fc58c0ef613bc47984fcfb71b3ad86b0a93e4
MD5 9ec607fb3d81b71e5db76decdf0abf8a
BLAKE2b-256 d883e7fe1cabe9ab2f3b09978cb1451fbdef371b620fd17c0cc69a27b8b91554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98eafb2f7a5778201d953dc4d8af46809fee8d8268e47d02eed100b8e2181bcb
MD5 737a9a77567b9deedaae85200f1a4b68
BLAKE2b-256 f01ec31acc02c10ce5e89be00b11fcd624a94cc2487866bfec8c0119d481e350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbd6e9b086453acdd182c632b0fe42f518d087f671f753e3bd83081e98570bd9
MD5 3f960575e0131d7f7ffaf7d0c44464cc
BLAKE2b-256 8cf310a249778df1054d0c3830560f124482571598298ce174de024bb8056303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60e070a573271329dc98c1d84b9bdb616c8d4c7e9ce19fcb3388e79e49e92e04
MD5 d002e883c8bb8fae729add6dbe0ee90b
BLAKE2b-256 4eafefa0954122ecaed40b13cc6e60ceb83714c6dab6481ca9e83f5e7fca0ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd7d242cb3dfc1329343b64cc543224ec68582d518d3e5ea66eebc3b969f7d48
MD5 480cd7e7129265beb8687b47a4f29d2a
BLAKE2b-256 446c0a9fcbc1ac4cd54fd8881e898c55a46cc19903efbdc97cf96945a199a426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 77b2a361ebc2c684763ed220a624b37c41480e7d0fa1897447ea4256ae7c51c6
MD5 53a3070da307bf2fcb7d5c877a671d9f
BLAKE2b-256 0ee0d5704a1f82d9a4028ced484ffd08f63ebaa476f48b3f7b835f3155281b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56bcba41b61da39c46265838bb1768a55d584bb70fe06cc6be26d45811b1ece7
MD5 ec9effa4eed3f5e9a9e3c3c1b1eaec27
BLAKE2b-256 242f7c6d5c85cdd3aa2ee543c9bebbe284a7c352894b268b7123e39f7b892c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b55765dd7da0a5d91983ca3dbb9cc72809c3e00ddb190ffda6a038204894e21
MD5 5807e86f24528da9102259c7c7a93420
BLAKE2b-256 1ca11046b17141afe5be81b394c4b529756b924d44342cb881dacc7114055cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8280c3d28b5b40337c75fea5a5408a7d358e36f3c65f206c8bc7247ccb765738
MD5 33fb0cda654b8bfae12dd231dd7225de
BLAKE2b-256 a1217a24843bacf4af97007a40b182212ad4167ae7f89496e286fa313e44e43b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e50b328891d1490bb65c92682a96f1a9f377c2e28e03859ba5d4cdb073547c47
MD5 a3055d84152bb4e5f9867cdfec79b7cf
BLAKE2b-256 8a0f01b028455a4f73dc22b1727ca621ed104e5029e86602a89578171c265e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef5770693f05c850e45e4448b15de1b7e35b67fb3b7a312f114c32fbbb75e4dc
MD5 e1ea1c8bb2e85db666212f09045c41da
BLAKE2b-256 0319135e3b031d8a08857349e744a609467e761dadc83bdb87127a9aeb515f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 377b175d76d3398c2ce3e47e409190661844ecd7a0fe57470e6872410d640c6c
MD5 dc83f71f9d8f731f73c6ea00f393ada0
BLAKE2b-256 3e110dbb9c0c9abcbdf4cfaf407b43a4516f9260099df505d4d1dcee3d3929bc

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