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.2.tar.gz (48.4 kB view details)

Uploaded Source

Built Distributions

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

xmltodict_rs-0.13.2-pp311-pypy311_pp73-win_amd64.whl (184.2 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (415.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (439.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (510.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (410.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (241.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (256.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (255.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (275.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.2-pp310-pypy310_pp73-win_amd64.whl (184.5 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (415.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (440.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (511.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (410.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (262.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (242.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (256.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (255.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (275.3 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

xmltodict_rs-0.13.2-cp314-cp314t-win_amd64.whl (179.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

xmltodict_rs-0.13.2-cp314-cp314t-win32.whl (128.7 kB view details)

Uploaded CPython 3.14tWindows x86

xmltodict_rs-0.13.2-cp314-cp314t-musllinux_1_2_x86_64.whl (411.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-cp314-cp314t-musllinux_1_2_i686.whl (435.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-cp314-cp314t-musllinux_1_2_armv7l.whl (505.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-cp314-cp314t-musllinux_1_2_aarch64.whl (406.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (280.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (257.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (236.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (222.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (252.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-cp314-cp314t-macosx_11_0_arm64.whl (252.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xmltodict_rs-0.13.2-cp314-cp314t-macosx_10_12_x86_64.whl (271.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

xmltodict_rs-0.13.2-cp314-cp314-win_amd64.whl (181.2 kB view details)

Uploaded CPython 3.14Windows x86-64

xmltodict_rs-0.13.2-cp314-cp314-win32.whl (129.8 kB view details)

Uploaded CPython 3.14Windows x86

xmltodict_rs-0.13.2-cp314-cp314-musllinux_1_2_x86_64.whl (412.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-cp314-cp314-musllinux_1_2_i686.whl (437.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-cp314-cp314-musllinux_1_2_armv7l.whl (506.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-cp314-cp314-musllinux_1_2_aarch64.whl (407.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (258.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (253.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-cp314-cp314-macosx_11_0_arm64.whl (253.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xmltodict_rs-0.13.2-cp314-cp314-macosx_10_12_x86_64.whl (272.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

xmltodict_rs-0.13.2-cp313-cp313t-win_amd64.whl (180.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

xmltodict_rs-0.13.2-cp313-cp313t-win32.whl (129.5 kB view details)

Uploaded CPython 3.13tWindows x86

xmltodict_rs-0.13.2-cp313-cp313t-musllinux_1_2_x86_64.whl (411.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-cp313-cp313t-musllinux_1_2_i686.whl (436.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-cp313-cp313t-musllinux_1_2_armv7l.whl (506.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-cp313-cp313t-musllinux_1_2_aarch64.whl (406.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (280.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (258.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (223.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (253.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-cp313-cp313t-macosx_11_0_arm64.whl (252.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xmltodict_rs-0.13.2-cp313-cp313t-macosx_10_12_x86_64.whl (272.8 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

xmltodict_rs-0.13.2-cp313-cp313-win_amd64.whl (182.1 kB view details)

Uploaded CPython 3.13Windows x86-64

xmltodict_rs-0.13.2-cp313-cp313-win32.whl (131.0 kB view details)

Uploaded CPython 3.13Windows x86

xmltodict_rs-0.13.2-cp313-cp313-musllinux_1_2_x86_64.whl (413.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-cp313-cp313-musllinux_1_2_i686.whl (438.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-cp313-cp313-musllinux_1_2_armv7l.whl (508.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-cp313-cp313-musllinux_1_2_aarch64.whl (408.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (259.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (254.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-cp313-cp313-macosx_11_0_arm64.whl (253.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xmltodict_rs-0.13.2-cp313-cp313-macosx_10_12_x86_64.whl (273.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

xmltodict_rs-0.13.2-cp312-cp312-win_amd64.whl (182.4 kB view details)

Uploaded CPython 3.12Windows x86-64

xmltodict_rs-0.13.2-cp312-cp312-win32.whl (131.2 kB view details)

Uploaded CPython 3.12Windows x86

xmltodict_rs-0.13.2-cp312-cp312-musllinux_1_2_x86_64.whl (413.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-cp312-cp312-musllinux_1_2_i686.whl (438.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-cp312-cp312-musllinux_1_2_armv7l.whl (508.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-cp312-cp312-musllinux_1_2_aarch64.whl (408.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (259.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (254.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-cp312-cp312-macosx_11_0_arm64.whl (254.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xmltodict_rs-0.13.2-cp312-cp312-macosx_10_12_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

xmltodict_rs-0.13.2-cp311-cp311-win_amd64.whl (183.2 kB view details)

Uploaded CPython 3.11Windows x86-64

xmltodict_rs-0.13.2-cp311-cp311-win32.whl (132.2 kB view details)

Uploaded CPython 3.11Windows x86

xmltodict_rs-0.13.2-cp311-cp311-musllinux_1_2_x86_64.whl (414.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-cp311-cp311-musllinux_1_2_i686.whl (438.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-cp311-cp311-musllinux_1_2_armv7l.whl (509.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-cp311-cp311-musllinux_1_2_aarch64.whl (409.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (283.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (260.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (240.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (225.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (254.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-cp311-cp311-macosx_11_0_arm64.whl (254.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xmltodict_rs-0.13.2-cp311-cp311-macosx_10_12_x86_64.whl (273.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

xmltodict_rs-0.13.2-cp310-cp310-win_amd64.whl (183.8 kB view details)

Uploaded CPython 3.10Windows x86-64

xmltodict_rs-0.13.2-cp310-cp310-win32.whl (132.8 kB view details)

Uploaded CPython 3.10Windows x86

xmltodict_rs-0.13.2-cp310-cp310-musllinux_1_2_x86_64.whl (414.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.2-cp310-cp310-musllinux_1_2_i686.whl (439.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xmltodict_rs-0.13.2-cp310-cp310-musllinux_1_2_armv7l.whl (509.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.2-cp310-cp310-musllinux_1_2_aarch64.whl (409.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (240.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (255.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.2-cp310-cp310-macosx_11_0_arm64.whl (254.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xmltodict_rs-0.13.2-cp310-cp310-macosx_10_12_x86_64.whl (274.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xmltodict_rs-0.13.2.tar.gz
Algorithm Hash digest
SHA256 fad91630c32d8863779149df04946bfc5ac2e03b4b7fdde9cab23323539acde4
MD5 067f1f67afa2441fcb834ea4b6fa1f87
BLAKE2b-256 63547314fb47fe93fe35759f9d4826cb984c79f3d6cfbf458f51248e633050aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4cc20d0a851fd40ed3f8b661c8d4f84f3bf7726056c9f5ffdba28d29a04fbba5
MD5 79c4a87058e1c60f0d50765e244f8899
BLAKE2b-256 093b6570f5ff4f66182ad99561f89b528e647ebe2480a684a285b5c7dda0eecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 560d1fa9ba2d9e92b4ffaebbc98571ac874126846b96b354179f38ae29d26705
MD5 67a9c8cf48e57f90c379ba7fa388742c
BLAKE2b-256 ed705296f331c1bb0ada24265f84a48624b88b87853d1c6f75fdc0f86160abc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11a715c1bb7a802cd927a3f62bda8719a76c26cb0f77603e2c942cbf07f038d2
MD5 0341144ae2786ba5107ccb0404764b25
BLAKE2b-256 d9ebc70cc02f6ffe59379de3ba95de3111d405767ec716102bb1e17438e2168a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9266e7745499bcb6f3e969c55e37c8eef887e70085d3c44456218f21a7ad1e3f
MD5 e414948c8b19a02809657afdce057bbd
BLAKE2b-256 891ab277a0091e6e31ace6717a1158c46392997dfeb336964c4d7bd417d3e807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cf35f4a70a166af268d08f3d0fac19680bcf7046619de88d980cc6f39644d76
MD5 08e5e0f01ca911c647ebbe1fb572a2fc
BLAKE2b-256 4003398c91c9f985730d7fcdd0a8fb8ceb4244bdd0a9bacb0cd0bcafd0fa4cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c81298dc512d9e87c41a34237266d7a52ea714dfc8148c8d9144d10446bf147c
MD5 68559755e38c8008d5962263d8671ec1
BLAKE2b-256 1d7caf647c029b4103a09936a354cdbb367377b74a5cbf40ca0bc4981fc3244b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e3d8e253b8ee68b5834364489bbc84adf03319e27a28c8112ae02463bf81fd7
MD5 1431f26fd309d8afcf0a7a76d0aaf77e
BLAKE2b-256 57df6ca62fec7f7daab078496e005dec27f709d01af8127b255f1821d81c3639

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f306488ec34eeaf44235647ebfc7bdde7bbeb9cb5409dd2c5b2ca5c4b29db6b4
MD5 123dc84f3ea8dc574ab4435d63a26a70
BLAKE2b-256 e3613973793edc4daffe5872d0754f98015c20bb576052a20c64bcb97cd0f0dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b80f9376bd406737d57203899ed3b71a6125617eb6e894289b166c7054a491b9
MD5 aa1c87e500a0b4baa8d204e1cfd5559c
BLAKE2b-256 cc2dd3d58aa3a82f28b3f19a80e983feebafc314365517df7ca366130351ab89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13d483ae982de2e010d39a12e27f684b158265edaea96164b17f2f3ff8a09e29
MD5 e3f7ac850e7b908e951fee1d7ac2fbcd
BLAKE2b-256 0a65c9f9be562f5050d0e2cb5f76e59a74bc2ad3f821180bc89b3f3ae92403c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50402c5644c83bf720f0d604d032448250cc91853baa12042e9d2b2dca9f5255
MD5 6e966b92f703a4e8fc52c141a4307ea6
BLAKE2b-256 5ec2eb1d7c97d0e92ece39eb55ce9f839cd0e795101697829a5cfafe45d2ccb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab9649748c7db311280d9c259a3c9e13df3cbcb6c0cb3172f3f59090d88d9621
MD5 e710efce0fc03ed33118721e72e4b788
BLAKE2b-256 09146ef474094f8eb163a7fb40eca397a83ac63d2d36157d69c78e1a819a895f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82aeb6f567375b13fd5df5380b60b8f143ed218551b8a3184b149b38696efac8
MD5 a899142da7750554ccbfd5afd745b561
BLAKE2b-256 1c46f54060cc0f333ef9b29347829340f9e43190944a71ed19dd5909e822d1e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 66083c3d4a4f0d3012a1ffb31236f6f761b78db530894a7e44b758bc08312642
MD5 2deddefb4b4d394b70a05d7f0cc6102a
BLAKE2b-256 bfa396b50230f05914d78ca6726daa8a2e23146b677f6581a9bd8f29c593ae3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2d5c7445647441f10b9e76387ac4af24c4a27b9e63014e28e3fb1208b42a07f
MD5 55be9f67616d632baacc815906bc1f6e
BLAKE2b-256 57334fd23b42c69fea67bbb1cb18ebe7b243e937b2ed4d5605a92713c70f97a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b0cea3548950f1a6b2ed92dcdd4867dc60ec8c0e37999ad251a4b14a3c83b96
MD5 c624d7c0149e09452ed4ff7141d2d66e
BLAKE2b-256 9930bd6b64b65d7c1c92b0a8f60f33ff785ac60a5f83e1aabe88a705a36d78b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f0ade44dc767453733971be558d713a10adf08b6beb45b509fcfbcc4db55621
MD5 3f0c09cc2b1828078e3e83d24bf279e0
BLAKE2b-256 148f374c5dc72802bdbe8247910c0e0ad91983ec21ea12c93ca872152805369c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d32e975c0eb6a3cc3f9ff21df90865abc853617f1a1687379265cea7c2bc4f7d
MD5 46c845ba98f56caa49b6df6f06c953b3
BLAKE2b-256 6bfa7ea74af660cee2ad82571a8ea2fa633e5f44f05f8e09f75dda4701843d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4947e071e0794060e91f48db2d805f1c2003a2830ec7a8aaa47b7d5e2724942
MD5 7873873b2d6aa9d8de089bde57bde9fe
BLAKE2b-256 1e90d4bd4acf8ee0547ed09ed3fe8bd9baa997d465e9bf70e612c6df83c80b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd963f3a86950a631133c9eb9fb266e67c043eb53693363a92633812e710e73c
MD5 d875e1ba46aaf0e310d246b82aca50c0
BLAKE2b-256 93598422b1466c570a0813905aa1ba25032b62a50fc726d312544380e591e8d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77b34cb67c8445ed7c1687f504780d101c79465660c176e86e28a25523b238c5
MD5 54156918e685470a78884267fa25831e
BLAKE2b-256 4abf9209acbf0953f72786c8de425139b79f9cf0887483d1050de700f773c41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48f9858f4c40aeb81347f2766c6f025ec6863b80c32f4daf9551170fc3ae4e0d
MD5 67abf281e52aa3bb907fa740b5ae08db
BLAKE2b-256 a0a2aa2e30261bc5411d62ebda0337f0e465f9927176856fbfd9e56bdc164109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 959f9f357ee73315b1434dfc619b7b55834f954da0c1bc9451b36b2132560c0c
MD5 7e730063e99adf2cdca51eec0ea22a46
BLAKE2b-256 5d55d5c7b4f6a06081981942faf9340877842fc0bcb5d484b14b3773c2ed08d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d83ff1412331e1e60e6bd2fb033926e3f106da4ed4929d5015f08d4eac76e5ab
MD5 1b8cc3e89e7c64dd30338cabcf52bd41
BLAKE2b-256 90a16f3e0ce79dd17df5b7b889fd2f50149b165e8d93b1f369f131ee64ca599d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 517cb6797d6373403520a99951e1ac2fdbba5ce9e8b6d99b5fe0958a18decfc0
MD5 33f1a6293189818576f935004c6448de
BLAKE2b-256 2185a859315a8cc3f19a162afec81e88725a035a7be57cf64c6adb5e57da41a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c853aeb759cc8e4d32db8e0bfd3313796e5438fe172d3c6b5bed297bbea6a1b
MD5 b714e056cabd66a1622ab8b264a33c87
BLAKE2b-256 d513efa2085713c06360ca2b5dabc2b6800eebfee226ffbd78d4e8b43a14fad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d46fa0a156a52561038d7a4b7cd5a5c9b9e9aa2674359a88a734785c57921e87
MD5 27749cec4e35ccab9742f0761a5ce577
BLAKE2b-256 f4f7f30e798f0ddd2a6fe20741e9044d92de7b5fba53a6922b1f213379ea89c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1bf38928129fb069da0dab45b450d5c8ce17af8b43cb0a90816546f2ee7a1999
MD5 2313322bb741a02f4c9cd95493ada07c
BLAKE2b-256 ce86715f92d03b280c5cb5e5f2c90cb0387b70e9f72dd5181f40e0b54038fcfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 443130c88b4b42efb1828ce1004d64fc0bacc267b6cee44d65e04cfd1f8a5af7
MD5 c0675da70e6a1dce00b3311b3a581bff
BLAKE2b-256 f775079de7a0859b0447c30f96a91ab3a98f00ac7b049b9c55d63f9278da0b8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8715426ff7b439233da1da9e6bd8db7877749afe984a395ce1daad908bbf0848
MD5 9f92580a1fb3a2531952795ce75ade67
BLAKE2b-256 c24252b05b1622e251b2d4c23cb04c76d525d02076d32cd9ce1ccb9c6d959a33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be4def3662d72deb7d60beb5cfcd3b6e93e0f16c4608434ab24752baedc8168b
MD5 91ebe2ee144748abe5ef6039f03d4ee7
BLAKE2b-256 5eda228b1730c05d56c7be781c9fb08c68674a0404fdee1addfa750fbdc4676f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49d102527b4c630cc2d288a07c512296b63abcc57f092f70029a612d0ee4137a
MD5 045dad55e6331f29ac7cb2785c8e3b3c
BLAKE2b-256 747e95222deca0c094f1a879bf67c6a24a8ad1dfa35e53e9550c75844ea1817a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 423c4f543dd7d60dd3d237bb89cb30ca1cd8b7cfb45e3389c831656078206a41
MD5 0acaaec52a764f3c377fb48d367f48b9
BLAKE2b-256 0f6fb2a01183cdd788af77552c5f0dcff29f67702728b608ed94f4e64deb05df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6728aeabd146bf5ee4a48ea0071b1661b125b09ff3c56f5e622d3443f06d3f9
MD5 2c98e18ea3b8750dbb16894addc39519
BLAKE2b-256 d0fb9daec5894511adefcce62f920a402a0a71ca08fcc2df16d93b737ba2ead0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f999763fec66657a88515c7133a3018104ed2f82707006acef7cf57637d28e49
MD5 a535432d965dc0c1fdfef74f60c1e5f3
BLAKE2b-256 493792a6afbe4ce2515af384557e56af94b01da97917d1e9104e852b79729ba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa321d8a09d81f6d6da1c98a7f2df12670ec1184a98ceaebaea1c1313b443950
MD5 5009757f62c6b1a2fac45d1a77c0c16f
BLAKE2b-256 e65b8a41393c73f0a5990d277f946150b6ebb256c60ea5ed2da69ab57ab268c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cd3c9669daf6755bd2c0a87eea4b24ac4acc476627856bc63647170bf3efb88
MD5 8b6cfcbc8a8556dac8b03bbfd989cef1
BLAKE2b-256 793b0bb9857de57f4d94afae7e263a2643b22eb9991bb47ed880c317cba37169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d126dcd1f4482fd0056dcef7e9ef19280080f8ae453d0128b39ba8b54d98658
MD5 766c591bde3462e7438c912abfef9db9
BLAKE2b-256 9c3a38a51db8252cc619c3ec9423bd5eae30f96b22777334f6f7665a3936da8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b96a9d5c2088a468f30e868c63eda6ff4a1abc8f34c42121b736e419a51b03b
MD5 3e1bee1f9af4a97c8049c88de447a158
BLAKE2b-256 dcf19657bbef0d143ef5d02f961bdde2dd1334b2c11c02d3dc245dd75b685330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9a5bf3082f84a3e402aa403b070657da74d790a2677152673dd84f139a779542
MD5 be5323139b4e09ce97a25ff5c428cbad
BLAKE2b-256 8e512b920b18e41b47c2d24d7d5126909ae5f122d822f387b84e84ddba9d3ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 31df95bb2d04b0da0d4ead2ce0907363a748b3ed43adbb76093de9d493c5658a
MD5 4cee746c6b3d80271ae854b11ef155c5
BLAKE2b-256 68a677a02df802f6d8f7c65aa6574440ef4bf1771e5a7ea55d40355aedf3ee7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9491cc894cccbe3e58c48d69f9e801de31164f4a7471ee70b022bf2305cce0d2
MD5 3e35c77e885dac11c43166997c46c4fc
BLAKE2b-256 b4074613859549c959b22884720199f27344b346614f63e2675eb9d12007cfb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28e7bd7288742d17883d75ecd2842e4c9a6c43cff4739610e123e13107e42dca
MD5 3538a1b776e955ebfd29b282eeb785ba
BLAKE2b-256 8e3c9393a4542ca2c84cc3f1b7521c7b24065c99553d67c91153d60c11e63755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03775bf57adfc67e078265efdba865ae6ae09fc486de11b245f961ac2abdaa50
MD5 67ed4f1ddca40f97407c77faeecbb1fb
BLAKE2b-256 e70d848895a837fca0e3596b140dde203df0dbd40a3ecb5b82567c615cc811a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 632df06930b9078ac7eabe152853734e0c9c3d1c399a5a5db9b1c7b38bdabf49
MD5 5a9899d9ac6fb0ec8ee973d0841965de
BLAKE2b-256 8202dfc38938ba8fadd92512dc95cdfa3fbd0b1969891dc428d342174320cbed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2861d69d73e188840d4b0942823716a7e140aec2675452e9133c5026bc616ebd
MD5 6743795a8dbc6c3b9ca2e773921aaada
BLAKE2b-256 b59d703b8dfeb47872b514d08bdbfc049a6bd17080a0a6e4748fefc7b0314c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25b18a20658535694c643c1bcaf14619d347db7a570565328d7894cce79cffce
MD5 decf67e13aa19001975f67bca62135ee
BLAKE2b-256 74268a3275e8de8329db248d2ce280ad7290c2fd74802677dfdcb2726fcef300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ed450e73f603fcaf3b390ab5941f4059fb8bc363d08e6299199ec5022c484d3
MD5 d10397a3b550c973d4fa9865162806f5
BLAKE2b-256 6ff9cac83a4fef34a8dd4883578b0ea444669ee1f2da64d500199b68fa60f583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 227498ffc540b92ca202c6589bf1634bb98c68bee19d1f1eb27e05cb2c48e858
MD5 4bb4f970dac7dda14c029e02e47e7fab
BLAKE2b-256 e85055ef04b026160b7adf039a228e611210ba4642cfd59956b9aeb1419410cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 278d0b98d4faa11d8c29686ab650fd1a0ad549fa8c80741bde65e09783ed17ae
MD5 c8649218e4114879606021fb0a81ea9d
BLAKE2b-256 989b8780c7c0f38f812c604ace5297df85c7c180b96bd75a59fa0507cfb97562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9c0f692b3d7ab5055a4d734080e495a9944260bbae51ff9ef446d463d0ba3c6
MD5 40a7d9c31f4ca144f0425bf7ed949199
BLAKE2b-256 e4381ff86cbd86a892d56daa9a09907d5c918a3658e907a0a6c7f0ed3450dde5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3bfae9acd227c73c11077b9cf33470c7c6866de4fad60f9a102359387a29a531
MD5 08fa561000fada23e1959ece5d0a272d
BLAKE2b-256 5308b57a804cee973ffbefd13a383e755c64707f042cb40c1c9f7e6f6a01a8b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31799df29eab51b50a6dc59cb1c66e4b1f4a28df192e4ffed228f28188962ea5
MD5 66dde5da7cb28bf51def042e7a7f1a75
BLAKE2b-256 abbcfb75154ce6dda43400d9eff07cc0946c5bb2b798989e20839a894eeb279f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bd4af195352ff40117acd7694d9482887645e6fd8241123a7d7cb9211adbe76
MD5 99a71d545051bf6562f18d915aa75eee
BLAKE2b-256 a06c72d7f86379854b066f9e8352cf19c9ae9041ef0e6e95a00d553a98ff13c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 52b5ae9cd739073eef74ac4af0b2fe1a100c5a7f9b21088b377e1eff80340d85
MD5 21eddf8f7d0ab774bc2cc5c1bb7b3c70
BLAKE2b-256 6af40a41546f6f17a7022ee73a58b382793fc74eaf403ac918054d12dfc8ae13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0dd3fc15e661ad8d2d61a7ba47ab16e6841598eb8b8eb22fbbd8b525ed78ee43
MD5 32f577bc6a7988f7c45919e928f59ba7
BLAKE2b-256 84700c8258ab573acdbbb2979b263b401bfe2cb7001032c2aaabe8a34b57388e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a0ef24272e50a4f78fd589cb1cc4839b03da168b810d2fd368b78d739cab6c9
MD5 3d943263ad3afdbd1b7ea83066e28081
BLAKE2b-256 a4bfa77571a7444c5d0d5310911677c2ccc321f57d4fbbe5ccba1612934f58a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5954e9e30c1473a5810d53cad5c3f36ac40ced572551e72109979019c3041bc
MD5 95d3257940f531630ff1cb2ff556e68b
BLAKE2b-256 d7d3d0945220bd3cd11857f0d34c5a33e1c2f3f2f2009ababc27965cd08ebba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1e89354f41c7def4ee03bc02c8536101d81226e4eaa4b742645d0f12eea5b2e
MD5 74458b1c20a3851764cf0cd0a607688f
BLAKE2b-256 c45813481f56e513d94748d3165a76dfb0b5ca8983e9e6fe8e3e38aef0a3615d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41cde8159586e59baf49a2bc57ad0188722fbf5b133606790950fcacf55bca42
MD5 c1e1acb18b1c759eb8f26a8f315ece65
BLAKE2b-256 80d9c803bb56cd1dd6b1c2380ae84b236d7b7adf30cb83b7800e8b0a42c46194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a563b45f1898693fd6ac0cf8ad4bc514c2280c1afeecfe3a07361de87371c8bd
MD5 c449329446f5cc0a9e08211d3ca749ce
BLAKE2b-256 f2ef4ba566664c712962be7dc112305bf5c2b17ef9d36b6eeff47c920dd0e0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 77ca90c4789116fa8587eab4d6cf1ef65f82ae8025fdf209afc4df7996374368
MD5 80f6d4b0e6b612ae67d4fbb89a87365b
BLAKE2b-256 c6da4f3de8d1483aaf6508b9511e530e8b4b8f4981ef1dbdffe59dd3b17e1b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdc4b3585c4f394bafc57d2f458a7bdecd193b57d03b7a950bc25ed47c24462f
MD5 d35d5a10faf851fea5ea2f2444a7f324
BLAKE2b-256 1f792201aebf9397299704454f36fa01b8ebaa3fe3072d095d12f1aaf71ce9cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 589a53cde669b428f98b824e5b97a3125216b1b172a55bbc03027f655afa1ebe
MD5 aa3ffdd720e56979b0df28d830358052
BLAKE2b-256 cf1cd03308f89cef78347d33539776ade17bf96069a7142ed5872bb726cfe68c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de3d2b23585efd9c45aa4b8d11bdc2834f4c1f2d8a9b6e0125c4d9f740aecb33
MD5 91add0d534e2dca49ab99842051d007f
BLAKE2b-256 a0ec0d80afeaad90f71cc691bf9ec09184d9f840f5902eb96af2b08a44195092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2ab0e8e32d20df05a9898b6a3f7da22f5c25602bc2fac89deb2905f1eb92ff0
MD5 e35a8675e4a4abfe1681e3ab82797616
BLAKE2b-256 452f647ba7e6e3c589c9f7836504193398e4600595dc035232acdf41c2eb2a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b82410015258f8f4760d89122a1aae034f00fa6ab863a561d89f8a282495bd7b
MD5 fbd9d04359d586d00cfc68855f4116bf
BLAKE2b-256 c71ad11e0095571c7a761b0535b1e0989f07aea8d1066edbf498e0ec11a4d13f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65878cabc2a2fec57cb41cc45402c63b7c51b8f5317548447671705d9a10104b
MD5 746e3d3f22bdfbb73157ed1bc883f933
BLAKE2b-256 b2097de498c8d7dcd3177ff46495fd6b2cb8a52a1a205dd9faede970cf75d944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 84cb257e5a8618900032525194b7a2fbd33fad4d99edd32ce40afc2c7a6be1aa
MD5 e0ab911c5c71e4b971795f3bbf216041
BLAKE2b-256 090ef05bcc2000273f50d4ba8ddd24739e577a67d2a14e86037ad22dabf41a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f3b35cfae51359d27f93154a84094b1cbda452f1264304d0abf726da5c72abc8
MD5 482d1a6618dc8b4b650fdc18c3a2c900
BLAKE2b-256 c038065259e4c4f82d1b2a4a2c473a3b4497a0ca9ae289e90589b9cc0143aaee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d32392288cb103eaec0c8ec1208697903a32611c2c22dcebdaed9790a80f0bae
MD5 4232d087465810b64776c397b262acda
BLAKE2b-256 2e92fbd70a648ce3dcbcc03807f232cade8d00142d7c9b15c4a7a0876f0f0c75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4f7fa222c5a0354bdaa74cadab9983a104ab511040c9ece18addb1cc74c5f34
MD5 395c420a4c3d499f52e34859617fda15
BLAKE2b-256 65cbdb5839950e0b496873fb30a9c48a7535683878c8d6ae79f68ba05dd60f8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f0639ca93ace57e7b3898921cd525cb72ed24349de50b454bd36cd06998ab8e
MD5 6bc4b44f8a44fedf69533936a6c3ab6a
BLAKE2b-256 125e64a299a8c761c6077d1967ea5274148a08ea04e6afb97531101f0ba28631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25e108c272106cc896b876e9362241305a11f9ce1781227d96d7ddea152ee7cc
MD5 7889c0b82241da335311cc5d04a9b84b
BLAKE2b-256 629bbf6df06ccaadbae9ffc8bbcea75dedc1ed9b598541644fcebaded1bcae6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6df94b1012a9a5081fdef77de89a8dac947422bf9e38ce4bb1fb0f04b3b66259
MD5 6f0c770df171f7af7ed36a808df36d5e
BLAKE2b-256 453cf00cff71550f956e49bd6aef3753f9c3ded58299309ec2da63c5057985fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2a5228867dea3991113e3ecc63eff030bea330ba242a2ce0372cc2d46116f4d
MD5 f698225078a71c5216081353eff96148
BLAKE2b-256 49acbc773327cdcc90e59daa66036797bbee15126f928cf203faf521e95cfd70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c9dc6fc2b1153a51f05fe6b72b513ffb2d2df94aec0c4fdb1da6bc28b076311
MD5 f32f4cdf65fb30772a694d5957b9348f
BLAKE2b-256 8decdf3b54de1039bbdf5d79a4bc2a5538e8ec858d08e7c4af26497f45d7637e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8aee568b449aca2425bcffc5e6ae4955a7bb9f9e80ce7b9134df434e3ee7ff8
MD5 ba4e0c8aab8888b80ae24f95525f8598
BLAKE2b-256 ca6cafbb186fc5c33f0438908167c6daaf0ad969358928a3fa069bba0a828554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 232ba3d17890217f9e92cc0edef8b31bd410859dae69912485d03df3a68dd59f
MD5 6915c49c34489b95f113ab784bccb4c4
BLAKE2b-256 05b0ff5cd29f0ba07e9d5402da70b65ae5f846f304a9607ce2ad51847e4db819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cacf4573990bbf6cd799cac10c91372c3d73508544d3df5de9e0ec69ae2a91b7
MD5 18b6b90562329ddc0d9da7a800ee4c9f
BLAKE2b-256 3cde4ac9ebbdbdd0b2b5715fe7d5def574f6004fdfd9e66c6d58a48005c30b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d0e9657f481ae125f333d46f3525559fedb9b8952149d341d1a62b6d47955d0
MD5 bdd9babbf2e6e6a286f80239fc6ee61f
BLAKE2b-256 448fc4da94954b5b7dad71b92e02adabfd42866848403f8de7006e1e03840c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec6872d21267a219acee8f1cd9fe4536052b6e4f52889a98a47f4dd43b92f2d6
MD5 22ef7a980288f643d1a72a0b4b44ca79
BLAKE2b-256 b21eae130cffdce2953c0a97895e09c495355f6dd45e632d10e193af115949c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d5a652ea93911dcdf31380e3966a64991766d789c1cdabf733ee87d8f5257f2
MD5 d750699b3302a7395c6f825795aaeb1b
BLAKE2b-256 5efe02ec3b6756add218ae1e2c519edae265676069aaef55f9fa8985a501b360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dfa94c321a8b8e93d0ace57a2a014cb0ff839f63528af7a3c99bf557a11b184a
MD5 7d6cf5aa20bc4b81b7b6ecc5771cf788
BLAKE2b-256 dc1db2ba32f9f2c0772f0d5eca550d9e1400a2c111b2add9388b554215f3a928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 734b59b0f369947ee890b629e3ad1bad355fa820721065d87f325bd3bfb1027e
MD5 5f52f20d846e733cc8ddffd91f814693
BLAKE2b-256 46a0673d31928db3d6922415e935cc5607d1a7c30016286eab07600dda68ca16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f225664ea7a65cfcaa97292d50fff6d3616f87c90364e35f65f906db9571be2c
MD5 4ecfb33737b699a16b483985fb230b44
BLAKE2b-256 0412136d1c4255de2e9c4a05351f03598646881c1d0da70347874cc626ed32c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e37704d17a7fe0436f9f9899e655b00b647cc4874e7e6a1dbdda6360905712a
MD5 56a7209d1860c22662d88f2ab58d8224
BLAKE2b-256 33d88ff7d68128e3047713956c92129e207089326a9bbceccba0795fcf581adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21f2a6cdd8434e7e517d3b5aa765b1c47fc63162affc301bdc942e73d84923b5
MD5 a1767f19af82884120f72b83125f5ad9
BLAKE2b-256 8ca0cd3577d714d7db36af3b8bfc10aa23ccebd3f191f5afc27a99210183faca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3983993ec6c2edfd11a6c81ef0b89ae84bf246ef16147465afcebe4aca93b96
MD5 479abf52c92153ae17b439f34428d40e
BLAKE2b-256 c1b07f7551b254d725f123791e8fe34e006b9cac6eaaa68704ca96397b45d172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4cd502327eb7c8c451da45a89bd2774a09db413e87895bc67dafb504d947f05
MD5 f6960995c7587179b5d321ca4692aea2
BLAKE2b-256 74a77b0a68556194ce2f1b6703c17c947eb911709ffde38a37778947914a9496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90e6f1f7112b3ac8b3d9316ab2b0ca1cf967abc8cc6edc26e8405e0c9a34f8a8
MD5 9d648e61b2a3ddff3b29559540f04e86
BLAKE2b-256 f0fbc18527f76e9b59d51bc561450a14d295969c0f675cee2c37e00a1c8b9817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54c7a8f90025ad644cb0375cf1aa77deab370507cc8acd37e4931d9f0f8c4678
MD5 9cd6d041713ffed4ab212875967b43f5
BLAKE2b-256 5701a7856e21930e4c8d0311e317940f2e9a832bfd4efe955d0ce965c468c68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1ae79515a13bfaa9424bc601ef5271dc60ba3f6dcb0b377343751a9c8f2b5e6
MD5 6e80e8b9f6ac20d0a0d4df636aee0309
BLAKE2b-256 a84e3f8ec1819597dcbfce3265db4fd05f3164ebf1704f9d779e3319c43c5f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 062e61dfda3b32c991db34acb779f7bfccb5232232fc0811201e6c21eab3baec
MD5 8a25cd84eba86e58ae3b5ccae60e52f9
BLAKE2b-256 03ff54cae871efb8b53d7f6239508df675fb73da98d59f66973913bcc3461a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d47ca07dddd2bc49ff7461a97314bc3c63a9e4cc7e2113cb677c04fedb8c58c
MD5 45b52437bb4e51b9745c255e195e0241
BLAKE2b-256 2cec4de6cb07ca744e00190c2a8c230785397641249776c9e1533eacdfde4b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e34dd8f5756a9b2659006861a0b1027c4c8e603462391053c301af9b225efa1a
MD5 973efb8809294b111902347d4d07bae1
BLAKE2b-256 f8d55fa0fb37b3d6e5be1e9641ef50458cc50ec8e908ed8e1ed303567a4c8206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee7457cb55b488d458c3ff0ce30b5e7b5a2d8fa5ed988b1b5d1f537f6601f4cf
MD5 8238225ec6f4046fe9486ac713ebd408
BLAKE2b-256 5cdff1f07192f93c2fa3d3c2be1f53fd8234161c2c95b10a94940628826bc748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f276876b7aa4b45ca948c3768b34dd7d0f30fcb33187ffef50606f0badb25c74
MD5 a4bf72cfda23754c1da7763f48dadb0c
BLAKE2b-256 a9d71a55f393e00cdf3e013a097cfa2ddcc7a0ce09ae7b59c3accae22fcb64e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d38f53d98e77bb9ec9f3090ae95c382caf939df48ca8d7583efda29a9744533
MD5 9fe50db02387e886dbfca667c860e81b
BLAKE2b-256 29037402bfeca5648e57a7733843ce1d9eba025bbcd601fd0f1e508185a5fbeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27520c5b32885777bcea2e86d51f24252507d3bde6f6fe2f52f515d2f4391819
MD5 1773e88016d8d0904cdec0f1ee749f58
BLAKE2b-256 dd960e03f5ce912cd0ed268bb82670ee63080f45407336a0c68a5b8378c2c6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f86c001ed450d1d92c54c4169c3fa4b82c80726a8db10b2eb2d77e2de2cecfe
MD5 b7129ce7895a46e3abc416a2a4903dce
BLAKE2b-256 83b7837dbe0f84a63d513dae60f63c38653834b4d39acb005bd28d8c2d896c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9344d9aa474d50248ba499523ba0c74e2164e9b653f126062b092ffa7235910
MD5 4692fd605b9105fed82e84de1269e294
BLAKE2b-256 098cc6aa6aa841df6fda0375133dc60070c11699098cc5f5643a1ef109c3dc3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d471958b082bb2d260f5f0035a52634ab92f77aaed453c64c94484da7c04f69
MD5 a6641c6225b65569ab3b10a1a3a61d0c
BLAKE2b-256 db0a42282a7d0e567f4f93ca7b5fe954d5f354c6371c718dda658732eb6ecbdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65da19a74a72ce624f91351ea81ff7e7ac29187eb549d60b99b3701059df2a7a
MD5 4791233e05b5f109a45307f9219c7186
BLAKE2b-256 ab5468c8c3f88275f2280af04a4ae917a64dcc7fdafe77ba8a199e3c0cedaf4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21df2f06716929ee1dab1952a7a9b14ed386de1ca357e2b53a986242be34ce55
MD5 e2242e0d351ed757f9e1b4413630c307
BLAKE2b-256 1bba4a0536fc126fc1367759403157bec3a87f3c20cbe9e4330ebcd0ba7f3ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c6476d3932f8f63db37456bd90898e4ebe0aaa95f38b4366a6960d2e5d98259
MD5 67f7c8ee035a18c63135064ba1564601
BLAKE2b-256 e77419b4ce12489f552a315748ad0e34487a8748272270251d4748bd98c5c39c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff267785045fc3cbe47bcdb0997ea697775b537c0adf068b75bd9861a01dbe03
MD5 0a779d7c8985b665add8de0a95467257
BLAKE2b-256 8f3923e483c40ee12180e6b77907334e206f1274ae8db909f963023b46a50337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 72d74898eacf1cef2f2860e65db8a58dfb26acaf555bd28c862bd8c0ccc6f78a
MD5 4927a2a79f4ebbdfba8e988d333fd49a
BLAKE2b-256 a481fd060b3c1952a57329f41a19361762b66fa4712d16cdb1ebb31621a38c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1b85cfe36897c7195053db8af169c2fb3558111bcfd9e32dedd8971c37b6665
MD5 37d49c6770ef498ca6f675e8e7adb67a
BLAKE2b-256 43db60eecf8f44bd0d237fec24695d0388376e6c75965f9fec480bd4d9b6e017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6139904b3cdf96358cadc3bb2e7ce3177ac3775a5f0ec2d56ba102feda9d776c
MD5 9e373ee0fff96bbc984890c8283f144d
BLAKE2b-256 4607393211d25f7d40051fe8a24ae703c3ef119aced7543c43a19edc11f944d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 151c5ddcbffad0c335af1771d7b082aeb0a9f38bac1420d500d742ba6c3ef573
MD5 9f2961bf199707c55f5fe7044cbb1a7b
BLAKE2b-256 640295494d857af0d8544f67ad8f6c56bff14d289e2f11717a191de4997f00e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 06494ae7f6ebedad9e051cc2af95e53ed9cc07713b00918af159c228f0a7bf05
MD5 bde6cd772f9721e802c672cf62ac1cdd
BLAKE2b-256 7d305d5c3b461149f0a8833fb6ae737694cfbf6f130a30d1682e50b42bc8f21f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af3a18f28ed07a704b97ec5b20b8d13782196c703409a80afe16c3cd9336dc28
MD5 0bbab0c60470ede0dd7d541adbc9895b
BLAKE2b-256 0210365c03c1a3d02a51b2b4f5dc23631ff34dc9a4ba6d2209444ae648dfabac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a1c9f73ca1f796781fa09a0649a9e2c5f9d37c872bb838e9649f3826b7b2bfe
MD5 9ada613c68b7388cfa209b9e5d42d252
BLAKE2b-256 efe6f9df665f9d5857c61910992838d8f80e6b3aaef8a71c9d631d414cf0ef22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14e383f7892ce1c0af4094defe130c87d7ee886b12add6f5b9796c947c62d39e
MD5 7b3047eba150d5bc5bfb878f27a1437c
BLAKE2b-256 45be3e3528241e7cddca8f4e4ceeb90a574cb098f0c513e953a941e578b790cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0a0ee412d65b7deea8e83984831fe4580f232e6405705f4a11edda38c076dab
MD5 a47e67e8be35c7a14d571befc91022eb
BLAKE2b-256 3fed20e08dd30c0a66f3fa843878db4048dc26518589a081df44e351894f970f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c92686f7e57506e2b762c4742cfb04392a32f55f3beb28013303cf630446c1f4
MD5 40dd6fa4c1a538e887ed327c4da2c2b2
BLAKE2b-256 15e4c6c6e5ed185e21870bf9ac9570cba77c968519735adf5f2c41c6cf6788c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f6b01419503297129307e8838768f94336ad3a8bc49c2579e00ca7a90a0807a
MD5 97220a06d2a17bcaffebeeeebe20dcea
BLAKE2b-256 02ad6b339ec89ac3d9770b07034c657794f9e29eeaaa068fd441aabb23634523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25945ec42c62c1b765c1092f2c4afc51a4c970f9d3508c93126681d0bfc26cbd
MD5 ab4ed5f9a5b45ad636c48665a6b50535
BLAKE2b-256 f0bcc1170c13c92bbf7fd862a3def310efa8479b5e728d5c62cb3e2f6c19fc96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b7064643672fc826d9c0a0566026520a76c9dc58bb4e3bcbf3cc7477fa46b1e
MD5 79b4e7649e286736396f79561f06b93e
BLAKE2b-256 f9483c370b7a693f58e7cae8592f3c4b918bd87f24f3b856760404a1cdb25abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd301cbee32ec57aeacabbe99c7bea16bdee288dde5b09ab5cd4d00d981d296c
MD5 c2dc1bc63021426cd66d7b4df73e4e1a
BLAKE2b-256 9b2841a730f9e9e5be95921724792f8bca0ab69f2628b5648bb44490644b4ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3ede506dc40338c60ecc1c58c935ef3a5d1d282390c4887cca21227a929c923
MD5 0ec6f1a65ca76471335c40958e771314
BLAKE2b-256 7694eda61749c84441e9a4a93b0cb83b3f579f3ef268a31da61e82ced756398f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77c79f60564fafc9e875b958b9638bb83e9162dc5e4f7cf21de5451f28356279
MD5 7aa078f8f55102579443a2db448bbe39
BLAKE2b-256 3232a8d9db2ad9963355b8615aa491859915a7cbf7cfd404919d01a3c2d03511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 498c12c4cc35c6c4c97d91b41b231441dc8ddf1ca72a4fb69fb7ccd95cacd0df
MD5 a89c0c5b9a9e7835cf0821088ec1d971
BLAKE2b-256 1c89a33f15e4e1ae32d56f8b55503951fce280af2eb1bbe6892b95b5eef1e816

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