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

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (474.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl (501.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (541.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (427.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (287.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (250.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (281.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl (278.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (297.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.7-pp310-pypy310_pp73-win_amd64.whl (207.8 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (474.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl (501.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (541.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (427.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (312.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (288.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (250.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (282.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl (278.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.7-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (297.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.7-cp314-cp314t-win_amd64.whl (203.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

xmltodict_rs-0.13.7-cp314-cp314t-win32.whl (152.1 kB view details)

Uploaded CPython 3.14tWindows x86

xmltodict_rs-0.13.7-cp314-cp314t-musllinux_1_2_x86_64.whl (470.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.7-cp314-cp314t-musllinux_1_2_i686.whl (496.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.7-cp314-cp314t-musllinux_1_2_aarch64.whl (422.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xmltodict_rs-0.13.7-cp314-cp314t-macosx_10_12_x86_64.whl (295.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

xmltodict_rs-0.13.7-cp314-cp314-win_amd64.whl (205.0 kB view details)

Uploaded CPython 3.14Windows x86-64

xmltodict_rs-0.13.7-cp314-cp314-win32.whl (153.8 kB view details)

Uploaded CPython 3.14Windows x86

xmltodict_rs-0.13.7-cp314-cp314-musllinux_1_2_x86_64.whl (471.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.7-cp314-cp314-musllinux_1_2_i686.whl (497.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.7-cp314-cp314-musllinux_1_2_aarch64.whl (424.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.7-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (278.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.7-cp314-cp314-macosx_11_0_arm64.whl (277.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xmltodict_rs-0.13.7-cp314-cp314-macosx_10_12_x86_64.whl (296.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

xmltodict_rs-0.13.7-cp313-cp313t-win_amd64.whl (204.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

xmltodict_rs-0.13.7-cp313-cp313t-win32.whl (153.1 kB view details)

Uploaded CPython 3.13tWindows x86

xmltodict_rs-0.13.7-cp313-cp313t-musllinux_1_2_x86_64.whl (470.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.7-cp313-cp313t-musllinux_1_2_i686.whl (497.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.7-cp313-cp313t-musllinux_1_2_armv7l.whl (536.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.7-cp313-cp313t-musllinux_1_2_aarch64.whl (423.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.7-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (277.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

xmltodict_rs-0.13.7-cp313-cp313-win_amd64.whl (205.8 kB view details)

Uploaded CPython 3.13Windows x86-64

xmltodict_rs-0.13.7-cp313-cp313-win32.whl (154.9 kB view details)

Uploaded CPython 3.13Windows x86

xmltodict_rs-0.13.7-cp313-cp313-musllinux_1_2_x86_64.whl (472.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.7-cp313-cp313-musllinux_1_2_i686.whl (498.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xmltodict_rs-0.13.7-cp313-cp313-musllinux_1_2_armv7l.whl (538.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.7-cp313-cp313-musllinux_1_2_aarch64.whl (425.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (279.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.7-cp313-cp313-macosx_11_0_arm64.whl (277.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xmltodict_rs-0.13.7-cp312-cp312-musllinux_1_2_x86_64.whl (472.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xmltodict_rs-0.13.7-cp312-cp312-musllinux_1_2_armv7l.whl (538.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.7-cp312-cp312-musllinux_1_2_aarch64.whl (425.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.7-cp312-cp312-macosx_11_0_arm64.whl (278.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xmltodict_rs-0.13.7-cp312-cp312-macosx_10_12_x86_64.whl (297.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

xmltodict_rs-0.13.7-cp311-cp311-win_amd64.whl (206.7 kB view details)

Uploaded CPython 3.11Windows x86-64

xmltodict_rs-0.13.7-cp311-cp311-win32.whl (156.4 kB view details)

Uploaded CPython 3.11Windows x86

xmltodict_rs-0.13.7-cp311-cp311-musllinux_1_2_x86_64.whl (473.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.7-cp311-cp311-musllinux_1_2_i686.whl (500.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (287.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (280.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.7-cp311-cp311-macosx_11_0_arm64.whl (277.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xmltodict_rs-0.13.7-cp310-cp310-musllinux_1_2_x86_64.whl (473.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.7-cp310-cp310-musllinux_1_2_i686.whl (500.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (287.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (281.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xmltodict_rs-0.13.7.tar.gz
Algorithm Hash digest
SHA256 ee0e796b663e474914972a3dc14bd55b893b3d81d17254a31cffd86031305d9b
MD5 20c286ff51adebbf23cea6d18b6746d1
BLAKE2b-256 a08c44af18ac1882ff30858863aaf06aab0e1439b113c0ef37c0d005b1526ff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c94195e584b81d883fc600899322a1fa4fef0d2261d6a86d108e78f60b4b5335
MD5 ab8e8f72bdecc6ed8743f8f755dcdd31
BLAKE2b-256 b79b9705a8af3c08080f540bab7d821d513c1e20d5bfbe646ca09be83d0b245e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4203776ed456fe13b4076221bb06bceb224decb1e85745214c0babdac3b7e9ac
MD5 4e0e60ca99f0082c8b788fd041193719
BLAKE2b-256 40ae5ae429c865edf411f192b5f46bb2fc8889a6cc12e2030548de52fe77ccb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6c0a129ceb3be4c1e1edcb1ff2de84b34e3eb9e923f43bc5e46d7013f43d67e
MD5 20cea8a9d9a15af48654ba5b7ad6ed49
BLAKE2b-256 89359e9c8699532c5a348fbf05d82090f232bfc5c0a8404c06384764bdc5626a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04bbc47874053768fde1e888d0a369573f8208a5ad221266bc10c4b2c1ffc31d
MD5 1ac12656e5e4b58276ac745ae5fa715d
BLAKE2b-256 2a21226a7109a75ac792f76b3806e7b2d836e3240701280432e6f61be7aff259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02eefa5e80150864a045dd24dae24ab2cc85bef47c00b3f328c04ca25d0d5ef5
MD5 6d74d669caeba12f46ed4d56ea4976d0
BLAKE2b-256 1a3074b90c5b417a7e0ea03e1d1f524439f92dfbfbe0fdb47ef24a0e6b56a27d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7ba898353f50a87dd171bac81d243edc2951cc03cb6973ce59960b20323c59b
MD5 03f42db86f1bc03ce663d4fa8d81391f
BLAKE2b-256 5a66991a227daf65044cd73811a2b75f4217965b142f411081bd3a23fdef6a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddd0b4d098e63d2d96fdb42ae7458ee1c68f43f6f8cba8a6213ecd43ed7e59a5
MD5 81c9e8eb8bd0fc7bb207c2a1d99f3de0
BLAKE2b-256 606192c1d2c771d591cbc93ecd0842adad7fef33d652e5aec3fdf8c65d41931f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 809e01e0533c34ac2550e410f85a78b75dffff75f33694153e394547d1142050
MD5 fa11813c34db4bf11951be655a953a5f
BLAKE2b-256 b105665f4bff6eb93fc2a71b4ba166228e877d88bf2223c9dd2d88bcc2ba091f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f084515e59c32816b8fafb4b5ef5fab150737e9cb40e0e212b195e303747bce
MD5 ebe4712a27b5a20ef1b719cd8c27402d
BLAKE2b-256 3df133e8220c66afe11dc8f99372dcb6868afad7f538d8719b9d4b74238d3210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8655e8d13c2670fd667ab2b6a8eb8142ea5b91d973f15877aea6261bf6b284f4
MD5 45aa758b78214a7e10c031b316a9e2d0
BLAKE2b-256 4fddac6c55f0f4b7ec88d60a491dc6f232b3144b4e98258248978fec662dab6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2cfd6b97bc1001bfc0643a2f67e349014ec4e3b4db7a4660200faa45f943f6e9
MD5 dfe2aa8e2d71158e0903f98f38e2353f
BLAKE2b-256 7917d5a8f3c76588b2696134f25ed00efb916dbbdaeb2e09cf06900c2641b64d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46782d1bb5b3ada9afc57d2798f8153f5b3d5ef9e0dade2a6f3908ab340aa507
MD5 12d6b8eed1b0f9c27218eb6c4b7a051d
BLAKE2b-256 fc0d519b62b38f25e8dda2a930c698ed9829911e2c0aeeb3e42f74780682e232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6aa08e5d8baa237312bcd8df7a9e7432d5196aa692b745853ecabf8c2997fd66
MD5 0c48b535ff677bfbbcbc50095aa0defd
BLAKE2b-256 87550a53322accf132d75926eb626322ca22b572a832dce4c9c02420fbf8c6d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c6439d9935535d73d368f33dfcc824669b44d112d045a030ac1f5c42ce74fd86
MD5 d67f78329b1bfe0212a1cd670fb8c041
BLAKE2b-256 2516dd21312b86a9a510728adc479ecb75f47fbf41424dfbae1f99d20f223487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4b44398f950a2073f85d0c41f24eec2a431216788c0b6a3450301164e731f26
MD5 dc27ac8d4598987f72336e360cfdeb70
BLAKE2b-256 09e735df395ffb306fa8cebeb26c7cb240d722767f0ac6c35bce587f6a6b1bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bed68e4bff39af582e14202b098c05b7cd3ad0a1de55d520929c8d543b69e857
MD5 bc88afea3daebdd95ab0100e35349996
BLAKE2b-256 ca181404eed814dc86963aa9164f45afe4360e33ee716a68cdfaeb2870150647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11313e909bc067b4e5f954c09f31dcd36fbcbcf4259f96b5921da3f2222b7799
MD5 a7fa86eaac10f85d7470ea736c8801c1
BLAKE2b-256 e6bfc74ef3df63c811d918994f5e4e424a35755e907f3ff1a0e7d9b82432f0b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4209ef5e372475699bcc9c914750cb8896bd50779eb6aa98e1f714dbbd64d3a0
MD5 f2e99ceb2c21e48c9c779766e1ba2cc0
BLAKE2b-256 1cce31ad1496e6f8de77d9d7e899bc06822d0f858907fef39981244313cf6ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a02b7ac22c81069159838e99e8631dced0f098c2784d0709e2aa2ada13fd8df
MD5 53bb39de69a3647dc50ece97c9f2d154
BLAKE2b-256 8d0ae8821ce5cb4f0f30b027619e4469995db97bee86f407c7e2ea7b2e0d7b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85b98d2e26052d23cb6d7048e0ae1a35e3e6a5666ba6065fca85e3dbb0c38b0b
MD5 a9cab177c4f49315aa3405c4157a363c
BLAKE2b-256 539a0c59b2a026c07aeee651242e8336efcba4911adf3d0703a18e3f9116fad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13b6be40f012468df9c917d9ec88df5d4996011eb36caac904291f621827c1f4
MD5 57bed52ebe61db6c235ebf5fcdf99dd8
BLAKE2b-256 4efb984095d1bd9e8699d091458871062a67732bf5f789aa868b20f4868d782c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 740a3bb0d935a65db8e0c226ed5b6e4faa7c6dee36e6043e4ccf734327b1dc35
MD5 87d64d752954e6aaf060e2b1dfe7a1fc
BLAKE2b-256 a0e61cb3466d7d4a5edc2795b3e0434a176717300036ce9596ae41aea8e38849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b69b9f0a8db773aae81e323b178b612c011cc5412522ef5a649bc2067ecd777
MD5 253bdfcd91c487a9fd7af62d107c5cd8
BLAKE2b-256 7783342ab937d64a3a920ca3c3448f114a8ab21e845f0ca7f76c243a1afc6976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 093145cf8b92fe1bfb1cc1c40fbe9d9beb3ec3dafba3e5abaaecac23566d2981
MD5 71c20c9b511ab936a31dc51dc24522d3
BLAKE2b-256 5593643f42a859dc4027bab31b500f6cc4692b475e18300f297895be8a10be5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42485771d2524a7670149a0aa3d327509c2fd3338aa2e970a1a3287b439ce93c
MD5 0e64e969b1ef42f9743db828f62a2ee1
BLAKE2b-256 6b72fafb4cde512900200f8cfeb7eb8d46c647b0d4a72e16ab735b4de30c90e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3dc1178a9e649737337b4bb16d2b7a65221c97dac134a67e548f04ce76845c4
MD5 2cc81627783e86e633e2719d0d93bbc8
BLAKE2b-256 1f77d92543f19cbdd437048111b63f74839f2c25d911b24e547eceecedde2a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 49e49ae678d335fe6e30ad00d09fbd5b9a85bcb68ddae36266b62600bde6806c
MD5 d96207b73aa2ec119e526afa5bc3c564
BLAKE2b-256 d3da3d43f15eb6b3a2d9f1dbea59ff0d95d6f2322c436875027e4641f1f800cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ae29b9b713ff82daa489d292231b8d72accee3ea84642834b5842a604ada95b1
MD5 5cb93d2962376976c08fb49494fa0bd6
BLAKE2b-256 9c978453bbb0ea4b9522966ba1d4350d4df22dd6c59e30b1fa745440ab4df2ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4f152bb4eecadde4ee8b8dde61572f9a4a442873ff415898570192617c11c8c
MD5 c7fb1de8de17a680e7498c20ae2c337d
BLAKE2b-256 19a8f490790ed077096933262bc9eb0a5fbb2435640deb81c4a2294b662a44f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf704eae7d81e7f55c73c843bc85abde3d236f8959e852651c914c76d106e380
MD5 19ef52848da28f440c72df6c8c6ea564
BLAKE2b-256 5e031ca9f53c4ef63ac26250b23ff27d087337949d145d3c97f2caf92f76f186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a5911a9fcf6c3f660aed988329378fc2ea2fe4bf852f2bb7eddd08d2da2ab2e
MD5 fff76b74cf2f40b8f6bc06c70c57f652
BLAKE2b-256 cd4bcb9dc8b713477cb016c06ea0e31389810df2f3afc50e1eaab7547304ebb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e244565dc90c5b1d3639a263c2c70c25074547862b2a3d36650a8f7b62bcd0a
MD5 41abaf4b1b15c423d9814af296f66678
BLAKE2b-256 9141407268670b787c2b44d88dcc2ebbcf1b23ca92ee26ee9f1d6e3b5b22f5bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8784ea234b77f0b9ffa2143569f7d6e1b514ade118ec4008d3f37c4f1346e50
MD5 7dfcc4699ade99d14f27b34dae986813
BLAKE2b-256 fb5ee744734144680245d0f9cd7e018dbb6421d2d835a3b499e883493a3d2a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cabfc773febb05222608ca685ce0f2d98e2546e1ff3ef118029b53528386b49a
MD5 04af811c030b4b4834ca551c699d24c1
BLAKE2b-256 af7c656c67ad7ed6a9194c4017d080bc1ac950047c9c350844125c5e8beda418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 235329cb26500a11fa23e87c3a18150089e06f33ad2ed42bc94ae6eb3dba383c
MD5 eae34c280e89310f45b8a3d8a6748148
BLAKE2b-256 a296f6680842f73493050e2aeb5e2b049069b37c6e41d26d6d81929b4357b2d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31852d6859cafeef42ab24b733a5d8414ad3694845558eba5db762f6ad37f54d
MD5 ed65b107b3aca97103f282a865ce7093
BLAKE2b-256 055e162fa434f1bbe767e4e0b6f50701b76e43a441fee886ca20376ac0c15c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b206c6802ce1761a6cfa9fcceee20c98bf4d9f6e990b42d3eb27383f78c3b86
MD5 8b17ed6101576d3e7a4c34a3a4234da0
BLAKE2b-256 e5286f0e27a19b3cbfb669d08bff01e568ac7e582d6daea52babccc74da7692c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e421d465610c68d4c8a46702b1a3be630d7e09f3d599fa984c924f84c61ded2
MD5 01c12b5eff3f6167b77723d168f7d234
BLAKE2b-256 75806387c1a4b5382ca25ee485cd3dbe2c88dd0a27d3dfd9a4cff0e81f218027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2daea461663cf50525413834451fd2e71c606ab360f383d8b13b4b6f4868ad0
MD5 73ae63d5882ad8bd24ec1d7cd32d9668
BLAKE2b-256 515da3f940bb8e0f16f77fb91cdad8b3ad66170ab738df03c45b3e7d0ccb22a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba84f0e4aa847d1c30fe26e7e95f375d31d3292cdc7fc55be2b325978da5adfd
MD5 7f2aa7722cc4469ea746d90d2b38419d
BLAKE2b-256 7484166dfb9e1a4ec7b7c8c0a5b333d9644c6c5224b08c72e3dd183d8951ac9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 20f4b8de65bc93dd939dc6a9ba63aaa885326e004ac3905697cbcacf44291948
MD5 82aa56f3046d8c15af4a5042baa6ea88
BLAKE2b-256 b2e3fb4e9e080d20180c39c085818bd45f72aeaa41e306f66df15e099beb406c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 45263dce3263450d12890021be5c9e004c34fdc12509114cd369eb070fbbf7ac
MD5 1c5776d7581d8fa12c54b660f9edaa42
BLAKE2b-256 2df3c03f1486c2866e0db6b3e4cc7d833a153e1916301423d64cdf09cdd18d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06bcc6fe561ce2c9c9150a7789e99a338339d404ba5e82ee00ff9d2f62e109ab
MD5 71e52a03cb4d61bba7ff49ee7562d521
BLAKE2b-256 4c73a5382af2d970675901535ca029210ca8970870465f5320bae89c55396eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90aff806f275cb644d71160131997bc9a8717798f321a192fa2688b0e1adc273
MD5 78bcbe0f216a4f3471d392967270c693
BLAKE2b-256 211f3148233d7425d2389c677d5ce727a1b85b73ef2bee433e5ff35e51577544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1fb6bb8fc5f71242eb4a22e28c89d7cca5cdfe7c3bd5d36c3fe8a3492f4d421
MD5 4a11ead226d55c781d06bd99fa2a56dd
BLAKE2b-256 252aad2c8d34d2db87e88644e28f5e90296441db0e2ea1b9e463127f0e545a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 795b3e0705e128fa28b2c461ec1dc972d2485debb02115391709ad388c811997
MD5 b798b4811f814b68a2965d1c1d4868c0
BLAKE2b-256 6f6f3856ea80e8efffea9b34fbe902db2b3a0da519e7ea600a6da10e40e87f71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14428691b567382b61f84729c51bca03d8162e2274d71da2608da6616ae4734e
MD5 3a5905b07581e10b1718e6bc1df41b6f
BLAKE2b-256 6ca0f775039e45e48a0162bd2d8acfa9b00ba341ff4aff3bfeedaa1c7208c0f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5521df5d6898fe774ba39177636a46e73c64539cde02687006261bc3123e4bbe
MD5 8c08da4407893420e7941c80e3e2fb6c
BLAKE2b-256 bc432f961bebc0ed945f560f91e7e6c2a61a02eddd08695850b2246d0882b48f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b0e82bb3fe4398af7503a304fb11cfa6c4bd160f2af3fe0b78d4d701b3eb415
MD5 565478f0cbc28e5ff960d90d8629a513
BLAKE2b-256 634247d217ecfad0157a6b6f8a203fb510d3d5148c38d3a26fe3576a83267d7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53ae27838cfda39ecfe83542cb7d9b9bf002db312fa67bcf7287e42768a6c179
MD5 6524e86b1183db3abe21f3094bef4e1b
BLAKE2b-256 98b0febdb924948e915a8a6370c8f4e66ce9beac3d99ea3ba001fb1c01fca5f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 267eb4dcb66d8d05be864f089ef1b0ba5e044b6c28e38ae4da548d6e2f489771
MD5 64f6233a97cac63c80400a330962cdec
BLAKE2b-256 9576d360d8205d5d0c55698acdd597c71fd089dffd7c0f785a7c825f08ab6601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd8900c256e6ccfd100c6a71d57c5dadb4580decb0ecf665051769bd68e90dce
MD5 556b3391453af1784c71051348a177b4
BLAKE2b-256 68bc779cb7915f90cc719706d0570f25b6903d0a2294d5d5efb2b7a0f71f3e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 603c93819f3e7b879b470bf146ea744cf9d665da13f36e50e4696b2071b18067
MD5 f5960f583dd9b018472b4669033c2f5f
BLAKE2b-256 a6c8b1b5435b5ebd368b8388de8a2253b995776e07a777c32bce5d18ba7b9370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44edf9a4fccf17ad1c3be708c53e5b8a576122ed0683c2cb3deb95f953934fd7
MD5 7d27e71357ee9cfc50dbb14cf162bd92
BLAKE2b-256 b56423fcb823ea91bfac9604ff93e0764171ed819db4b4abd2451242df29779f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 717960efe810543f18f2acd574c87eb7355e2eeb1cd9b7cc4bcf84d525a95013
MD5 07036644bcd307ba096a532868f09474
BLAKE2b-256 eec0ef482ae95087f2a7606598314ce2413710bc4a602369989551197a2c5ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 aeba3366ed85aaf68d4ee1af3e8ef0a4bd64b143e581fbf0b0e712426d7293b1
MD5 2a4ee89ab182c588f34610e7705680b0
BLAKE2b-256 c8618289e89ef81136b64056a6358fc7da84dbac2bd07eac34d021fc0403e2a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1b56a06f2bffa4e0abd813ae2ea1451baa6c3dd532de3230cb12b9f9988df44
MD5 44954ce5503fd56ff18cf5dc7a48ae89
BLAKE2b-256 463d077fc6305b5d8e1b707d5e8c186e4c53c2dad67788714fbb88e2ba6f697d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bf40a85b504b361701d4da868bfb2b553c7d3b0d5821724e9f21ce2d7d98bde
MD5 15f8299b5dd5fb3358499090f7e37fb7
BLAKE2b-256 c2031d1f428e2d1fc55ef917d4c5dd5445a356d0c3d8d5e11c7bef32edbd7ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38de743db9c5f70b882a695b08ae389d322c95e2eedb5b73e0239a37f1eed8d1
MD5 fb047006fe676c1bdb8cf461a4f36290
BLAKE2b-256 5ebead51d29916ca90fe27627c418547db65e974e91b76e3dcfe21cee6b16a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 377b6820fc62c317dc3669a04067a2c2c65490feab95325f9901d5de7a43d33c
MD5 794c273c144d2193c30b2aaf2ad07aa4
BLAKE2b-256 7057e023c15f6afc57bcb86edd0ebe459a1609cbef4b15feb90c9442eefa9e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7d2babfac334ff4b2df042f330ee808ab17bf8be4da9c7710e95e8e3be02deb
MD5 d364eed86cb82643474f3cda488c1f58
BLAKE2b-256 92c5a4707e18ed6b1cf5d40a70dc17f83595225b84a5a440ef6797c68af24463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9071fef74e1486d412ec848884ff0c94ae7eeb56daf34bcfc16a75db38bdafc5
MD5 e4de898ad81bb1d67623c5f1385ff43f
BLAKE2b-256 e990a809bf026abc437512f9fb2164ccb741744c732ba070ea69875f8b7a6cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a55629f03a7b7497ffa051ef0365fdbcf9f316e77214ea2450a4c56583e7c387
MD5 229c8221b58eaeddb70d43b8587cc84b
BLAKE2b-256 c147f8288aecd8ca1bf6f6068d5f553ef5c9e0220d2125af8e5e89f55bc2b378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 137c8ee70451bb2ca97144db12d0aa8b57f42f3d20166dcfc6c2ffcec3760d4b
MD5 e01548dce1abab3e55dfbcf51898cff8
BLAKE2b-256 ec7c0ca6c9fde52dcef07b2ba175c7cd06bc617e28caf36d33c7839ca6fa7253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdbd17d8b66cef559c709d25260e5b729de32814a3befd994f2a28481a3e610b
MD5 564f971660b4937f5d9ad41c4b6f1426
BLAKE2b-256 f883208d5ba741576874353d24679e44e631a2acfe9b7437301dda9764d16ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3128b88cede0eb68dc9e686bb58d24de760125c5710d2a6cde7a86921875070d
MD5 740846c0a71f47b275bc7ccf694f6be4
BLAKE2b-256 52eeddafc15978128aa96743c878085b0ed4d352f880caaf88ee649140efb7b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53244e6c032aed6f13e24cd807755dcc95b87db917a18391435259a58412be05
MD5 1337ec2245808817d94d1003ccf13c5f
BLAKE2b-256 090c5182bcd4db210737b0ccab7d262aa5bfd62dacffaabbf2ade4ade12ba571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12dd2e4d41b389b800908e625a779e447051ca3fe9726ace790d499f2e108ba7
MD5 5cd140df1b6afac75d1530e5411f64c2
BLAKE2b-256 ba73bd736baa8915cbe4da6dc328d693a9259753611a8479a8af0702b6895bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8175f124f872dfba5edbd4a16ebf98ef04d8cc2b40c12785cb083e760d723a07
MD5 ed611ad62fc065ba3c976f1b51a5bffe
BLAKE2b-256 6eb726d45a46822a08c66c81ea4af0d6dc752cdda1ebfcc7d1c04e8d03833036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 15ff2a26eb2dc79275e7f0234e94ed21a87c6d7d44f0506ed4283537e9f5645b
MD5 c10fcd5d3a9eefa2241ad2683708be0e
BLAKE2b-256 9fa221c880e66d0359caee71a7da7798cc5f425c669ae750043d17ad2fe2b2bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f6b90df1afdc17a2be8962fcf2a26ac2085d99ed9df7a4abb62a9a176b61776
MD5 da67a275354902dec05fa388484d4abd
BLAKE2b-256 351e480e7bc9b4b6a15c8283c245c74352509a4e3dea22844dd8fcf83662bb79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df6ff70adcf6fa47aea9de76bbc077b85e171625ce27df540ac26e8b9e315e89
MD5 9851d9765b4ca89af612dceb73e358f6
BLAKE2b-256 aa97604e10c2e86309a1c72df3888a4c6ba03157d68983e62d50ffd105cafdcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 177b95702fa8bc6e21945de9de3e0e8edf756774158ff8586bae20a04ecce82b
MD5 d861e5eef123c93bc26a004fc8006b84
BLAKE2b-256 a97b48bbdd53e8c8eca1086c04584ec74a711baaa6d5ea91e83ead5fec635b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8301edd410b89f4910b46cf5cdb0ab7d52694b8320c5916d1a1875d792969a20
MD5 b56c497809d54a1ce040992f4b4451c8
BLAKE2b-256 77e29cdf42a48d3177f48be9f8b1dbd769f5d3bed8245f81c0a4c3352da4e77a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2721f24b9e07290905679754a5ed981697e36ebabe901adc110388505f2f9132
MD5 bd16d4cead6c86d6ffe43b6c5fb0e52d
BLAKE2b-256 46e54e87ffc2511cd81a7840996dd9a5a56a1330743642ef8055865eb8816958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d435a08af9c54dab81fbcd22c13af8fcb6375951324d293423d789392b9290b
MD5 5f4c417270e69c6530cf7e0e98da04e1
BLAKE2b-256 5b5c1384d576a934be8ecda75a24e0e5f8723ccd4266c033ea01cee327ba0ab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1e9606d99598663d2226f490a956e1c9228ae84471c756627d330d1b416ba09
MD5 c751f7cb361eca5ed6a2c3018a5ec7d2
BLAKE2b-256 cdd48e8ffffa905147ad1e17b5b78a22e4f2a15851c30b9aeca088317eb8b656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d18a54c23ffb601c3c85409fd50d35b7013d4503d778ebcad22afe6ac86559f
MD5 b809b6d979e32a25722ee20d3d4b5ffa
BLAKE2b-256 27e71547250d96ff22ebdb85b20b2555b2b64f3d68b641a02c58a67ec6f09e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f0362b14a25797c142bbafd7167a88f0422f5b09eaf8685c14ac0a6a79bd0df
MD5 53d8c66ae9f2d55a1fa11054ee5b2720
BLAKE2b-256 e6c7b02e790c6f9aa1fd99a5b2ffd5c364e2c767761009cb8191a13cc3a606d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45d1b292eba926c42bcfb0cc6c759918b8fcfd9d26b4535e984a08c6a79a00ca
MD5 6eb3252ccd4fe4cdf70c61493290d9fe
BLAKE2b-256 fe0579619cb835c6f0a2ecfc5815e3e080836c80e15108434af05e650fa7a12e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05d483c95c2f17d5db7005b1add773c9d34e7c39d476fcf869f956b4c59b00af
MD5 0d0f2e88cba7d550b2af3b898130cd9d
BLAKE2b-256 d16f13adf5ad8b024356c023ac7586ed073c0e990a8b5eb80268240e3537147d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee034775065ecba0c607c86ce58794e030fdea94e770fb598562210630ac4c17
MD5 32fb726753754015b09dd96730d0254d
BLAKE2b-256 8b0c5540a81673fc9fe14df170a75a8186c290f872da8687712817d0449e51c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7fd889c896fca5d512062d01100a7a88d2f824fae7d6ba1533876c1ab4291186
MD5 fc9d2de2a7718512c43ae9ec0ce30138
BLAKE2b-256 b4e6d58f5b37b22e336ccbd98bf0b24ebe4caf773b4bf05504cf5edac61c16de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a66c3856064290b90a7129be3607a0c686be75bc2640ab0b1cda3ac6b5a0a794
MD5 26d016bba49914c8931b24ed260b3121
BLAKE2b-256 9a0872fe8c51003caa2d38f1e8573ffc0b3d151e7909e43285a54e5edaa24af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8580fef180a1777f1b73e55ae50af96571968ad2ea8ab17615a7bb768219f090
MD5 8eb201bcfaf5ecd71fdbd053cc30d079
BLAKE2b-256 c6b8b9f375458273d4b21dd26cc47e5553cefebb92f8d90ac1448a9c52ba956d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ea4af8f81d9efa5f7d8194cd7c0ab80e51757ce4ee516ca4d8bb184f63ad3c8
MD5 92e4d8902105ef78ab284c0de9071257
BLAKE2b-256 4da71ac321f5eff224475819424ec3e3b2670d55fea1b046c150cbf614d4f559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 826c34a488a540e1c30d3a1c080f08654eac41220d5eddfcf727c5a9958f6f67
MD5 95117ff00abaf159fef4abd1d89cfd21
BLAKE2b-256 898d531e28a48d1f8e697373fc7233b01cde226cb0674c07676782a3322b8cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 857fe8301d6a4f22c2e8bce6c8e119b408443cea74f9a1150707566e9c10a35f
MD5 670d4cf9aa21cd2666922f151b5c34e0
BLAKE2b-256 88fd59b0316868ff3ff253296092519a5bb8d95e2e7fe80b89c3242c360e5e74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 444e4ed9539283f1d6dc0f6aa365ef531834ae6c0d849d3e1577bdc23dcd5e11
MD5 c270528b4e76add3bc358371e8192778
BLAKE2b-256 2019d7c4b4a980df0bf658e041ac11b79bbf36f9170d19fda09f4a4d4c79b2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eeea87c1ddbc776c79afb95329e216c0902cc7ffec8c493a331cabd9062c490c
MD5 15814bf92de4e3f199fa413325601ee8
BLAKE2b-256 97247907cd1d31b332507918e35c117b2dcf79ee3ccbb0b0febee57170f577b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e294c689fbaf67a04634ec609a4e4d5bd06e79e8e6546623ea6d75038c62b88
MD5 1869dbb8ae9ded13a679ded5e8bf8173
BLAKE2b-256 9a0f24d9ee9dd2799d5ff7d3788a28b6bdf40967c05e424b6ab49b66d93f6f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 499bbf7b79823fc739992801f2146f17b8c513592c53a1cc80d56b82085afdfd
MD5 9453defe0198ea7899f7c6bc42e7647f
BLAKE2b-256 f7298c75ad31e6852161517db808d450d802d2136d4f7facc3eca5d143cc6b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f91645f06efcb29ced917af2b668acefaea62fefa5e64b35b61d71e741aa0bf
MD5 c998f533133b03b07cb1cf5ef0e9bef6
BLAKE2b-256 0742eea1b76f62427ea4ae1f516f7fc36ccf03ff68daa1280c8593f9c2ddd0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9825d845e8a0987968030cb5086568f00140749c14cde81f8c5cd7733922dd41
MD5 820971eb32cc8f7b6bb0f058310d0b68
BLAKE2b-256 3b89feb3a2ad3213b35c4dce46bb3050be2f2b37b0d78a25a6621f92367ef65c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daf2e2173d00f09f09819e2683bb531c731f46215f36c06a7ac9b06b475fbda2
MD5 b7b645908cf24c8a66b50778656132b9
BLAKE2b-256 77d51684e82f1a9f5c037d713fcec0165e9d10e8da63909e78c463b49383d3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 261955ca278b82efd9c1b6355d272e0093d9c97c56e175c17d0dd6602dc9ef25
MD5 9c4f016c24fa8147f3e87565e31b873b
BLAKE2b-256 872e1724de151621d6ba746bd779363d9db17c88656d8f5895975ea97a65f9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f3ed834dbd13fca7d24a6e64ede15f80c75b23e26011c23eb3aaadeb18d2c4dc
MD5 cf1a828c5e76160b4368f46b5b2844c4
BLAKE2b-256 bb63c2a3a3acd33ec78d596e871ee2ca2f3e0632382e684749576d6b812b032e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fef3e473401faa04d5b312c49df0936142caab016d16329ed5f0e52f08441883
MD5 b56653256af214c3674ed9ef63b7ee25
BLAKE2b-256 95e6812ca5ae032d42106dabf1a16ac8902829765c933ddc4485d061618b2a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7d33c1cdcdc85197aab7517d06625b4c515dc7d78d374768a61b22865719e49
MD5 f7df704f9f2ba5751014f61091b1cfd8
BLAKE2b-256 43eace5a3fdfe240101382ddcb38f272912b238b00f94da19641418cec415c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 310c3ecd225d916ee84fb76490a0928d6625bc26e21db76211202c28f907ad23
MD5 d0a8d694bd81258009a4ae39ab84a67d
BLAKE2b-256 08961b773733a198e5156205fafcc7de9c1ad07f32647582f6c15c0e71e31e1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb8e8c01e6fefe85a01b18773f3d75c3d7ae9e52234a138164eb8c0729a44e7c
MD5 88d095eba771125b8ef1c3e5a5617070
BLAKE2b-256 a2412da1d9aae5eaf831c2e339fb4ace797a6753e7f832b9b4710cd293fe5fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ce4cfbaf73176ae9cf94f35ee3242ea758c83bf5fb0a5fef1e0622136f7ba02
MD5 59ce8f4efcb5b46f420e0674cc1d1d67
BLAKE2b-256 890b5fade28d02b530c5a3179eec1ee832a46c572b472bb4969af78ab238a275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70e985045a4ebb30de1a78994e04735dc2c40ed157253f7ce052eb2a694bd90e
MD5 361f5477f4d6e87609117ab7d2ed2846
BLAKE2b-256 bd7f782567beb48d411def52d4c1f02fd017fa2b61e43c9d79201231d509ac36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 718c6599d4b60e46604d75bfe419372241fbb49709c212ad8992125d21e7a8bf
MD5 c4b44cbd4f9cf592354b569d45f3ed74
BLAKE2b-256 d18d300a34f9da2b4d1ff645d8b5d49541624e7b396441b053f30768a58f0ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5656ed98453858684e3b336dbb1e02eed6a52bc2c5016367f3043abcb3248b9
MD5 de1b60d37744955b44ead94b4bf2f1b0
BLAKE2b-256 e9e3a71c02a8bc0fd5c79c2b08cfb743ba6bc4b2850b6898a825f28d4e2c2fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f11aace2c27cbed2c8d448448e342f172554fe1b28ecd0acb212052011b26a32
MD5 9437f0e77b60e1146d438e5677ab0139
BLAKE2b-256 93f976c154fdc388e8a1c6547041169ca5f3c2916340b9b4d588cdac71eca546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 701c34da0f688d17b2294299357c89e785524c17825a9fb7a02325442b9e3844
MD5 03f17aca744303e07f846ffd92c8e613
BLAKE2b-256 ac9433f75f3c9c161aee7b0aac07d387f491880f6bbc7f33b718162d23d8bfe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 399f323081959a29746f86fde3d656ccf93fa17fff5800a8af7db0826e7db49f
MD5 42e97017dc74922a514c3ef088bbf726
BLAKE2b-256 0a26caea39c0b8953a4d74ce3c65d50db20341e2160b357c0d3623aaf7496a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7580289569d1852c8062be28c810e65571e080a8d3cf1ad445ee9e138d96210
MD5 4d31dfd4e8bb9e8b850dec64ebfb07cc
BLAKE2b-256 2ee1fd395d2eaa776c7ef00265603972e19eb205ddf72218612b35ffa2923907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26813fd38461719725c12f7772b343f573c7149c015972e983c972213c8cb347
MD5 624084b8b7ae7801b3be82ac8e208ae8
BLAKE2b-256 81301d4fc0b11b6c85e5da06e2837362a3d1b445a10a8477723e761863b80266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd100b739461aa4ca8159f4adbf0d487653b6f61fbd20801a2ad12b36da55cff
MD5 8c014274c51d34d983956f1ed15c37f1
BLAKE2b-256 c856f2d34d8d4450f0cc79a4e7543f02454b18b7d79bb8b535709acf053d14c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1600ef92587cbb9ca6eeb1b389943635c8770d9d5ba8376a9d21cc2d8697ef2a
MD5 65f183719f30168873057e20f45d5699
BLAKE2b-256 699e2cb3a0b410eea11b634dae86d9dd28d27faf34bb162825ed0a91c024548c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6b0f4fd60bda618d5d10b8fe4bb34faf317ee68737ab569d3345bc9cec80b8d
MD5 1b1e069357d760aa419c0a77e8e86df4
BLAKE2b-256 e830d0ac647937a55218f7d732ff9c751dc38ac1449686985558d31315da5e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54e5b6f0d7d0a7d1c673479bda0fd3f7a8e909b6e1a2e074e36e7c301c3f4ab5
MD5 0395a647e1fa9bcd01de96f604d7d8da
BLAKE2b-256 f6952451650c2ed379b22f9b1eb158e0f245e40f2aec6773eb5ab4f668c472b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7e5fa04355c74bc3e23c7385e23f52dc60a4ee2107ad5a41db891d51d1d46d7
MD5 3cd07faa80d993d9a977ca05525fabdd
BLAKE2b-256 bb9f18d5326d150cadd61239434dd703a76d247f7b0dd060c286cc9a0fc8b055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11b0cdfa2d302e73cc8206963cf0578eefbeb6ea9d56cd8f468071b34e750d6c
MD5 28d51774049163ed7d156a3a60abc5d0
BLAKE2b-256 fa38da178fc81236b25d6d568c6f8513ffce81b3ae1d3f5b4c7723f6e520aab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48f34a31e4b7f1b45959993605fd9b71cc3262ee37ca4f14f604ac20b0274849
MD5 d12e7a3fbea57d8b3814162a0ff5b8a1
BLAKE2b-256 a0663b66a1e8cb2bc0e46f920a04c694b77c40faa793de71cc35adf6c6ecc8b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 864a995567fb6a3fba126866a9198b160bad6370e767e5015b3d5f2ee907cad2
MD5 24315ddef060484ef59bcfeea8a4146a
BLAKE2b-256 73bdc715a3c1a9a46f3aedd913fe866a2a8b8681ded4380dba1410298fb81909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 888f555bcfaa3db0c810408fc18db07ae207913cc620b2d2f7a5d3a7b750965b
MD5 abdd7b11a9c5add6ae27c30920a745f1
BLAKE2b-256 d3cc9a1690fd16980d952982a7fe4d74d04544f3ac8130975983b6f5f7e78a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99e05ba534c2888f5def6752b3b8174be7bc001d95506cb840ad96c7bb44a466
MD5 0fb07a7e9bc5bde3e8d25d2d7e9f6c1d
BLAKE2b-256 0d1f14ba3578b937721692cf50a1feaa53d2ac099b2620ff77aef26c798eeebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0091fa885d56022e79b1c28385e39d170113b280600a7faaee0da458ca746d45
MD5 c309a182cbf98511cc16b61e4d459077
BLAKE2b-256 2a074409d0cf1cb709539af32cb19cdb2dc3e70d095159c4ab92ecc9851980f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aeefd3c601a8eec5bff4488fb2e44625f1344957babfbc1666a8160fd0fc4654
MD5 55057e93361ced1ecc7961daf93ba9c4
BLAKE2b-256 039a458741f7610e57b72119da3c8733230dfb2bc2b784bcb354d6b52bf4e324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6cf49dc4c33cc5607fac0c648789744fc2e3255bb037e3151dc3bf21f783222
MD5 43ee19c7e232360b3f74a66c304c3d6e
BLAKE2b-256 facd461bf1c40880b8e54815a6d0875050aaf76da56a90c24d602f88f9c0467b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aad111bbd0be410cdc0046b48113f12b5e6e56dd3b91de786ac760b4ae1c6df5
MD5 58f31e84e32de3709b0ebb0138b15a19
BLAKE2b-256 e30b3a3f02465ddf9950c3876d843e775091d676e212bade59c224029886edd2

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