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.4.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.4-pp311-pypy311_pp73-win_amd64.whl (198.8 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (466.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (493.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (529.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (425.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (310.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (279.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (257.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (272.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (269.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (288.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.4-pp310-pypy310_pp73-win_amd64.whl (199.1 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (466.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (493.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (529.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (425.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (310.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (257.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (273.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (269.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (288.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.4-cp314-cp314t-win_amd64.whl (194.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

xmltodict_rs-0.13.4-cp314-cp314t-win32.whl (144.2 kB view details)

Uploaded CPython 3.14tWindows x86

xmltodict_rs-0.13.4-cp314-cp314t-musllinux_1_2_x86_64.whl (462.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-cp314-cp314t-musllinux_1_2_i686.whl (488.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-cp314-cp314t-musllinux_1_2_armv7l.whl (523.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-cp314-cp314t-musllinux_1_2_aarch64.whl (420.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (274.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (251.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (268.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-cp314-cp314t-macosx_11_0_arm64.whl (266.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xmltodict_rs-0.13.4-cp314-cp314t-macosx_10_12_x86_64.whl (286.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

xmltodict_rs-0.13.4-cp314-cp314-win_amd64.whl (195.7 kB view details)

Uploaded CPython 3.14Windows x86-64

xmltodict_rs-0.13.4-cp314-cp314-win32.whl (145.3 kB view details)

Uploaded CPython 3.14Windows x86

xmltodict_rs-0.13.4-cp314-cp314-musllinux_1_2_x86_64.whl (463.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-cp314-cp314-musllinux_1_2_i686.whl (490.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-cp314-cp314-musllinux_1_2_armv7l.whl (525.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-cp314-cp314-musllinux_1_2_aarch64.whl (422.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (275.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (253.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (270.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-cp314-cp314-macosx_11_0_arm64.whl (267.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xmltodict_rs-0.13.4-cp314-cp314-macosx_10_12_x86_64.whl (288.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

xmltodict_rs-0.13.4-cp313-cp313t-win_amd64.whl (195.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

xmltodict_rs-0.13.4-cp313-cp313t-win32.whl (145.1 kB view details)

Uploaded CPython 3.13tWindows x86

xmltodict_rs-0.13.4-cp313-cp313t-musllinux_1_2_x86_64.whl (463.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-cp313-cp313t-musllinux_1_2_i686.whl (489.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-cp313-cp313t-musllinux_1_2_armv7l.whl (524.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-cp313-cp313t-musllinux_1_2_aarch64.whl (421.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (274.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (252.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (269.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-cp313-cp313t-macosx_11_0_arm64.whl (267.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xmltodict_rs-0.13.4-cp313-cp313t-macosx_10_12_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

xmltodict_rs-0.13.4-cp313-cp313-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.13Windows x86-64

xmltodict_rs-0.13.4-cp313-cp313-win32.whl (146.5 kB view details)

Uploaded CPython 3.13Windows x86

xmltodict_rs-0.13.4-cp313-cp313-musllinux_1_2_x86_64.whl (464.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-cp313-cp313-musllinux_1_2_i686.whl (490.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-cp313-cp313-musllinux_1_2_armv7l.whl (526.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-cp313-cp313-musllinux_1_2_aarch64.whl (423.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (276.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (254.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (239.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (271.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-cp313-cp313-macosx_11_0_arm64.whl (268.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xmltodict_rs-0.13.4-cp313-cp313-macosx_10_12_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

xmltodict_rs-0.13.4-cp312-cp312-win_amd64.whl (196.8 kB view details)

Uploaded CPython 3.12Windows x86-64

xmltodict_rs-0.13.4-cp312-cp312-win32.whl (146.6 kB view details)

Uploaded CPython 3.12Windows x86

xmltodict_rs-0.13.4-cp312-cp312-musllinux_1_2_x86_64.whl (464.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-cp312-cp312-musllinux_1_2_i686.whl (491.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-cp312-cp312-musllinux_1_2_armv7l.whl (526.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-cp312-cp312-musllinux_1_2_aarch64.whl (423.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (276.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (254.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (239.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (271.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-cp312-cp312-macosx_11_0_arm64.whl (268.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xmltodict_rs-0.13.4-cp312-cp312-macosx_10_12_x86_64.whl (289.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

xmltodict_rs-0.13.4-cp311-cp311-win_amd64.whl (197.8 kB view details)

Uploaded CPython 3.11Windows x86-64

xmltodict_rs-0.13.4-cp311-cp311-win32.whl (148.3 kB view details)

Uploaded CPython 3.11Windows x86

xmltodict_rs-0.13.4-cp311-cp311-musllinux_1_2_x86_64.whl (465.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-cp311-cp311-musllinux_1_2_i686.whl (491.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-cp311-cp311-musllinux_1_2_armv7l.whl (527.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-cp311-cp311-musllinux_1_2_aarch64.whl (424.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (308.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (278.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (255.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (271.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-cp311-cp311-macosx_11_0_arm64.whl (268.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xmltodict_rs-0.13.4-cp311-cp311-macosx_10_12_x86_64.whl (287.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

xmltodict_rs-0.13.4-cp310-cp310-win_amd64.whl (198.5 kB view details)

Uploaded CPython 3.10Windows x86-64

xmltodict_rs-0.13.4-cp310-cp310-win32.whl (148.7 kB view details)

Uploaded CPython 3.10Windows x86

xmltodict_rs-0.13.4-cp310-cp310-musllinux_1_2_x86_64.whl (465.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.4-cp310-cp310-musllinux_1_2_i686.whl (492.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xmltodict_rs-0.13.4-cp310-cp310-musllinux_1_2_armv7l.whl (528.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.4-cp310-cp310-musllinux_1_2_aarch64.whl (425.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (279.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (272.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.4-cp310-cp310-macosx_11_0_arm64.whl (268.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xmltodict_rs-0.13.4-cp310-cp310-macosx_10_12_x86_64.whl (288.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xmltodict_rs-0.13.4.tar.gz
Algorithm Hash digest
SHA256 eb4c9b00d2f20d227a05d94bb1030239d122ad570f125cf76e154bcaa3723562
MD5 75a101ecf9cf87d4da897e9820f407b3
BLAKE2b-256 7e75d898263886e462e371a668d68a492f04009429d3399669fc1a4843d1d303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ce3f0d588de5219981e3226c4582923d135daa5b6b721bcb6aa86a5355fc30e6
MD5 9d65acae70fdd1996c52945a54ab84fc
BLAKE2b-256 833c14807c29ccc8dbff5e8a2eb4b39f0e4ed0d746f6d67f8604f57c13ee075d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 902584efe8334312393746a096f46061268748deaadf2050ee03bf84bb635aed
MD5 f9c135a829ec15f0403f0b743f167910
BLAKE2b-256 aefdca80132246e5abedc12dfe02812706fd5cf8ffc6fa2bb9a816d24e7afad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 538864be403f59e3f96be76c8e3ca66ed84cf99e0f931e8e6bced911a2fbb30b
MD5 65e06302d1ca5f8d035b4a8c50c8ced8
BLAKE2b-256 f471711afeedbcbe7bfb83772fdf33aaf45aa1901f808cb1f561b6e662f3a884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6e997b8c57796354c87ba1a57bce04cf6db7e07112c084cca2cc6a2aa771235
MD5 47fb3db3cb20b0982aa6daa1a51e39e0
BLAKE2b-256 edaa759a34a56351e535c1f403a0e1c8df1c94f5a2d75313aa60e24081f42cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91c2065cfa06c3ca7bd542b1be799846c96701e953e25bc39dffcbd9155962a1
MD5 7e5c7f0b721bae85f1955ffaf1d67cb9
BLAKE2b-256 2565c7dc2b61fc90ba32c74a670c1335e64c4d9e20282288520f4ce31ade508a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c07fc57e78c929275b33f07fa52a8e2dd03bc6449770f1899b23a1ad73e754
MD5 162d9bc0b918280c7d816b172fc4ff19
BLAKE2b-256 3bebe5b9984b8fee1bba27e42f176b3b1896550d33dce00fa39608959cfac655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4aa8834227e4d83f315c7a474d4ef4be294fb3786d57ea79564ea4e18e37fc6f
MD5 fcb70d0900866ed135eaef77265f54d9
BLAKE2b-256 aa0cf697ecae97691819e015853f889f26bf3bab4adcf4ef81fad8de698e76ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 355c4bd07df3a3dba981c5cd88a54e6099fe336060e526473bc21e814dd9eaff
MD5 46cc2009d1d5dac3db2c91b379474d6a
BLAKE2b-256 083465d795a0186af8b4f439d92a4320d98c9d45c437cb3167de052d4f2fd454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b9310a8818b9b4fe58cabd247211bf65ec83e5ddcf542e58d0c8a69681dc166
MD5 11c2a088a7eed8a970c2c17a25629f6a
BLAKE2b-256 fe9d5fcbc209004364fb9069ee418b785a329aac920b2b180bd500e515914f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e2a81c2f55132eb2455bc9ad5950f84c6a632f2f6cecac201059444e17b85f8
MD5 4b2f6bc1eaede220c658fbfe63445099
BLAKE2b-256 c3a77a7e7d3ab40b75aa2f26e338987e14e4900a84c5bbc01262d7c2b3f09ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea204980bab0349f40e311ed433bbc2478367520b94ec3e2b56673f30ca4650a
MD5 6f747fa218ff33a5c7e5303a5cc31238
BLAKE2b-256 b4542a163438343c6c2c77c06746cdb93a63e0bba9f0b17940f171b25ee54e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f453f933bab18b69de1ab9c0545ae752d6f47eb2513837a99775acfaea770d4
MD5 0dc8f7c069e4caa0327ff3f241c88a57
BLAKE2b-256 87a6ec280a2c8efdbadd3ef94dd66bb41d0748f55c0a7ae4cd184a09b74a9ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ac20df9d923fc5a3e9a745021fcb4092aa8e2647efe3880ea7803398f271224
MD5 08bda8a40406a65f50fcf40f71eb7f00
BLAKE2b-256 522bd15d3fa459e8f8d46c5748ec0fbc2d47e047c25f1d66f5dc991a447751e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 99e38721aa80e709c097a20eb75b3a6316767882afcf9650aabbf7e8e1f12d14
MD5 578dde8e638278278cd8d5f927b6c4b8
BLAKE2b-256 a364261d6080bc7877f7248580f856c4a576f7b2e30d0ff66482c8f2633cf490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 676a8371c2b50aca56ce19dac1888ec1a00c97b800fc8d2aad4c9cf8740aba6a
MD5 91f4756f63a430c5bf570976024906e2
BLAKE2b-256 99c067606807aaf0a433b2778f11a336d9fb8c32f090fe603379856d3fbc026c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3df8cf41d470492a3559c97adefd311fb6d6af3d7a4c2ee5578214922ab7056b
MD5 f18ac27cfae92daac60c6cd0d227ae28
BLAKE2b-256 a5307386556c124498ce6924b86eb5b6b6c9e7bf06e5047e9a530078c9fa6593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9ac6d06c2e6ebe1fc6865582771a1115b4bac32f2ab6e36a78915a289372f00
MD5 0dad72f77749083b11526d48bf5206e9
BLAKE2b-256 4d3ee0ff9d5cdca334c512926e91e060cd6b39e50791bed8d64193384f54fa39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 139bee1f076d56e845aaa88e1e807ba15fcff59b4dcdad98533416358cd818fd
MD5 55d098f4577304a454965494fd39d6e9
BLAKE2b-256 4552d07ec3bfa84b1f9a371b288ecba5246c428a61bd4a224fe30ff8ca391d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f2fbcda0f9527c50de12ffeac21703da80dee521486a2fe9e31b5fc1d3fce9c
MD5 2aa27abff0d1c67126b3826a40285c25
BLAKE2b-256 0b55a3da128b161634155057045e87203764c75787f3cca286295d310e5057c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f3ccd09bc0c894b8b3566aea5f73be4eea8b48b8eca58483e984dab52395b2d
MD5 925b4f1dc70aa0a12d2b88f2ceaf313b
BLAKE2b-256 a49c36d67f1cf2f1bfd9075f539954497c3de007afc27435acae98bdf700cc05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a703930d7e831a0a458a113a553a87d539620f946681203c57f847d2f87315b8
MD5 e4fac990bcbab75688461dbf189f605d
BLAKE2b-256 e4743cec6d30504890fb8876599705c5523cbbdb91110aff661fa94574c4b7fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d53afa1b2dc2da866edaf3ccf8cb0b8a0efba3e6a9bc8a3212e3fa15c4837f4c
MD5 9d3275d2d04be11435a8ae1ff38822e5
BLAKE2b-256 1defc204da78f393630aa42c88a1ed3bc7501a3e27b22468778a6d2411643d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82b0eb4346b08a91b626751ac0ae2862d928fe031e6eb98e83111960bf85584a
MD5 b1a460504304a7303b74ba07dfddd642
BLAKE2b-256 ecdc7187add3c8bc7f7250decc1da0433ad8659cc85f275c2e713cc6b877f543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4ecbce35953073400b4e2619c7bec33fea4a70cfc26742b8291bc4f61903d4c
MD5 736fa117fbc3fb8af3e77d3a323d7617
BLAKE2b-256 9c73fc7755c3c513a09d58ae47ae688122b3fc4aa3b3bd20ad564a4bacf08d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54e940276cbdfc319b5dabdb1a1bd9a47d001c94583dc25da7823159dc1f0168
MD5 6a81d742c7ddc5df9264f9b5520b7fb4
BLAKE2b-256 bca9c0b15ac8c38495545150bb32c3e292dd1a847bed230648869ab133329d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0e44d5cc6437d02cacff0df807d7cca31bf30880372191c382ee382e6b0e4da
MD5 e5df35b676e540c1cca12a2165d29c30
BLAKE2b-256 e3ff06b2f68b03094362b13882226700dc5f53eb66995b1c0870c2e0eb44ffef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3f6d965b33b2affaee78f705b82c479de73c56beeb0377ca97bc0db67bb92903
MD5 7c086d04cea654a23bec1f88516f58c9
BLAKE2b-256 895ca5798e3f2d0a6f55882eab8d4e4dc4046c7548778f8a7cff9c8152203f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 56b9fd482d796beb32f41914391af2dbc98f20d09decba693b1b98807d9b6de6
MD5 86395ee6ae74340f30318685ee2e46f0
BLAKE2b-256 6bd3dbd0d5f9761a16aff4a0f31a7183d9161787a0bbe33d64e8eb7566e030cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdc2d6c61ff4ab73322b189c36f8ea3a41e792b3b28495997a69540c52da62a2
MD5 edb1efcdf3931a104cb4016c39b53e46
BLAKE2b-256 26f5751a028936e1c6deddcc2a42bb1f25bde577b6514ada1a57ec2ed5241231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95503de3965da942f520b77751b8ff2dc40763a7354490fff95f9a143f687ad9
MD5 2c04c983ab4f4e56fb8795079856c395
BLAKE2b-256 313d06332095328c5ceae2e8a56b0cc72428975c77d56fd77f681bdb00734c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 941efa213e40c97d3ac61ad1f3ba42a6e27b6c29d7279926058d5ffcb0d31840
MD5 78fd9a391d4d739465d58c85e13b0338
BLAKE2b-256 148dea6e921c7b657932f2d35af62b6a27d594731bfcf3377e27fe31fedf9384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3c7d03eab0f1a93c7944701691cba39542b02f72ca99d19dcf90b50596737f6
MD5 80aa9318b199a4f56d993dd7528be7b5
BLAKE2b-256 12dd2703a3ce0932cdd51aef2afae0d95432e7990bdfeb5fa6414cef05594b78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24af17470816806d9309347501e8416ba3033170847398dcfb163ffadca03018
MD5 cfdf7417800741f66559ea4e95e070bc
BLAKE2b-256 28dcd87948a6b43c16e940a9803b1306fac87e02a81e17ea4f8690922958fb35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c9eae13f6463649b454bb57bc95421cb20e0d8fc08a6e099c5107daf0115a7c
MD5 70f8be008ba7f400075601b769d5536b
BLAKE2b-256 85077095a29b570363628d31fb310c911072026d8a2730460e4d5ac1425445ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96ccd50d7f0a1fb39126fcf85eca40978332f870987a7aeffe7f11083bc3b27e
MD5 52b75349424470b0640b169ca8235d13
BLAKE2b-256 7fdb6ed0c835ae42275bfbfd118c66d7d7de979daaa16cee51db1ca89184c02b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 103abcb892f7d92e84956cb8958eab9bf51fcbe14dfd2e5e8256a6cff420419c
MD5 0e4a1b7f19c96d8c0b3681f047528cf1
BLAKE2b-256 21430346fd226e98bec2b4d1b34a68933177922b2c14d2df27ffc081488c01eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf9953290513c4dfb59b845f840f1431ab1c297f351133b81fae183b73b51629
MD5 539bcc8a9414215bf5ae9dff36e0624f
BLAKE2b-256 294720a94b190240ef9c75a6d0eb0717948c560738453a6b13aa2f0f898efa9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6adef156271d9c5ad317240a6ced5567c63185442b82611e8ca1d96343fffe47
MD5 82ffe3ef3c94c1b2f2270e3cdfee98c9
BLAKE2b-256 1fbafc8bc111fec8eb87231f59b27d27bfe860e2b61e19079140453077e7e230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 744ba726c79479fc0ea359c505b8ad772b9a90928ce29b7b33ef297cdaa944a7
MD5 25df75930b574408aadeaa539b58193b
BLAKE2b-256 1d91d93eee7a73e7a5cd9201ffef509c3d7c9654e4c980d8300000116a8a11b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0cf302f45ec1295980019bfb417e7ca2eb7177a8d17c82503254cbe3b02aa2c7
MD5 f4543ceadf08ef4fc7430e0946541830
BLAKE2b-256 562d6d9fff8b4a902d70cc9f0bedc6f5aff145cdeb02718b18934e14c4cb168d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a54eb1cddc5f2505af5388fc1ff1f3b98a9ce72113abf10a38182c81d88a8663
MD5 17d470a2dc5496790c177d6b75406267
BLAKE2b-256 7f86638e6d685a4970687d85d8497118a2d5b1a5bae72ede5f4f9de1ab62cef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 31f8e7926e10b59916347dec81f5c3b9f0e431c3763bd636b17b4b24823abbf2
MD5 055ad0572f44377580a484be4de489e9
BLAKE2b-256 bfad09326f73a99c08f312c23e559090c3c104351cdeff1b12b26543007bea1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f64472d91a894a2ad87981d882ade5b85cc5164e737083686a04e59b45925d38
MD5 e9b3092a2b42961ef401f622fb4a0912
BLAKE2b-256 accda2016a5e24ecec88304a78f56249a39b8590ab458fb566091c765629b1c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0d4dee07d6e5e13cdafcda5b1fac8c1040c2b592bf922d15419ff0ca5b2092e
MD5 ae0d55294fa9bc5b16bb373c406903c1
BLAKE2b-256 8f62ca74a8c2f51c5c18906e23c4f58d53822e4226e473e9396eefa8ea008139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4271e9d47efe223cf377971b51db21eb0c5c4133741d5c581717c9cbd73de624
MD5 7f410249d1fe3139f3fbf975174988b3
BLAKE2b-256 2bc605958dc83d62aa6ab3d2217bfa50c479460dac293a644d24e301f7f408bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf0bce60ee8de1bcd992986f5ccbabd70ff27ba45bc325fcd32feae8095a8714
MD5 92ea12f68f89103ca4fcd5f78deb6d2b
BLAKE2b-256 086e6175dc315caccc68179ef3d647d9f56992a8b1f44aa55ff4ad1999dff2d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dcada4f6ef5962327df5af5580066229b34f0577c3ebb78812cfa3a2e4fb804
MD5 db95a5d7ab0a71ff5ea4772c31902d74
BLAKE2b-256 492b8e23ced12e185779a71396cc875fe62a7ab21c0521a3d486061cc98b5a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d235d0b364b20655d83c739901601bb6263538e35cd32d45ce4935fbd063d502
MD5 1b7d19dddaf6791ad525d4c921103796
BLAKE2b-256 92282eb1bb4d29fd32ab6d0cf4c1a2e1260bb18a56c25b5cd2d59f47046c4cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fdef67146d69884a444b6591f747b2a2ee9f3a3c64bdca1b980524267f3aeef
MD5 24f3b10a20fa3f6e8cb5deb259943956
BLAKE2b-256 82709a561364ed93a0a38a51cec242bb412771fd23af8d5e625899df7c390ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b22024ffcf99e480089319b25df8d2041d124c93378cefae3d11aa9058facde
MD5 cf2efe283de27b3827109ece6aad1d61
BLAKE2b-256 737e42486232b1cdbad91f727f4d9388764e2b53b7de0575c88073f24ea870fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaf1d00e9a9807001b4aa19b1e2a64af3c588f35ce52e667c1c486fee2cca4ba
MD5 3e772d3aa9f987676af46b6e48d50897
BLAKE2b-256 62af297fed7b42ed743a977000c71f138dd789e02b6bf715bc3e973d752e894a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8db2c8948cf9adc83445120f056472d1442dc394ea9fce967a29a5f9e5341c62
MD5 261398b06c2b44425d1719c5c87d4ec3
BLAKE2b-256 96a4ebd034a4e5b708282cdeeae6f2f065dc2936da379a731d9e435f689722fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a89b2fa20c3a3c4d8ee8a468dd240036afdcd694b05f497dd09c46328090df9c
MD5 9b2e15762603004253613e51ad54a079
BLAKE2b-256 088d75e1b6b0187377b5003baade9adf1211e222b63d170dc18b149ad6b81f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d59994d1f95adf4b5d08b006c843cf865e7efae8c010f8b710cd669c117728b5
MD5 8db34fc56ce76545dc04af3ac9c9bbe5
BLAKE2b-256 1fe553e624073b8784549b25133e9bca217274654b0acdb8a3247f7a26a839c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 12953648f11b1fb9a0f4f4842e2ae02b3e4a269c1ec4e23a30bc02d13fc22c9b
MD5 ee44c8e420d36fb2286f7b3e6621fe2a
BLAKE2b-256 c03405bb42d607d484208d52b1dac70a8635aef7de4ef46831664dd0fc4df27d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e6b04ef80da0c8a54d8977ba019511b10ba5e286b3bf8819974b7d4f2965ab59
MD5 cd5645c32236afadce3219dfcf0f84cb
BLAKE2b-256 4bbb05d0bd067dc685218f90c3dd9bd04d32bb75f025407293a8755b3dc09c66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c429b838cc6a4977c2afda35615031550ac44d0d3479310f4cea7e5c4dc06358
MD5 5e3ccc803eba1254f838ffcf5912a6ff
BLAKE2b-256 9cd4ee2c87c95d4aae133ae90767303181b1f565c91ad9fcb7a878034007887e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff46c99896d73499a0935d6dea5fd676cb90874d07c52ef7033519b6621c9c35
MD5 5a1b4de19ba8e55d7cc6674c24358470
BLAKE2b-256 3c4812f9e4b71d4024c2f65d278fad4311555839ae6d368928d20820c4f3e6ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f48fe6b6959529646685d20f0ddefac4c7e94b842f2cb01b72666d67eed5178
MD5 cba20d8c5dda04e53e724c97bd572d41
BLAKE2b-256 a67d8452f33dbc2bbdb527fe3f7a94df9e3d17332a3dcb86db3257ba983322fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e3532d55db093fe0f16775c49e2ce81464879e48ed61cb58fb430db80ba1f4c
MD5 4d2baf80f44c30a9aca8563de7c57483
BLAKE2b-256 93cf5dbd91d2fd11f18b6379ecb695412aa8c9df28ac2f4abb67956077ebf72d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66afcd071690d8fcd0ddf40fe170c42d270a9de2eccd1c55c5f4b536c1afff7d
MD5 e1d65c95df5067e139e2a7cefb0806c4
BLAKE2b-256 39c2c0ac260c557f6c11a861ec1d4f205e05078b146d2e58755a6a4ff395706d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cd1ed51e937f7ad0f01986381b840d7a1376a63ec32c0dac0ce9a5ca233da43
MD5 0ae049a6a04c03c238c1cadf7bd72e06
BLAKE2b-256 bdcf50aeb11712cd2e28e69c2cd0ca3f7d3f888d29b97d97d38f0074be530f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f0cf502a352814792d480c9529916660861676b2ff92598701d1b8d7000e0af
MD5 abb20f01752bcd68648d7bdb76b92fd9
BLAKE2b-256 9d437c01e92e6625e2f9b570d52c9bbaa4b34e4a859d78fb21c33969abbe8135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a1d72136d1271bdd69d95c6c0cc8649f81f969cf21185916188a316a96ec692
MD5 0849151693628853176e4105847ad8cc
BLAKE2b-256 98d8cd87bfa5a2db66dca8d2375a381c7bb3d7e3ca6756c8c87147daddea3b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 745bd13a0acedb59640d7be73ae7107bcdfbccbb6bff14cd0cc74ce466273dc8
MD5 b4e816d5a79801c1ab343a750b7797de
BLAKE2b-256 4e9d5c2012a6f999dca3daee7cfafeacca3d33e922d2d2075c61c05fe35a4805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eafb5cb337d65bf0e2985e32bc2f70059966dfac65b2dac3db22573baf3a0325
MD5 d0d1b7c2b2e54d3dedf40a2e5712c473
BLAKE2b-256 014af0fbf310e80ed7e122b7af53b1cfd945dc0a1c005b355602173e37ff6995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bea0219787966590ab677cf18fba54ae40af5140625bb925e0cdda3516be069
MD5 72ec1449f2235670022ef7a56927eece
BLAKE2b-256 ccf967d234fc45021dbb5878d13df0fd8b5b24cb1ae5aaf9d2b16c5e29c49ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29de590009706f3af1ec6703e466f4f38799befab3d53ac1de67bc276753a55e
MD5 7ed1d0def2e381243b3ea50715961b19
BLAKE2b-256 91747669d27f356c3587509cc095edda33a33d0621426760d84a40c25e309993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 47ac43135639b666c126cc713d3f4c8e165e7ee4a3c2f809936253ab68f3eadf
MD5 e96b54ff337cb2f2e922ba18a2f19db3
BLAKE2b-256 7b400e9993c9d72df3b74fbc2e57992788bd994d1a355f8b2c1aadd85bf7082a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 60eba653321a2ac25a4933e62ec796b81d80cf7970c6703eb9c658d89bc4cbcc
MD5 ca297a510bbe598f442fbef07941852c
BLAKE2b-256 7b386ea550cb426291fde8b86e11c0ecdf043ab41f0fd7f61e4fc49ebc0d9292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22ccc60c2d2c8ee926aa5db0f5a45af6536634687fcd8092b36c1d960fbbed88
MD5 aef388007e2cdb41d4cc18193f6e9f1f
BLAKE2b-256 e0c1c5d09dd37b7222287bed77a76ff51bb0ad61c2bca668a45404484e539a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2537c2ba851863164bc019911ec964b706f2943a042fc4e93248e3a07ad93780
MD5 0df41cd39fc5e401c261ebab19d5a027
BLAKE2b-256 dbad9ec5a8ce23e7426c4cb7b1947278fdfe486925643defa0b803dfdb35cc9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe6b6d2e48fcf51d9934b85487d7db1da97bafd7fc24a8799aabebe65bbaef69
MD5 f4da749f4a09c0a7580e09262aae88ad
BLAKE2b-256 a867aad8f04bae5721316fc0a923036129ccfa95855bd54b9abf1991ce7d6e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7feeb3745e0fd78af4fad4cbd1b35eca1701e79305ccc8bd914ca9d1e493d95e
MD5 752f0ae264557578298f761c759590d6
BLAKE2b-256 fa2af768faa54be2394e83fd523fda639f0ed38ddd7ccfe67ac9deeec5a17bfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a40bff8b0350e6a131cafe1065d5b86ab189317c0c20c60c660828b75a70dcce
MD5 74d61982d550919b1a1042fea96b54b7
BLAKE2b-256 170f9a351cd1059c1f3df654b06a313460b96e3cd7532ec46633c102a6b32b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52a9c71e813c0468998d5dd6fa6e7dc9d3c030c7fcff83eeb0ec10ecb1f79935
MD5 1043349b70177ffec4bc435d1ed43f0a
BLAKE2b-256 9dd5448f8886b98a62906263d7576adead1f9c4fe02c730fd6051e6f09e255a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d564e457e0d760a73ec040d3c45cb12e81aeb4f66190b8c3036d2047fbd11d9
MD5 f7280c050cd1feed4b18532cee2774d3
BLAKE2b-256 fb53d4c94926e8dfbd270d9d9d007c37b49b9cc45f02b7eab50c2699d0134fe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44b523a28730cc934ee2b61e76b08513c66a2c2ac8851ab5cbc5d7df83fc389a
MD5 c918927313b7bfa5c55b28335251186d
BLAKE2b-256 6dee5d1933cdac448103364b54901296c4d228d8428b783694c32cb4d15b8591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7d7b92cd5c53dd978a3ec360fccdd8c3a79949ee19edac7d232d29f7cba09b5
MD5 34d7f30e24bc6d7ccd0cf22fc9120d82
BLAKE2b-256 c4548cd6fa545ec42ad809ab85b89cf22c1e411463d9dfeec18f1e7c500f37f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9441279712a8aef9c56014742074e99fe9616b0c72bafcb79232a27664d34615
MD5 a244f2a88762083dcee93c56f95e0443
BLAKE2b-256 f73869c702ebea7a72d28339163c35d06016be5a25127a205bcd29c95f2b5ba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddcb9b9987be1b31d5e03df451371a032d6863983a7d227ecf8c3195a8ea1df0
MD5 458cef38f26aeb3189fbf4d4dd7ab45c
BLAKE2b-256 1cc82b5a7aa25f486f4c6367889c353f8fd10e8eeb146e6851dc7fb5a5c283d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a61e28c5e92ce7e7951f4409b933c3372b24bbabe132e6001dface5e764efd34
MD5 b6e2186ccfde5a476d5cbae17bc45507
BLAKE2b-256 e7cf61e0ead1eb8fbb6c7cfc8e352aa3d2ee43779f8a63ed506bb0924c032cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a06cdf95b89d038ef0e0fc2ba9be6f92a4805d09742521b38322e3ecbb82492
MD5 262d6ab360776f8c36a028d8913f6df0
BLAKE2b-256 b83ff0a6163725e0f670e48917d3132fd6b32f564cec2ca556dc386e72a88b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a9dc2b03bb045cd23cd8ccada08ea35024014d8a611fc1f0e782584664e7bccc
MD5 bc05d1afa2e2c93d5ded35a6fdde4424
BLAKE2b-256 5b518f6fdfc7906381dd3704627fcd58f69bfc337ec7a968e55364851e5a184f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b47eb721181dbf1b5d3b28ad7c1505aa1fc7e4f3b76279fc88377890a02b05d1
MD5 adf75169f717bd2113270d04de627b98
BLAKE2b-256 09401ac083e01524aa11c7cfb7a976fac4eff856d8eaab91b01370f4a8d2455b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8dcfce35e71bf6ae50dc0868b2672912ba4f933fa76ddd0d965ffa718ca07a97
MD5 e09e702a44685d2ebdb4df1ed16e248f
BLAKE2b-256 330bf7336a77d6833f3cae6a161213950fa64061c114a9e3b718413f95500f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 763674e0ef0833d9c1496ccc3516cfc42ab47cfdd55a36f083f379268fb2ac54
MD5 082d06213533270c19975070362ab80d
BLAKE2b-256 5439859152b80aaf87cd59456cfeaf180cf4c04bbbf5f7a8da5c739f6131a7ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8367f0180bd3b2f379add97c13e9a7132d39486d48cbd310bccbff357a2d59ed
MD5 d2d83ef6a48071ce13f499e7b04827aa
BLAKE2b-256 54a00e76b6c5d857cd8d2bb1d973a3c7171869b336d6d821ab12d81bf40cf81f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd5b455c788edcdb03fc4917525d13bd9dc90a26a53ccdc1e022c90948151349
MD5 1aa432bfefafe557b02188f70bf41f9a
BLAKE2b-256 974e5028d0b96b20c53fd343e6f10d2f8f4b3566566f05d0e3115f81abe5f876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e27cd2656d1d20a82811ffd4a2775093a5cfb24c443b43e5b167c7a8ac223e38
MD5 666fa6414fb9bec65bbfd139bc121bda
BLAKE2b-256 4ae8b513092aa849c59b1576fbf2c96671ca2ec6fb9a14a29cd0c37b240fde29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f7e2feabdefeaa363c10888efeddc1ec4da97173497edb912923c7047206f26
MD5 da0bfbc6b7917c4233f049d127dd4539
BLAKE2b-256 0947368148fd885787079d0f9f0a41d003cb04a084e2c5943607d1fdaf14eb71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f269bf1670fbf86625c9a8cb988820fa50c38480b937d09b940052d5adbc7b1a
MD5 48d17a94a8ecc3f1ff4d092cd9484f99
BLAKE2b-256 4f1f930dcab7b839ede836d826be363e5cf55f1d786d6a2cb3f91897924501ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ded82cd2050aa4c4538e0a82d145156a36d58803c5198e16b9e24eedeb156ef
MD5 18bb79e90754b8581824ceb629ace8df
BLAKE2b-256 c697f0e1ea3d55c0e75b0570fb92c8b00f86ca001ad9bd3c208cf2111087b5ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dff3b275e6fe991e781fba278d9de29dfeef06c20a9a6c87214562ef61ef3b37
MD5 0e4b5c1acdfc8d10c0994ec639bf082f
BLAKE2b-256 a729b504fa989f929ac10271874c0fee873ec6cedf92f362a6ae46287e8e3904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdd44db6f26a15016c8686ac8d14451eb2d40977a191b824758aa01b7df8ea70
MD5 61df6367cf60cd313f3bfe1566ed769e
BLAKE2b-256 55c531e82f3abb2bab2184811784c5cc8b45d93023b84f1d8e32967dd0105d4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdee9c605b7acc230a5cd187778ec64cfb8c667ef59eee44c1def7a8602f69be
MD5 05b0bef312c882d7f14ef0462e7a511a
BLAKE2b-256 61932fcc108015494667f0df5cc133745c060fc315d50f8aa61820b732407975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6ebd504f78bb98bd61b8a62e0faa3860d52d3d5db50bef27c0bd7eccb41f32d4
MD5 1cd0c8d4e97388fc8aa6d295e51f4d6a
BLAKE2b-256 ff2694f85cf637a06535fc934fa4b35cf1177517f975a0aab3a2dddf4d768424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6c4ef757c5b7a69fbc8fc0abbbd34e394816355f113f7016558e4de944913d54
MD5 b03844fc1226b99678a33380ce1f5490
BLAKE2b-256 9d778b9133e748c2bb8eac0de9be0062c24d6dbfd9835f4502316c8427e20da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a957159d264f0d16272a35cd835d935849a93b6eff618faa029a495500ab7c0
MD5 afd0514dc76244c2c14d80d013eb5fa2
BLAKE2b-256 29d115ab021d258675723c24d2d01431c42e451b073b25225cb8633079ade933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66969ded74aee1f6bfc9cd897f0463f908de8a5738b350a2b0ddb0df8be93fd8
MD5 fb3bb2678451014d2fb0959c71e398db
BLAKE2b-256 77da237e8dd4cde28e568ef414d76af22dfbc76ca9b4cce8dadabaa3278445d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1bccc5b178c5d61986155e49c0e636dc9fc9d993a1d9f1667fe7ca2935b38dd
MD5 9501f1f49d4be8c88989e952d2047d36
BLAKE2b-256 f246e3e34a4b8ad14d1f18d48a388e1fef7e18be76fadd509a84419823771c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c558ce38be060db9194ba18d5c0251644e9b53a5a4847b052ca93bb5ccd8e9fe
MD5 ec7716e512a7988dafa1380d803f5791
BLAKE2b-256 d250953409c2fc95736a191d215ae5c84c522df4bbc4356061f6abc16d967413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f57f7ec59bdb511fc848656f166ebe574e3667bf1521752d60e8f300c4142ea5
MD5 703f1760611b906c6d09191239336f90
BLAKE2b-256 32fcb6bf4b8769001a9bca3d31ed471a3c19421f31024536d68da6f1d6d3bbc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89a763bef1511bbac1ab19dc8e9a9be22f49ecf5462ec39f7b33b09d995ec9fe
MD5 457debf1794a70e811acec770ef200a0
BLAKE2b-256 ebbdf96405882fc256a7f01a836f32b24f992944a07e3ea00998432cb90e545d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58c535386ceacff068b7f26391f95ee6d1e64642a9c6b1016347a99c836cebc6
MD5 2790252e55ae40031cd5d8caf271eb3e
BLAKE2b-256 10d3c65632ef923e1c7d4e250146d54ee5e8b0e6a689f06b4cacca240140a7d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 004b9eb7a96d91326b094f595d1294d29d0f720c196df76fe780163511189e87
MD5 adcd9216f532823077284a8802ee04ac
BLAKE2b-256 47e2dca8095f0f7343dd28764228f5bfb962dedee1374dbaf5bd119f7abe78e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53f10536f608941605e847340a756623b0b3f27da2f7583b33eb652abd1f726d
MD5 abe54fdcedba002e316da11086876b48
BLAKE2b-256 ef73cbf8a7e202d246d9702ecbe3983a52e8cd3e0d91955bd275407d84432c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9052624f4fbf7c085847a24ff31d2850ffd420ff4b1331ddf0c973d73a03fb7
MD5 b16ca9352fd895cb1090e4743e0c9a3a
BLAKE2b-256 5635c5d4fce147de98795a0c6bb9c04ccea929a81ced5d2afc87a2d17df8b94b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0efab96cd00816900e3cb65a03dc8978efe8a9c71869795d856b47cfb35291b4
MD5 5813672a758466a05172d9d83cedaa46
BLAKE2b-256 ebe58ff854a65f3e76d34629f21ed4945a62fe50cbc82b58e906282d4abce839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9883e45028e1c811cc95c21fd0ba30c0a8afe20568fbcbf88b26584807582ae
MD5 4d2d66b423685117d3b2147ec539ea6e
BLAKE2b-256 cdfcbb1996d5857f68ba801ec571ad5f30ce3cd99e366dbd4d1ecd6377c1bcd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e412f40ab9fca40e9dfb8e5c108234ffc016cc88070e056ffbc92005a2d07885
MD5 ea960e58725edcee0802f11c6931aedf
BLAKE2b-256 5ef01a4e08d9847b0e9d3b2ad1a787fa7537a629b92bb75151a61382c2cacbd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6e9a939f4a348e7324527172a8d558d44473993d36ea12f463bd10a0ad7802de
MD5 3e6efc5d89738e260077a81d082c148a
BLAKE2b-256 4f904374fcd7f2624618767ce99327f9310c6f8f8634e0c26a5ec4ecf2fa38e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c905bb305cc1959c9157330f2d08e22f4fba950b838b526601f4f45833bc7404
MD5 224b9a784924a87aebd7d04a6cdf5040
BLAKE2b-256 f8c78e4cb3074762c80944d583d051b72e947c85381de4441ef50ced516c1ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb046ae3f287afe80895451c75c0e11fde00568ea8531770c96604e27f49b5fe
MD5 d06549fa3c07cdab34971e87b21a5ce3
BLAKE2b-256 eff6e7bdff884dbbd9852f90f6034d146306cd2f00c0a51fce25ecbe872934ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61c165b53c53de6cfa6fbb63d2623dc61214622fbc6a5d01b2fabd579990581b
MD5 feb9b221cd95fb5a42e38580d427af6b
BLAKE2b-256 723d4832a3b890ca32c0a15fa488e2b3b73b022dab4a22564400c8f119d8b212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ff42e3c47d7781e6f739821f832fed9035f0c26e6e5e01a82f8ccc8206713b5
MD5 93cdd49cc565f161ade88be0b5114674
BLAKE2b-256 78d22976e957a358c6b7ffd6a7182444c912fbbfff5745060de0fe0970f8d84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b71741d4bb7f4e0a2c2bae7cdcccb1e3a96dbb70e60b96d8d56badf1e363bc6
MD5 957bb851c9635cd08aa9729897046b59
BLAKE2b-256 43cf0bdc1c7f3ee85990799387adcf68630f999a450806420f7c558dcc709cef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf1e73f0800a16ca1ad431a5bc5b4f39323a8207cfa27bacb4395cfe81b47dc2
MD5 141e06cd5acb383ddb3e94909e764245
BLAKE2b-256 163a12921519b3e97c8ef4c7f2e3f2f24a2e6dcc3cdbd01f73d941233d9dad82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efcfc4f6ec62f27657515bc10ebab1ab1dbd38be2d5a59b946666c10e2be642f
MD5 178d2f17393ea3ec65813f2809a1e27e
BLAKE2b-256 24fe0536529937ccb4f798d5c0e008cf0aa4eed003173396590cf6b418edc8f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 364ca32f01a70c113224d000d4dc546d0d83843507080f4526dad539b8ca16aa
MD5 9512bc201905810c62966d6d8ecb4589
BLAKE2b-256 d2b1b6f30a5f0d5563ce0a0f919527ce2ad385caed5baf80c4b290deebd8fd74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d112a1bf32a218675f7f8c33056a4432b4ad0deddcfbcaa6d1dc4dca552112ed
MD5 10acd90bac5f0c0b4d17cdbc977a6d5e
BLAKE2b-256 e9c39a547f62e69659c5b7e43beab0f926fad3fee29abf9f2d55c5126603c678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4889c644c09670192b4392edf4d1948e44264fe73386fb3804a0580d0fbdc9ae
MD5 6d7dcc2517d12695fb9a41034708b416
BLAKE2b-256 cadf7a93c78eca101bf7c3bfb351ed06ec1a804e2e925de6107a736708cf4996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5feeb3ef639203780fd7067a6fdda136a1e862bf50c3a0388a263fdeb2f0c225
MD5 6511777d5b1f7be6a07618a52aa78565
BLAKE2b-256 54723eaa8d3bf6aea91984ced0ddd974ea8fd36f10e01bbdb35ed8f3db823c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4124636c310a8caa25cbf12e60af54cf17308eb79dd5b61f29d5e7177528838
MD5 c1df7042f4b20e7be879cc8c70f77e22
BLAKE2b-256 b474f8f65b35a8270b912711803f0a907d36a2df1a9f766831ab29dd307e0925

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