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.6.tar.gz (53.7 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.6-pp311-pypy311_pp73-win_amd64.whl (201.9 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (469.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl (496.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (531.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (428.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (282.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (259.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (245.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (275.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl (272.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (291.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.6-pp310-pypy310_pp73-win_amd64.whl (202.1 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (469.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (496.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (532.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (428.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (283.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (260.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (245.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (276.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (272.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (291.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.6-cp314-cp314t-win_amd64.whl (197.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

xmltodict_rs-0.13.6-cp314-cp314t-win32.whl (146.7 kB view details)

Uploaded CPython 3.14tWindows x86

xmltodict_rs-0.13.6-cp314-cp314t-musllinux_1_2_x86_64.whl (465.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-cp314-cp314t-musllinux_1_2_i686.whl (491.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-cp314-cp314t-musllinux_1_2_armv7l.whl (526.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-cp314-cp314t-musllinux_1_2_aarch64.whl (424.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-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.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (277.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (254.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (271.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-cp314-cp314t-macosx_11_0_arm64.whl (269.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xmltodict_rs-0.13.6-cp314-cp314t-macosx_10_12_x86_64.whl (289.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

xmltodict_rs-0.13.6-cp314-cp314-win_amd64.whl (199.1 kB view details)

Uploaded CPython 3.14Windows x86-64

xmltodict_rs-0.13.6-cp314-cp314-win32.whl (148.3 kB view details)

Uploaded CPython 3.14Windows x86

xmltodict_rs-0.13.6-cp314-cp314-musllinux_1_2_x86_64.whl (466.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-cp314-cp314-musllinux_1_2_i686.whl (492.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-cp314-cp314-musllinux_1_2_armv7l.whl (527.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-cp314-cp314-musllinux_1_2_aarch64.whl (425.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (279.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (255.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (272.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-cp314-cp314-macosx_11_0_arm64.whl (271.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xmltodict_rs-0.13.6-cp314-cp314-macosx_10_12_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

xmltodict_rs-0.13.6-cp313-cp313t-win_amd64.whl (198.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

xmltodict_rs-0.13.6-cp313-cp313t-win32.whl (147.7 kB view details)

Uploaded CPython 3.13tWindows x86

xmltodict_rs-0.13.6-cp313-cp313t-musllinux_1_2_x86_64.whl (466.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-cp313-cp313t-musllinux_1_2_i686.whl (492.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-cp313-cp313t-musllinux_1_2_armv7l.whl (527.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-cp313-cp313t-musllinux_1_2_aarch64.whl (424.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-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.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (278.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (255.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (272.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-cp313-cp313t-macosx_11_0_arm64.whl (270.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xmltodict_rs-0.13.6-cp313-cp313t-macosx_10_12_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

xmltodict_rs-0.13.6-cp313-cp313-win_amd64.whl (199.9 kB view details)

Uploaded CPython 3.13Windows x86-64

xmltodict_rs-0.13.6-cp313-cp313-win32.whl (149.3 kB view details)

Uploaded CPython 3.13Windows x86

xmltodict_rs-0.13.6-cp313-cp313-musllinux_1_2_x86_64.whl (467.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-cp313-cp313-musllinux_1_2_i686.whl (493.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-cp313-cp313-musllinux_1_2_armv7l.whl (529.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-cp313-cp313-musllinux_1_2_aarch64.whl (426.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (279.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (257.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (273.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-cp313-cp313-macosx_11_0_arm64.whl (271.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xmltodict_rs-0.13.6-cp313-cp313-macosx_10_12_x86_64.whl (291.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

xmltodict_rs-0.13.6-cp312-cp312-win_amd64.whl (200.2 kB view details)

Uploaded CPython 3.12Windows x86-64

xmltodict_rs-0.13.6-cp312-cp312-win32.whl (149.5 kB view details)

Uploaded CPython 3.12Windows x86

xmltodict_rs-0.13.6-cp312-cp312-musllinux_1_2_x86_64.whl (467.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-cp312-cp312-musllinux_1_2_i686.whl (493.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-cp312-cp312-musllinux_1_2_armv7l.whl (529.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-cp312-cp312-musllinux_1_2_aarch64.whl (426.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (279.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (257.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (273.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-cp312-cp312-macosx_11_0_arm64.whl (272.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xmltodict_rs-0.13.6-cp312-cp312-macosx_10_12_x86_64.whl (291.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

xmltodict_rs-0.13.6-cp311-cp311-win_amd64.whl (200.7 kB view details)

Uploaded CPython 3.11Windows x86-64

xmltodict_rs-0.13.6-cp311-cp311-win32.whl (151.1 kB view details)

Uploaded CPython 3.11Windows x86

xmltodict_rs-0.13.6-cp311-cp311-musllinux_1_2_x86_64.whl (468.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-cp311-cp311-musllinux_1_2_i686.whl (494.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-cp311-cp311-musllinux_1_2_armv7l.whl (529.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-cp311-cp311-musllinux_1_2_aarch64.whl (427.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (281.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (258.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (244.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (274.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-cp311-cp311-macosx_11_0_arm64.whl (271.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xmltodict_rs-0.13.6-cp311-cp311-macosx_10_12_x86_64.whl (290.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

xmltodict_rs-0.13.6-cp310-cp310-win_amd64.whl (201.5 kB view details)

Uploaded CPython 3.10Windows x86-64

xmltodict_rs-0.13.6-cp310-cp310-win32.whl (151.5 kB view details)

Uploaded CPython 3.10Windows x86

xmltodict_rs-0.13.6-cp310-cp310-musllinux_1_2_x86_64.whl (468.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.6-cp310-cp310-musllinux_1_2_i686.whl (495.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xmltodict_rs-0.13.6-cp310-cp310-musllinux_1_2_armv7l.whl (530.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.6-cp310-cp310-musllinux_1_2_aarch64.whl (428.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (282.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (258.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (244.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (275.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.6-cp310-cp310-macosx_11_0_arm64.whl (271.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xmltodict_rs-0.13.6-cp310-cp310-macosx_10_12_x86_64.whl (291.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xmltodict_rs-0.13.6.tar.gz
Algorithm Hash digest
SHA256 82257c9c1b7d1b4e7b13c8e1b89f3a00abe8737e12d6327eddcd64051139f7df
MD5 1639221a652a828aa666d3fc1956a892
BLAKE2b-256 ee67bcd65866355e1d6b8e028d52513455b9d8f66b21c42deb639fb57e220d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 395e5eba14bae5521f600c4e776c4f1fb60c2f4c841c20f918bc474ff23189d2
MD5 38450ec2cdc225c3e8f748e9a273e850
BLAKE2b-256 05940f800e62d4189107d6eef94cbdb328998916dc4abf0f9ea88bd883d303fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5be5b634462ff6e0b8b057c6dc2913b9d681dd99fedc8657df4e3879ed2fc80
MD5 98e5dc05c4010cf0f3058bc5e8924e16
BLAKE2b-256 dadb231b328844c04995d3ba88be0dccb3eaf97ba9ae91d614a76de7d27c5ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 545652a8041e15cfda7ec60e1ed232da69b65aff21b50520d7f721bf34715e34
MD5 daa833248f04f8db39e09213dd768c5f
BLAKE2b-256 6822a4ae7118454b2759cd49846fdd1b148f923cc9e59df31c959b95a97be8f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82f82400623ef12cd1161e14f6750df7dfd033d045e253161e6c62443c91c16f
MD5 275dadae792ba6bf64bdfce2ea32f208
BLAKE2b-256 44b29054b208af64e747371caf9a9c3933a5426577d991782a9a6a11f2ccf09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8636cfbdf93d6597ee3a58cb1861c0c05ada592ffde75f52c2d018a00250f3be
MD5 269f81b275d85b138b744665bd2f6300
BLAKE2b-256 4ef115a94e53338e6cb2d9fe0094cc46d8ed1080abdb9b93a08a14a5fa15dcfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db44f014df483a95c3d3d7031fde8d61209e7fe0eab84d5c5027f94a1fb27d24
MD5 245843f3f6a45f243d9522895c536df6
BLAKE2b-256 4fd6a85167f9a66aa179ba92fdcefade90f00caa907faa74b674ff64528553a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f49e1787ffbc349d6347712467c58b33f2428e536d847e2b515c2390cbf6a08f
MD5 b7c852a9e6a68f34614b4b59bbbed785
BLAKE2b-256 14f84c97ff086d38ac3c4208800c87328d428a0804e64701d8cb908861551fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e42f919da710c9a6311762eef6827d764b5c719602558b372e712f97dbda2a15
MD5 24c21ca5603158b73c17326934ea1184
BLAKE2b-256 886f9d215ca646ce73933b86985087fe10c557c29a24aa8d5e7b666d8dbfb4de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8266cd945f4cfcaa98d7803d57258156864680f1359c397b213fea95b4e1ce8
MD5 d2f792ff967495a779f4673a541baf05
BLAKE2b-256 fe083b71c39de85681a7362f84c89b41451096a30bbc3271c541f7390ce5a5f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8f727265b4e1917060c54ebfe81ba0c4ad707c73c254cfb50ed02362ccba94b
MD5 28b26e4cb4d6ec382b2ae41fd4e08ab6
BLAKE2b-256 06e5b2101e0d541ee70a535dd140f6a244f8ed88945021e968255fabb465d021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b585c61c6d4fc3325bf1f32e0ab0d58cc2e7df80c8bcfbe81fb827baab4c3fe0
MD5 81c650ef8dc8a4e8eb057489978a6e89
BLAKE2b-256 3e656f79b8b4ec7d9dc45febe7e056cf6a3a87456c405d03715595d8b832b94d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 666afb9900c2e696acb4d8154752e01250094bc33225cd0887327b1be39e224a
MD5 0b70807b3aced381d5cdd713d69d9ddb
BLAKE2b-256 0f9694cf376431d149c83816e6d972026dec4357f5fe3a802897b76e951443c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eab4e86d799d67af6eff9ac188289a309b3310b106fb872dd64defca6f5039eb
MD5 7240f1e1a82e914e85af7f175916ae1e
BLAKE2b-256 abedc7e152b4f8dd5170da2d668ee8d74ef188de9a515afb8bf0cb3a246d41df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0432eb346e732608b5de22b3e0c79249686cac46891fb722f950544392f22391
MD5 d3a54187310a01dc2b599e680fb4e2e0
BLAKE2b-256 164d8128b4ab6f86a141237470476321af3a970cc1e5b15a89b0bbac316fe723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e675167968e815fabd21fea732531196bd1ca994f7c2acbd25c03a090a04189
MD5 ee0b98364bacedb3ba70bede72f1bb41
BLAKE2b-256 a04046c8ab89ddf6dd6968c3a81963b598697e781639d884d7b8c760dc642f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2dc20f14502bc8b2e5aa3e9e0426925732f1b9a8044f8a97b6becc10abb4d12c
MD5 cc3dd213ec283b19dec0a336643905de
BLAKE2b-256 15830a9dcecd14ab6de4d2993930f72539781c781bc3cfa3e5612c6d0971f791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5733c21555c1697dd96c280e33ff46249424e2657030d233626a86c094967cc5
MD5 6fb074f62322d75e73e2daa5b9ac8378
BLAKE2b-256 e295d85d9f2e41cfc7a4a1d8ffdf4c3b0343aa3c1adf19338908b8d74ebea85e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cafdc7c0b47fdabc80ae669077366966fe4b01b2d799f71b4fe70200df4ce58a
MD5 f212a063366ae0c4ce7a9ebb4ed3cf1b
BLAKE2b-256 6f7e21ef984d524853a4dbb3bf44af36108c2f9c335f4e0adb2103328986518c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f66ed3eaf993c0869af7abbe442880b91b2135c8b2430eb0dacfcea446e2bef
MD5 fb0cf169c24d18ddd56d9febe7fd6550
BLAKE2b-256 074143db72b9ff363476b2778565c253f81bc809db98aceef5d0c17b40961e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8952ac412f6f16e90d5ebfcc46d368abb5ff44c3048b69392eda776d3decb9dd
MD5 67c0d9385b5ea9522deeebd742b0dc06
BLAKE2b-256 60a2e058116ee8f905b7e59a9e7297e5b5e42db2da4f653893a9cb95b362a7d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a720f8dd11c33d3444eac067163307fa3fe1a6374875d48ea2c7f5a9597b9e0a
MD5 747b161e35a6410d9ced942276fe0ed0
BLAKE2b-256 8057c787d34abab4bb8e91efbb62f4915684112d7473d088eb0ec5f7ce060ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25317925f3cd7248e4f3019375f63bf026af6c0a8af8650b9259ebd2ba3ae020
MD5 0694aff54a88ba0b6344efa6d3f93baf
BLAKE2b-256 2872c8fc3d9b9f0a4d2fc1c926435cd01e7bb5957acfc22e465a79dcb95405f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50f395d19459fa77597639ddbffa3bc32bd2335b4b3d768bd19b2885fc508555
MD5 090b8b6f1b5bc11d32a06084a70c01cd
BLAKE2b-256 9a7f180cec86eecaeb94742a95743a78bd725510b7e0137e254ac722eb3cc7de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f6f82ed256c5dfa75e18bbc58967769a1abd77c68bbd1a03fb5dc11ca5abe71
MD5 99e1f869d3f1797a2ecf9e53518af910
BLAKE2b-256 c48f72b718d79c6876898e8294d6f63b6759be4f317f714ca2c51aeb81c95f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4853af862e9cd8d3784af0ee199c9edfffe6bbdaddaed8ad906a24940e87db8d
MD5 12249cfe756df66655f80587d20e5edd
BLAKE2b-256 deb677a8288638ca058df6c8dabcfe2fe433087b4d355aac1d6e9f23d4cde7b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cac5c15aadc9614b8a1df48e756954c7b8f6d4b90fc260fb907b8645de5b3d47
MD5 29cac20a8bcb634585ddfa1ac05598e3
BLAKE2b-256 b51f09228a739f98d8fcf25db6c1da89b5d08998037a6d07399d6a8f0ba383c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e70d24f99958f2a460b923f98c02ec85a5a5a96358e32c9a32d741873bce271c
MD5 185c903b50ac35d4c55ddd417578fc00
BLAKE2b-256 0ab3a42d6555aa5170d20dc280536e18af93b8d25c48abafefb7202adb955104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 41ea873d498772080012641b2eb956648b27d2efb3712d3c794084b610da32a2
MD5 d466ad989119d22641cc4b3437bf6fa6
BLAKE2b-256 15edbb988cd8a686f358c2422df0e98da1d75182f7de575bdff21653d6b93ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50e2c3909b3dbfca9aa9af8d44811d0f569aca1d5c0c29000e3b6e6689ec41ee
MD5 b21a2b96dca12c15495838bdb22d2aa1
BLAKE2b-256 a20bf7ca0f596314234e517c3578cbd8645422afc7566cf43a65e65d9e1310c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eda32a58bc9d822d586696482d9a6599d70cbbed814868667ca3041c3714b89d
MD5 5ad1803a171adc79cde5900a99245af4
BLAKE2b-256 b61ad20b278275d9c9d407630119953d7ffd05b23c614ea35468207458fb1dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0bca18c9b57ef81e4c8597ee16a96bb8a84a8d125fbd31416cbff21f8251bf4
MD5 8f22d04e43b5abc832b4f81a4872caa6
BLAKE2b-256 1302cef72db0b5e2f34fdfc7f81a83528e763a71aaa414394474ea01169652b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b888cb1d190626e508e760efcd99a54d87753bcfbcd10f0baef1ff310b7c485b
MD5 1476f34f3bf56bc27e2d3403808f0ad2
BLAKE2b-256 d4d077bae8d5849867a4ed988b50c1c4adb119f86c0bfcbb0fd93512b6c3e32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3d84e2d6ed643d7b1260edbf15d813dea60fafaca60bf6f4bc1b359d86c0820
MD5 f4a44df49375d888d0d100e032863da6
BLAKE2b-256 a1990b9e7f919c079b599cc70288864b8f92f9abc9ab5afa7564599ef54ff273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 569c670107b15d62def4c21ff156187c64d7cf4f6a33a67153dff36b96036472
MD5 f81e96d299111cb89ff948bc58646112
BLAKE2b-256 a66e360055a76770538df3dd141bb05fa774809c6537c03b6a19f0bfc2c5d3c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74699ab908191d4dac0d320f5619cb875713fce3a3aa4bc9556f3e40bdbf9e0f
MD5 bf6f45ea07cf5a69a4007029813201e9
BLAKE2b-256 df284351e56f0d93c186d86f514b4d2972330e3153e16d1cc6c9bd81cdf8e8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b74ed503d5e67ac3ca785a225c4cb22ac13a4625c473a207bd24ff08c82bd014
MD5 7eec1bc7977a90b14de7b251202ae868
BLAKE2b-256 ea9a6d31fd707ec57c485cdde35256fc9f32004b1c970234d40a1d1bb9ea2e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2de69d403e5bb20691b4abd637c1799c661f7ca2d212d641e92943f862222dc4
MD5 f32451692f33c9a81e16754afbcdf51e
BLAKE2b-256 c74f3bf760debfa0e195712d61c4eee07eea20c3cbd583711fcba928383251d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b825cb8494af7b3f10a445f61da1ad5d6cc8a7cfc73286dcb77d999e8f0a2bf
MD5 1eba8238e9cb5d336147c66560c2b546
BLAKE2b-256 f2662f4c97e0a7206626fd68271a430637000f5e06bc90d8d7dc754cd5b209d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e60e259076d24b1f867d2b352804ecb669f7f82068df3e1934ae112e9e3d3136
MD5 776d1a9ace2ce58abc1204b7f0da232b
BLAKE2b-256 eba3664d768905782ea778f91ed517625445d636a2076eebb28bcb36f76b00b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d14ebeaca17d78a68a5361d8014e555c610560dde8afa8595bcf69afaf39eb6c
MD5 d176875453250d9384ef4d1ecb0c034d
BLAKE2b-256 0da64216283257cf97246d523f01af60e52bffd978544cbfd1277e577ba7ec7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2b042329534ba6ff8eee1816f7989971341191a5159a6f2dbb9703f1480d150f
MD5 357a2d9f7a6e3213ecd83d89c4a18d28
BLAKE2b-256 b7e2af7123a353efc099d5f8ae0a05089f4d84c55a01a54358f100ab2d3b97d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 45ea2e1c597a300f143b0bb3e3a5cb6bbff860fc323808512d3d07d8908fb854
MD5 90077904a5a565a0435ce7b2a6761cb5
BLAKE2b-256 067917292ff7718868d273cc01090c50cbbe2d71f676a263220c22d837a8eb88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 309ae5a340d550178083d6d348a9f2fd2db4d20898d0de8b6df940007dfee52f
MD5 2eaae20cf28e675a4bb61e2ae90eaaf6
BLAKE2b-256 dd1b50e5c9c715ed5cf2b57413181e4b7f166d72915f9573755db74d84228ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 194b2e709047b16ae1380b2d238e30c6843dcd53da10089d15629383f90329dd
MD5 d07fc73f90863c388c8d722801dcb363
BLAKE2b-256 cadc8ecde25c3c59b740d8f711475176c1cfd6045168ee6829416ce59e1c4718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a4ebfbe1650f87f42b21dd4172073f7af145c82c5b2d6cdfabf22be9c47938d
MD5 7e50dea883bb6a8a8ca79a27de873b89
BLAKE2b-256 f3452af59f9921067c7d9cd4543f188a12a86cd0c831d08b71fe2ed9c02fe611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35b3fee5876058f3db31639c92b16a952604677f4d22da1d53be05ff7689fe7a
MD5 3d50a3435ace48472507cf6531d7322f
BLAKE2b-256 dde0e9455d0b793b68585dcfa5b328128bc51324a42db0165c3d8edc6db0627a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60552410413d4b147dc27ddeeb445dfeb635f1ac3714b43f79995587d91b36bc
MD5 d2ef58b7db9c04cf11b94a246e8209e5
BLAKE2b-256 a885e8796fd56698e6bcd3dc1f317451ee717a792cb5c91bdd9a61635eb3fdbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72cba339f12ff7405cfcb027be4a70d0a35ca2efa7491358c46de986c59a6496
MD5 910e501f6c1b38b5ccf02dd2f3e42d94
BLAKE2b-256 4e7c9a5d4327b37141a3857094043361103fe9329bc8503f52ac09d59319490a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53fe35e79cdc8dec5a7bc51da15cf8110f37fcad84d31d1c563e8d5300a48e62
MD5 a24ff285a6a12c991ae84f97a6d501e8
BLAKE2b-256 2b59018e097d19d585b227769ed36063e99f55c22909213e98ffe40d309abe91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 883283fdee2228d02f5287c9761873ec1e2e67a0f36938a4fff388b043fc95a2
MD5 b82021680021313d1ef592468433bc5b
BLAKE2b-256 a527e51a15e19db2fd41944ef530eb6f20fccea75b66ae0c508971f8917fb82d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2db2ed8600b8be09c587b4ee896c17eda4282fd2b70e2c02aa6372153486424f
MD5 625cb163bcb3450fbe9c1b31c4854e17
BLAKE2b-256 e14b0187349a6a4b100a3564a085a1cc317362e009299ddcff73509ce098045e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1dccddccf529661b7b6eeeae3f92bd0ed562842fee83cedd1f955953c4b282bf
MD5 c264fa55221ffbbf053479e256db024b
BLAKE2b-256 dc1e84e1cca52c7cf6efcefac62648ebd5e56d83cf0773602cae74809c675c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d5fad68487c5b0ef34e323c9e139f0b9334d274046d04a5867ac85e2c795508
MD5 c8aac3365ef18cc293530ea730b37be3
BLAKE2b-256 5e05ca30f3a5402c3d4af3b74fe4b3bc131ef1195baa544bb9d29d23cbb71287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3c484e46d5c2b0f361fcadbfd217c61fef2827721197f1a9df92f70dcb272d0
MD5 a0503f351893952a06e79ce26af49556
BLAKE2b-256 48b727396bbc2205d761808db6960b0016a52a5688cbfb0ef60b1c2b098dcb3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f43105c2146497e5ed608ca186451e5651878526abb856db863e519e46db52ef
MD5 941465a59a1cc22d94f2cb36c3b89a88
BLAKE2b-256 a6eb038dda70fc076f6509901e7c3964d5935b00a77abfdffaf6fbf66ccee88a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 08b2ae9a52ddc5047a5ad887e59d600678953e50d3fcb90737d0fd2d94537e3f
MD5 4fc18dd73c541601ff394a8d3e1e35f0
BLAKE2b-256 bfc166377458f080bf419cc50010e7df701f7fcf2a9bea4a92c79441c37cdf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92e2cd1d7eddb7e94ccea8d6d12abbd39101b1ca7df88560e039226d595574f0
MD5 c76c617d3a3ff575418837cb3ed048eb
BLAKE2b-256 d2041abce63917cfd25743dec1a7b8bfe2fd82f56ffa673b88b3d02339629929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dea1b64838cff6d9d063ee65fe63160a7ccc90875ba97a6a5f5f5e7bf6510575
MD5 c8e0db8d917166d9c0b8c02aba015e79
BLAKE2b-256 80206fbfbddda8e8caead45a3ecfa4d06994769cc284c52a5c1469c5aa57cf2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 884057cd10c5457479b841dd79d73ffc86200926ed0b44e43a6d9ef8d174497d
MD5 fb415cd23da011423e3fc38387a6c597
BLAKE2b-256 85736fc6d3239ce5892c921f8a732c35c68b1b617afb3f0b4566edfaac772d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e19d0d827c546b52884b3506c7e51c0601d56931cf4d9f52bfa033ad77608ae
MD5 b86da9bf7602dee1e9c6165582ed43c0
BLAKE2b-256 54e9ab3f3315127fd8247c0beda890e0db743071be69be14ef7b249a60cb5e9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a341f2c817c912446cec828f89dae412f1346fb52fd82df9c04c203cd7e7a51c
MD5 cf652d461201fad9b12b72bb57eb347b
BLAKE2b-256 e15a9f593ca562e9379765e9f3aa5ca39da5f63ddc8b6cb7553e4d2f05acaf22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99cff9a1a3e2f213fc6c23744ea88f7fa2f227b62d3a170c9c8d046f8e2fb979
MD5 0d9e1808815986c2f5e80c164191db61
BLAKE2b-256 07c1c8a21a3402b981e55a9f5352ca10227fc6e1d3fb9b07d1cd37c54561669d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7d9f8f99db7734f970bc5e7434ffae19f042ebf17a34dd311ffdb18018c3c64
MD5 6e418a756ffd35e5de77a6ae00a4d59f
BLAKE2b-256 4e5808a1d82aff0623660dc39c09783b21c1a8f405f93358e286952a0efed335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5479c14e193e4b6260144b2a0ee42350303b1a3af7445c4a5082b4ecedea8ca
MD5 dd70365853a17a67d5c8fb478f913cd3
BLAKE2b-256 3c8c3cdf554905e795fa0e3e7fe2e563330e5adfde3ee863572450d595c0f5b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a577fc64c91817840e2c21d68435efaf8f1581cc4813454776595d0c186bb83c
MD5 4eb58afbed2142a7dda6b2f7e624d2ed
BLAKE2b-256 e4d282a19e87fce6245ff8440ff5540ed8588abc2de5134aeca949e786142dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 446d9ee1e3b6ce018b3349fa65e31ce965a1c8cd2795ce6f0af57e2b43998706
MD5 8e0817b34a4a15e17d374104a273156e
BLAKE2b-256 cc61a815a7736762e3a99fbc085f83a3fadf523158a05fa5aa690b404b123c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 847f6c24cf29602abe57773a932ed0b71bc5bc6f00c6c3fb19e7237b01962264
MD5 990638488456bc1ac4378028d76a54fc
BLAKE2b-256 e0c6996937db716e2a809e9fd297da34f0beb07b2d0a2c92d1539512df772046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2474641de9473c91c8c56f1ce44207fe4803517900443f44ff3004b137a8dfa
MD5 cb0908c655a3bb2bd6980b73012fd095
BLAKE2b-256 d35aaaa3b283fd76e7828ad3c161c008c4bd27e1d580523200bd7076aea2156e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2aed3c5c2868234a046421b71ab82005056abc23e5c874a7b489327d712b92e2
MD5 3f50e856026105f71c31b846b72e8fe7
BLAKE2b-256 9efa77a21b6f85b3b433178a44dbfa7bec9ec0031407cad4d3937055d426481d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 43beb78d1fabb16637a5fca3527f201ce5a01f3d0d49e167361d518f24256497
MD5 ddbbc69a43dd8381ae96d5f596305562
BLAKE2b-256 b2f48559b57b0773df57243bcc6c4c6d1e0ac501bc5b69b9b6a9d976261c3515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bef5bf8839cea043ae8d981b9decc6753c1474f43bd8c61dcb78f32f3ccf808b
MD5 5189a237876e42f6435d6c47545cdea2
BLAKE2b-256 8a8c2efd1258ab298e3148aa98f44789c772681cc311d174d499c34079655050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d28e5244337cd169d3733c8602099bfcd9a6818bcd0034a8c2ed6152e8b0ed0
MD5 370e6eb51a68baae29dd83b4f3dc3313
BLAKE2b-256 8b678e63683190cd72d669ec545d2e501615e23fd0860518492f7a29d4bf4672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5983eb494717d455745469fa07707362a9e8aa3c34e599006166f4c146f4c8d6
MD5 19007660e60c888515032d5c309aa5da
BLAKE2b-256 9979d6de8ec041eeafea1f6ffce4b85122f49d37cbe89b90281b38146a7ef0ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4bfd7e8614a7287e3d1ef412e265bf30ac239261f114b49550069e0a08a2f68
MD5 d46f273a0687f485ac5393ca9616b685
BLAKE2b-256 51f66bb37c8dce55912e5a78976e3a921eba4553a126b8360a4b5784045d1000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 229b4b523ea405ca1915d5bd520969838564ce8222bc52dba17d0ba4974ae717
MD5 b755552113291f516380bbc7fe51aa09
BLAKE2b-256 ab7fefefc86def25a8bca83e710c2978f407d3007115e763373f7e23e063162d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e42773a5622ddcd8c122e4cb25224f2081a7f451024c99691aca9e729876c29
MD5 c56285ef14d191d8a267a5f0afab03c7
BLAKE2b-256 1677c938cb21d8e006237c484c2f769bdfee10772bab6ce58e3fff1a060a769d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58ac13f3862b5bd3ede2a02358b442e83087c0a199cfe8128d66a1797bccdff1
MD5 75886e11a8554d5e20603c3a5f313b4f
BLAKE2b-256 115a4879889d2e7d770d2679d11ac7f615ab3e5cc106bbf86eba18b7ebf46e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d9cbf7be4322ac51c5d252497ca0ace8e941807bf5031eb760aecbc9dd42514d
MD5 a95fdf5cdc914e4a7cf290a9b3d7dc76
BLAKE2b-256 98175c8e72f68ff8ad825ed9e00ef88c2d55a1f91e7f81a19452a117b789f306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81feb10c212583dfca4d0eb5552c1429eb977050f91d79dcc80295104519a1b9
MD5 20935abe3e23a3737f551ac914d3c102
BLAKE2b-256 33302743f327b09aa78acf00b1a1af2fea34c8596b7c72f82de3bfe99776ed90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3dc6a2a420fe462df7674d626ec7051fe2676c95b3903d5b7447d2bf1810f8f8
MD5 5b9e3267495e6ac1f832f837f866a73c
BLAKE2b-256 7ecd44f1d6b40f3336a3043e73b069095333739212af9016fa59f071f70246f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc1485557635cc4351544d4f6c39adee09f35d4b547a5e050619c7c62261733b
MD5 004bcd35d01332cdc95de68ed0c0d977
BLAKE2b-256 58bdf6cd71ee8e5dc1691a76c207029c0db02f90cddc3181973e782d025aed6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3d42af625d9cf42badb647d32fd9078db2eb4babb4a98868681bbae88627198
MD5 0a184db1ebd6abb4c8085137804debdb
BLAKE2b-256 5d4e1e69734f9dfe9580b3f0a9b6143be568c7d24bf4242d11747f59a27ca48c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 73840dec621e4fab2e6fa97d802922f54e511fdfa684df52e597281ba9463f18
MD5 cf28a2d490b0b13cdcec91dd7acc0785
BLAKE2b-256 3ac53b26886ed8d25ab2c843e9ecb205bcac3920df015c29a360177145e22544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d032a794c5e8f44cd5cfa3fa70d140b282de400363c23d53bcf717aaf3aa4d0f
MD5 fe914483994934ff4d806c5ee03ce2d2
BLAKE2b-256 026babdb9dd6e320ec68e3ad23cfa7e8c7690d5ec13f5f6b36a535adad16cb08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bfaa51c61b45c70147d57b531f0dfad7c3a9ca1f45f6ba19441591add311aa4
MD5 151a29f1d07a854990537e7a421cfbdc
BLAKE2b-256 cda2d7c6064b9fa430b59546f380229b54190773e6874146a661ba8bce57418e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba6d3696e5a0c9bfec09c97dc9baf3c49fade33f14ad7ecb43a5878d8a215578
MD5 fdce1b912f573b950c6ac487c3d1a70d
BLAKE2b-256 3a643acb8a20aec8aa3d5803dec37b2027b94e9ce9c7773ad83af80669115dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 110af27270e4f4fe7a5d66c74f5f0fb542c369882c42ca4f967ece1c862947ee
MD5 ee1688b90e1fcac1d5842ad9198984b1
BLAKE2b-256 b8b0c7be80339b713743c8df81f8a33105766b0d3b0833ac463a28eae3ec023a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3044a7aa9a657d929d416b37325718eedcc3a53dce1a4024e20ab5a99f636c30
MD5 19263d6d7d172367bc1a8910bab453e9
BLAKE2b-256 6d6b66683b6f66c04cb915b265009430a6f51cd5fb25f688ed539a1d5a0a5779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbc1fd911edc1d4b821308103ad437ba606050edb34137d8b58042071645c55f
MD5 da83bb2e93bfbfd02e9fe0813685c688
BLAKE2b-256 4e475b760560fc31018b92c99b0a52a760eff286e9a1c83fbd8557c52445d2c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b121a47d1b2dfde57147da6f1434e3351cd119eecce8fd1e8456a9bcf716d00f
MD5 3ed5379e088a9644ce527054d0fbaa33
BLAKE2b-256 ec7e2e06b0bdf2d56cc56f550a0af68b8f7519f10a2bbeb5ba31c2c7e562c718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9b78a6648b63e583972d6035bd8c829e87463bba2b2a14a929ae6350fb15048
MD5 759851b84d324b6d6bb531ba6a3b1ed6
BLAKE2b-256 683e618209b79d872fc1971a1a8f96e9020545526e4998f06870a3217b20ff26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b26e17163a16af1ffc7bb7f968b77c7931142e72cf7cf88e1194027268e5d356
MD5 3c4d56a00b0d0534ec22614a86c9dc0b
BLAKE2b-256 11c837139711cf455ec9eb41448084d83469742527c39a086dce784c1dc569ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ba12b73a59fba07f82f29e85dc28bd88c5417a3aba57f9d35b352e1c09bd056
MD5 77de21926102e13da6b6ee55f82b9429
BLAKE2b-256 a5534f15a622a449553557f2a1d82b3829a8e2f381b6b216cf22f622feb967b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 998b092f0b9aed475cde041cc1c3d6e8068d7c4047a5aa9151b8650917e1b6f9
MD5 a53d1d2ab8680392becb3586cec07dc5
BLAKE2b-256 06f5b945441dc2fb23844ec1df6cd7392680b266521c22ae62c8ce42d5bbe988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4961632fbc0be11be634b88cfaae4f795e2cac16fdead2291c3b0eca76235c88
MD5 4fe4758bf6bd5b17bdc3787a08105c8a
BLAKE2b-256 78571072bffe82a0b351084f4e0637edca50fecdb051a7a41696c73c61cce98b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb62d9cd84a63da4565198609919a1e545841dcf81bae1f6b993673bb94f4bb1
MD5 94fad057dc7164edbe9264cebad4f3b0
BLAKE2b-256 93613be4f600cdd38e05877b6fb67414d64405274bb4464ecc064ed2197e58fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed744d57e0fcfcee4d9f595db5bf850e04935e1b12e4f08eb001434869e53eea
MD5 b761a92d62315f10d4a73b5765275fb9
BLAKE2b-256 4b69151eff2e98ad2456bd49aae2f40a0f5effeef4842ba7d0257a8b65c109e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9130e420960308016d3f56a876b508a390743dfa54c0137e61af2d5a2c21b531
MD5 ab19956764d85f650f2e3985c535a534
BLAKE2b-256 84f2c2f251b3228667b2d66e7191e24147deeb909e768fafe54158aa06a7d2b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eed9ae7cf2eb44e5994067b18af3ca621eeb7b6097969e70e5a4728f0f50a7e3
MD5 0b56b76959a2f6b006c2e5b344a42d36
BLAKE2b-256 b35704f2c166385f78442c7e4cf3beebf9484357ada9deb9f62f03d84e7ba5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 972a3e085ad5938d765346d8a3f81c49e733942b1ca6a2f17f382526784b6106
MD5 c761dac44dd9c8d48a986af79a54929d
BLAKE2b-256 597658416d8a5fab857dc5a9e093dd95a8d64af657a367a6da8491f88e6d44f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d05ef3ee1c5b76eda4f4306dd7d7288bb6e2ebd90302a8c69d551df5b5318154
MD5 88417aaeea58e9e9fe45a5b3b4c09841
BLAKE2b-256 838762017ed2f6e2f056d741fea4ed6bcb22b2a3f6c99f4206b2a2d665b2c3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96dab0d78a864fbcdce9ab616228335317020d263b442f238e64501d7b03ee88
MD5 a90e81ba47eac0d5feb8acc9014afc41
BLAKE2b-256 c85bc255e4911eb2bf079cc168d16dace934cc9697cd4397b7784e042e34341a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6da6cc931b31803f373c2f5168daf8251b9e6d901ea97a50b875cc40deebd81a
MD5 d9e0a510a2ffe6cd5a4aab4d7ccf2987
BLAKE2b-256 cdf4f7536060ca8609b8f6521bd7edbfbf5b695d41aab357846d67294415231e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de87849909717090fc2e38e98e6c7bee8717f55f4ac535c70ce16ae9cbb92d5c
MD5 120a739cb356841b3e628de670acce04
BLAKE2b-256 660b77c478647f98e66d7b5c622b94dd3b88f81a7030d07e4bf0dfd204ed6f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd4d58448fa2e501e9d643dd5481d4f49deac2ecf503489317f94b07e11de793
MD5 fbcd6910f1fa8f3f1d0d7452fb9dcfa6
BLAKE2b-256 416351338f1a9b8736e2fe961de30fd352ba9ae945655893ad044bd459e64d4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb4adfc2e3af72a8c5aca83d0ada734db21c45ebaa7ac4e9da93d34fac8837cf
MD5 3a476875e2bf29e28624b78c9593eccb
BLAKE2b-256 a98f07c982c3aa4c039d43b024560be5a0b425b886ab0ce7b27d363b7f525ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d3b3672022a9147fe060f2f6bb9733f120d59e0f023dff207f7ca78b5190663
MD5 da6c263d335ada083e38673b5b377e2d
BLAKE2b-256 b0e1704beb801aa6ae83b3c76d01a819354d8a6827334114aed507952566fec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 044b02ccb5e86eff5112d4f75b3870e58d636b29d4064c8ee74056dc6991057c
MD5 76af2e8ca353385a550ce92be2ea70d0
BLAKE2b-256 36e50480f1ecee1e398fd48d823f8fcb763ef4ef8ecfb2328a3eaaedd261c0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ccb0a59c8c0c2d1f0d7e6b5ceb9ba3c1e6019901f330d210bdd4b040a3de68d
MD5 f52323155abc7cf0adc21dd3c38ca626
BLAKE2b-256 ced7e5381d08e5c70b3276f8d4155a52b6979166e475ed77ef310644047c6e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26d12a911061e3b4a01ec4d68024fc8a4f61e50f979203f110c91122d5715a51
MD5 fed06946c833750bbb0b94e8b7b85163
BLAKE2b-256 ba45faea89c6942596f4de83ad57266043f227df63d7c6e32b7277e67e2ee5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9230f76575ece8a7e7452bef9376e55b9452c388b430f5bf308123b0ca765f7
MD5 99a0bc9b5ae9c054e4a746e6a64f6c75
BLAKE2b-256 3977b40322eb7f360841567e3f04a0a2152d5ea296bd9a91caeb6a8ce11b0f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 92eaed9d8d69176584a18ee7dd3d4b1e5a3d314c7d814db220a65939cbf95902
MD5 a4dc3eea330777fd52e4b9726b73879a
BLAKE2b-256 78cf9ae71083e0a296f0cc51b99a687a8fa95e8d0d592d329b771b7d70cbd022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73acf95ff64b8cfd1c46e9ca76c91efea94f843161ca9529b96b89d93e611402
MD5 b5133832c3b72b6ab3cd3e242363c48f
BLAKE2b-256 0e30c3f25c30c1f478a52d5c9c9a2ca6c8f39474e1e033e60073d3c8bb75932f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1da058513c8fd18759bf984e00548664a12af24a2624858d52a379809e0dfa2
MD5 c5976313a840c87148c8b715ba9291e1
BLAKE2b-256 d529912434796e5f179adef6a6e9ab3d293aae4bc8f1a76a8600cbc78c606e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8cbf93b6db220ba8ba95ef9eac92f23364cf8a99de325dde392f97e9f2dced53
MD5 d552a58ee616725c6e74afed57c5879c
BLAKE2b-256 df4d3d270c928f4f143d6a830a8c5e71ddbe35320b96ca9756baae25e670fc80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47595ca21454cfcd73fc3917037ac4f7d31f1dd3637de1a315c6e36d35708805
MD5 beb0e08e2715deab488aa107ef5da18f
BLAKE2b-256 40a6ccceb3b0c298e772f899b17fae7a998a3392b466cf07ecb169380598ddc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b11de670bbe5a0a3d47b50416c68b4a47422764577788fe5dbc06439420e46d
MD5 576058aa484ec0fb4ffe248e5204822f
BLAKE2b-256 b55d076fbea2b1f9663ba9bf6909d5cb7ae1ab0ce2b405c517ea58b7b337b282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fb352ed9d25764c11fc9550cc205c688cad444983561c7f5d237aafd3e93452
MD5 b27530adeba3476c1ed03370b69bc193
BLAKE2b-256 46022db438d263b9ee36c683c03a439ee014b272c1719a189429c4fece04a9ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbf6bad10456abe64b09fd74eae520ba249fb3cd48cca0e0434488e885980111
MD5 2fb4741f844b3cd5994816a53b332003
BLAKE2b-256 b18c99b8f655ad774983e5b3f951e77d3f76829baecd764c573ae0586e08e542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac7b4a36b179bf88fc77a72265be48e9d9044e8a30b3237f0cb6717de22f29c6
MD5 5ad4b8e74f7ed869fad566661b765809
BLAKE2b-256 e14821fb03c8ab66d6ae0f5622f66a616f99408a8aa20eebaf057b6574fad106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 467cf2992d562158b77e01efe43f98852679bdfc0a08b398cbe5aad03ec09b6c
MD5 360442e73c090804a92102b75e9b9f59
BLAKE2b-256 7b6b23866bc9e48fe18fada95e9266383f8440258f4f8ba605202b880184f247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ee10f583f5fcbaa6e58b3526abeadf540c683c111d08be92921d728e91b7448
MD5 593186078e035e528f139818878ffd9f
BLAKE2b-256 85a254f6dd870b99ba173fac9101e5e299c8a9437bfcdd9cfdb7272863201957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa86015e84bca12301f611330cd37ceb47d85bc319dc89ab5a86c44286dfb9b
MD5 d72b2a3650a20641a72b73f535f35f5d
BLAKE2b-256 4b6b87a8fd79dd3e642b27185e566fa0ab7828bc3e7d6c61caa337247d5fea68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90f2b83772c06de85df6cbd3419d5b01a330192cdfc40e3bbb329e7f59443689
MD5 7a5b7d961fb4921b079840a2c71a383f
BLAKE2b-256 ba9b3429b5d01edaff6b4916452087cdf412308007a701d2d0bc9946ba68417e

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