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

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (415.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (440.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (511.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (410.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (262.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (241.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (256.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (255.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.0-pp310-pypy310_pp73-win_amd64.whl (184.6 kB view details)

Uploaded PyPyWindows x86-64

xmltodict_rs-0.13.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (415.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (440.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (511.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (410.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (262.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (242.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (256.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (255.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xmltodict_rs-0.13.0-cp314-cp314t-win_amd64.whl (179.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

xmltodict_rs-0.13.0-cp314-cp314t-win32.whl (128.8 kB view details)

Uploaded CPython 3.14tWindows x86

xmltodict_rs-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl (411.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-cp314-cp314t-musllinux_1_2_i686.whl (436.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-cp314-cp314t-musllinux_1_2_armv7l.whl (505.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl (406.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (280.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (257.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (236.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (222.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (252.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl (252.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

xmltodict_rs-0.13.0-cp314-cp314-win32.whl (130.0 kB view details)

Uploaded CPython 3.14Windows x86

xmltodict_rs-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl (412.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-cp314-cp314-musllinux_1_2_i686.whl (437.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-cp314-cp314-musllinux_1_2_armv7l.whl (506.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl (407.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-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.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (253.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-cp314-cp314-macosx_11_0_arm64.whl (253.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xmltodict_rs-0.13.0-cp313-cp313t-win_amd64.whl (180.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

xmltodict_rs-0.13.0-cp313-cp313t-win32.whl (129.6 kB view details)

Uploaded CPython 3.13tWindows x86

xmltodict_rs-0.13.0-cp313-cp313t-musllinux_1_2_x86_64.whl (412.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-cp313-cp313t-musllinux_1_2_i686.whl (436.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-cp313-cp313t-musllinux_1_2_armv7l.whl (506.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-cp313-cp313t-musllinux_1_2_aarch64.whl (406.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (280.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (258.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (223.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (253.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-cp313-cp313t-macosx_11_0_arm64.whl (252.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xmltodict_rs-0.13.0-cp313-cp313-win_amd64.whl (182.2 kB view details)

Uploaded CPython 3.13Windows x86-64

xmltodict_rs-0.13.0-cp313-cp313-win32.whl (131.1 kB view details)

Uploaded CPython 3.13Windows x86

xmltodict_rs-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl (413.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-cp313-cp313-musllinux_1_2_i686.whl (438.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-cp313-cp313-musllinux_1_2_armv7l.whl (508.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl (408.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (254.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-cp313-cp313-macosx_11_0_arm64.whl (254.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xmltodict_rs-0.13.0-cp312-cp312-win_amd64.whl (182.5 kB view details)

Uploaded CPython 3.12Windows x86-64

xmltodict_rs-0.13.0-cp312-cp312-win32.whl (131.3 kB view details)

Uploaded CPython 3.12Windows x86

xmltodict_rs-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl (413.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-cp312-cp312-musllinux_1_2_i686.whl (438.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-cp312-cp312-musllinux_1_2_armv7l.whl (508.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl (408.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (260.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (254.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xmltodict_rs-0.13.0-cp311-cp311-win_amd64.whl (183.3 kB view details)

Uploaded CPython 3.11Windows x86-64

xmltodict_rs-0.13.0-cp311-cp311-win32.whl (132.3 kB view details)

Uploaded CPython 3.11Windows x86

xmltodict_rs-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl (414.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-cp311-cp311-musllinux_1_2_i686.whl (438.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-cp311-cp311-musllinux_1_2_armv7l.whl (509.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl (409.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (283.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (240.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (225.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (255.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-cp311-cp311-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xmltodict_rs-0.13.0-cp310-cp310-win_amd64.whl (184.0 kB view details)

Uploaded CPython 3.10Windows x86-64

xmltodict_rs-0.13.0-cp310-cp310-win32.whl (132.9 kB view details)

Uploaded CPython 3.10Windows x86

xmltodict_rs-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl (415.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xmltodict_rs-0.13.0-cp310-cp310-musllinux_1_2_i686.whl (439.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xmltodict_rs-0.13.0-cp310-cp310-musllinux_1_2_armv7l.whl (509.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xmltodict_rs-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl (410.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (240.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (255.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

xmltodict_rs-0.13.0-cp310-cp310-macosx_11_0_arm64.whl (254.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: xmltodict_rs-0.13.0.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.0.tar.gz
Algorithm Hash digest
SHA256 a1454241c45c71500c5e9a4721ac0b22b5d4a88baf6af78161284af7ed4614fb
MD5 5b41fc69aa0809f66c7f5da18283374a
BLAKE2b-256 c1241b3c0a46f73fe939225a659618d04d1b57e5dd9ec2761ceab59b26b7340c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a7a74ca79613e5f30df2148c175ab85c4dd1f405f6d3a1c656de7d51b4bf4b09
MD5 909546d80029b933854528264972d413
BLAKE2b-256 5afcc8b5db1299c573c016f49e5d46d1203e575e7379cac13a9653d038a8cfc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a0706200ce20f41de022a89c69c7ed1a69604499bf765b6a678a8033458a934
MD5 77d6f830331fdf0cb0c08b9488f13651
BLAKE2b-256 3284bad473365f3905a53badb0c775fdd04481d66f9e952f69dae09dd4499635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66e8a4e3db6bae8d292a381107011fc0e1a93b4bfce86ccffd91d1106c96e347
MD5 37dfd80345896e749c0953fcd1500db1
BLAKE2b-256 e266e459b34995d420bf52e9cea7f114eee6cc7152c018fc0294c9c8d4c0b497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffe0f772f1e76bd123a94e413af42bbb135c6dc09a0204539c76d7b00bf57c77
MD5 27e8fe297163c3614743b67457bba580
BLAKE2b-256 ab40301476e09859fe4a8606abf05ca132d1e7082e98361d7fe090cac530b3b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fc11ac1f7c1e3a99bd629e3f560ec0946f167ed5e6b157eeed68c91fa32284b
MD5 3415d35e8bc9d9b29adc72d88db5b972
BLAKE2b-256 b5ea44ce70463650c2a91909df2258a65e8b71096280aa8761b4f5672c4cb281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 488a81deaffe6bd689c4f3a99a5b855f52e1c3e036a66d7cd18b7e15b6067b01
MD5 755b09eb87397ca187a2cc4e1694d33d
BLAKE2b-256 19c27db44062f1d073a6210e71d75e3af4d9f691e578ebfce2935237bb53213f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69a267c63f7fa1a4c2426533e2b65bca674ea49878fa09c0886e1afce1961843
MD5 28d9490a6920880ed7c7788ebd2aed8f
BLAKE2b-256 b89f89a79bb0fc35e943913d5e3ae000c4c6242e20144d75cea86d9688ce2cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1313df73de5c3d35dd7ea79c8f1836e71f0403bdf44114cf414efa3ef2958c80
MD5 ecd5e0a2e0a05a7959a3066b52cfd96d
BLAKE2b-256 ddd71d525e5d346bf31e2278f70d15b6027bc75cbf312c81ebc64f5cb54e5fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea8bd65a7c96408a99bba511d95c3292f3d2c2bb84ab882165c7268bcb7e0765
MD5 721f666a832289f323c7faf1fd1a9a32
BLAKE2b-256 4d18d5300ed1a702cb4b1092f0a5473c3d68261035eee1dafeb49cd71dae2ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cae1ec301b2f7c20028e2e5ec694f3c3f8ff1f3a45e2beb8d88ac3f8205d6a78
MD5 477fa25dd0971aea50e527c13b0b6a05
BLAKE2b-256 5b65de5c38b8bc53ccb2000e454331c75332fbba88378c382693228af16a117e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1db5cce58266126e109314665ba67468cb048a822e885cf3d103dacab75207aa
MD5 9171bf7179845449b0fb772b45a3805a
BLAKE2b-256 e7fe1cd9813dc802c8f7cc60c068ae3a87e9a7aaaa300df1d86d0736879bd469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f29ae1747d36a1ef1e93f167d21dcef62f18234053353b558372b15ea8bdb3f4
MD5 374b327ffe210ade048249d0d14e7bef
BLAKE2b-256 2b46e8330a4135cdd036fe89494da3c6364eedc076420d6bf19ade2f926d3352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e438caa83a9e3bc7d7b9d15a0b6a00ddd679362e59979c6a18eb5fd8a767b4da
MD5 6c358f224b99d9c55d204b382b3b373a
BLAKE2b-256 cedce9341633b497a7fb8a9126daab06daf4240a15d7e24b9e7704825ae119e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe6ca7599e639e7db7ad438b97d4130478afa50e1412fef49af683b7542d8b0e
MD5 ce084b8d2abdcea094dde701c4cc77da
BLAKE2b-256 60e144e56f24d01d3b2fc99987015633d27f9f6d43a59645677f055b38f14c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7fce1567d78518a2bc789615b235a3ebd86441643e0656666add13e34d94a1f
MD5 5ff91301d6f5b554cf0e3b1d2e0823ba
BLAKE2b-256 35245cfe41f5732ca990f6d706831155cdd7538ad94d835844e23afd2668ce9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14dd995a34c381928b651c93bc4f10eed4c3568a389f5d5a31bdc8ae8e63cf33
MD5 fae90e8214a91a7e6566c7502b86da8a
BLAKE2b-256 3a682ab1e0a5205407abbf4b7659746d0d9c770a62052a7ae4f573565656717f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66918a78e09937559b7f366092ddd26c8ad39e1c2d817a99160c2f269d491a2e
MD5 38a193c7411b5855cb2976d050c0135c
BLAKE2b-256 bff7c7494409a75cb2aabb7b0ea1761ee8e4d57ee3d61f80df71c913f13505d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3c970abc852e665e4a2e89122639df961efcbddf1fa696798cc3b17e893bee0
MD5 c2b90fb3ba59b047f99ffc57c21db613
BLAKE2b-256 5e1fefe2a74855ca031d86a43005a14f160017a8b430a8189b666173830a4294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ec5c74d6774b6997477b2258b9808f1aadb6949d0a253b2ef15ced2271d66d0
MD5 bb169d6ab19669ceee3e284412378b47
BLAKE2b-256 02e221029dd24a04acbd2f94b0cb7ca83fef8b92fdfaad4111348484169c58dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24b43c8d7e23360e99154f24f9001a978ac3eca4708c838623c1128e92f809dd
MD5 25107fcd8aef3f3cda038b38f796ac15
BLAKE2b-256 7f03bfbec730430ec2bec57748f03f6ef97e1d0d701562ecbbe3c266bcbdcd8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f3b17f3d2009cac8037156881ddaeb9f19f073bf1becfa6aef55dd76fea47e1
MD5 85c3ab9a0eede73f119bf9fc9d5bc724
BLAKE2b-256 1c4f6c64667f767cf26a85bccb09795b88555890dc04a0bc868e712a705f8ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9149d2e41341ab48486b5a812b27ebcf0391d7598834153ddccddbc0cfd9c85f
MD5 ecc5b1836639dc7192621155046d2406
BLAKE2b-256 f2dc50e5ec7a36b3f1fbc1bb6fd040c9b0c5c7c33e20024675c28cd4a8216aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 221e427669b80d527ab1bbac78ca8457a612a3b20162e6fc2371d3083147f553
MD5 d7dc6750af2e140d247c78fe668ba2ad
BLAKE2b-256 69849f81f4dda6466487c7d4553f052a0b9238076b538194a9e18a76ade7c63f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81c586582e000ff439a9edee1b13338dcb2e4c99abbf26e5c9488c30def8a1ca
MD5 7df59abf7aea95167bc5767779d35af5
BLAKE2b-256 dff98b25b08cdf89e6d2762eb65b362d32fc106022a7f6ceaabde878c02d1123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fb9c18799806aea8a90b3a88b1af2f5cd40d23b95642c96fb8b543db822d69fd
MD5 c7ba9a0f14c48780e0da024178d00e75
BLAKE2b-256 c2eeee6c98434093e057d09747aba9891b52616a8c13ad9e54a21907c04d7a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8b0dac84d19f4b4483db87dde4abcad014b24d6653a7f296a61d28aa223ac18e
MD5 3bd5b403e95c09447119faff3424e815
BLAKE2b-256 228c14e2159e9ee8250b398fc9e620d965f9eb913c60dded35c3ba523d4a0be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b12609cfbade7a86291cb0fa7140b044b102d61579e5dff95045cbb0140bf8b
MD5 2cebdb48b4f2879b5fbbd43eddc31b65
BLAKE2b-256 3371282d4f21817607afd8b763eed77cc1302cba6dac0ecce269cfb9608242da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e61f2016dd8c3a56bfaca2b08b06840b60533f804e86afcd2650421a5a9196e
MD5 d618d742cf3f3ef8612e64d464cd5749
BLAKE2b-256 5470a77779dcd7322fa5cf6732a28ac50879d7dcd7169e9e8b5fec6e3c147d4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4342849b52d5f1aa85e411acd013bdf86d7812b61efa05b338056ae5a6c5691a
MD5 0e6968b03b7c6630e476956458cf28a7
BLAKE2b-256 d4a57bd3c05236f52fe401ea3237ea6999d4519c640d98b5b0d599c67445c000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaf15abaaa8eb7da0580b059c4c1b0fe451e5c9b21d63b5e5bcd11da3fe06ac3
MD5 96a038551c8422d5cfcb1e53280a66a0
BLAKE2b-256 b6cb16f96f8a61db5b581323c0b5863b4e5f50ceaffe4f79333e3c0f730623e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e85e174c05d9683bf1f4f9771b8414e6e7f99f38f1d0814d31e9e8e6184b633
MD5 b7a412078fbfa3118164a1b0201b6e04
BLAKE2b-256 12fa9dd647a8e96b787469960f76c2cd1676a133255a83530f76cd2406fa4258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b618d9761c9556d8363ea07bbcdb34434b3f3e44d3e9425b80a736858815a05
MD5 711c5d1b0fd54d16afcfc77002be4355
BLAKE2b-256 858f2e76016303f0175a72f8197485275814f445011d94392896f7039bb55c83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69185fa16e508df9048157fcc1103679f460f4631963983e22e83f89ffe81d1f
MD5 2ee9c612a26c6ea8666dc024a6fcf498
BLAKE2b-256 f17a6bdebc9c1f8515cbfa56f4c777441f054b3a655e0d67dfcd0eac9a4cf45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42f02261d2fef638ed15b5f55c1046b9577e0e48360947d78d29cd27cac506f8
MD5 301b3e2c29bbcafc53003efe6be2572d
BLAKE2b-256 5922b303103938d0ab2babb62ad256fc3993c864ab565f2cead707eec9ed82e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bd9da6db7a9edf4453db0baa88f0fdc34e2805b3ae3c8b98639b114ba3701b3
MD5 4958bbad8eae8e37c89ea60f970031d3
BLAKE2b-256 193b0297b7319e79b5a40c9977df130018b3c0735efe22b75d576321227ba53b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff1b31fe76bd91677a867dd284f09064862724f782d2451cf39a944df9010b10
MD5 8004586dac10fc8767854f46c02da86f
BLAKE2b-256 44494ae70d3a4d46d23f46ffccc4d34574e38bc0767c61c4a10967f114907f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a66fd644a71276c886b7fd910695615f60ab66a74386f5cd208b94679f8e1b7
MD5 f18b5429f2a4d4d4577216f4a33729f5
BLAKE2b-256 6a138e63137064dcfaa65cf3195994126491578d415feb311eeccb9eabe17354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 14b1aca0b272fe39a5463c080bf1dd3972c627064d5ee2749ddef36c3ddec365
MD5 c3f61789104139fcdd87dc933064d138
BLAKE2b-256 d5bfa48376c4079c4dad1b8e9c40968c2ee66125c837ffe289056e4e1d7afcbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 865cdb733e82f07bbaeb5f50395e4a24b1a96a9db0e0f87b5435cba1e9e77da1
MD5 343a029c6ebb7266352e853daf51b915
BLAKE2b-256 8e8d8569a0f7b1babdc3987c6fdbf6ff00416befc04c2fb8aa8ed09639e1ceff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b6faf365fd5606b983168d338ad2943ca91090c4056054e53b313b521c63466
MD5 da0b58f69091e4e4be946b97dbdd698f
BLAKE2b-256 9bdc83c3c0e7a668cf17fbc708d117fff85d752411ba038aa7b72cd27896433e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f72f0127def5a53d19edefb39c56ef1e1c2246990cc90afae556aae2cc76f6c
MD5 8c4adde6f11bddade9825cc0ea47cead
BLAKE2b-256 0542edf0d40660345dc3eb473b7f4b570292fbc960bd872bd47fe7d738d7cef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eec7988e913378890453ca5b1294916d582bb4c2c005df7e060534b4f0144e27
MD5 4745dbe795744367929fda89f5fd8212
BLAKE2b-256 7a83ac02ccaf505c48d2f9b3a7ef579c0d6993260f0660c1ca0cd9d16056b123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28be865b7e471b66b821aa5f5053bd1acdc26316952fe471da8a63b1ed8db036
MD5 0a6bf41cd93f9d094b525832fdfda7a2
BLAKE2b-256 3f9345b12e5febad18642a751171a7880f5d0e81178bf73bc4adc4ddf336fb80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0b5413ae9d1ab64ab945586f5103721a5875eaa4c114521d0c6557b1b4552d4
MD5 f868977584e03269e66f32c071c0f94c
BLAKE2b-256 50936c51ef67eba562e8d1f617f9de58f9a810b941f445872dae59a604d794db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b83965d01c65d41273a874b1b9d539f3f9fc39c370c877f96601e7c615abf9d2
MD5 4b374b88d346556ba31fd2ab4479ddcb
BLAKE2b-256 2c50b55542056f345833e127ee0692de0fbc047084f80a619d3833dd98752ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eaacf833c6df2b26e152ebaf388a0fc73d06d699803ab5fa9ee01a269205c82f
MD5 85dfec8f35ddd63b417ed96eab6417bf
BLAKE2b-256 5aa4fe761955197d335b724c7caa2f230611cd22197468bf12bb8fb040914693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7b18be0fbd2ba7ca72713e5c66fa4214dd1ba2fb5a4fe2019979004a17763e6
MD5 038bb384e2c590b4912eda84a8ec06fe
BLAKE2b-256 9a5f0e8767ec6c97d39d5b8f2955cdd3b6cb3dc917cfca1268edd582a58265e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c14f2b574eaff41b8f98bea067dd8c6826eaeb3c67acf839152f84a19a088572
MD5 ecebc48d0779c9f1980bb24bb9d7bfe9
BLAKE2b-256 78c0433ca805f9422ad003049e154a9a0715a8b3835fc04f0c488eab52673e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1574854a2da60e9e7913226de12b472379f414072d1c77783119351de31d4aa7
MD5 613fab6f44254ebf05bd1c5cb7d773f2
BLAKE2b-256 412dcf1d487d6e7b1913e70f1254c2242d94054c9eddc3c5474b4922734345f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae4aa70daf9aaec6c26df59b3d13843f9e1ef25151b248653aef2bf7245d7a5f
MD5 327036e937fb6ae92a978b130aa0df5e
BLAKE2b-256 be1a2fb5d11e382264f02a8d41b32c9dbbacf20fd5cf5ad63eacd936a1878764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 9d9089cab5bddf44d99fc1eeb33c360b22e1c0c7027ce62a7343bf59bf648ad9
MD5 727e7a6642bc9bb040841d3a4ff6816f
BLAKE2b-256 4475c30cb15460a0a7b2e5ca75a75f98c950c0a2a06cd8756bf207a51bc79e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 2ed4c0ad196f85d8046c118ba7b271801fb1b5f7e6cb55ec1527121e6eb3b952
MD5 c7b099aa0c4b59375409719edb13ad89
BLAKE2b-256 7602499d0d1c26b501eb83fc7f0c6336090b4c1347a57c66714a571995a22cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d1f54ebf31c6a2a9d80ccc3ceb021034b52cada27a169576174f8a591c3c759
MD5 1abbe59fb526e6341d7c7cc5f94225c4
BLAKE2b-256 b3f13f93cc7b66c995a19aff4346707d8c5614a3695083b3d452c022d3f14578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c931972f420faa51c805891dc290d53d664e840eda9afeeba5c5cefc3305774
MD5 f89e977d6e003b2717cad74282f0f26f
BLAKE2b-256 d4195011c1972fc371e3323e27137bdb3daa481a19c402a080d6d1b199d51354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 578a614587e2e40b7a20b1f33090209f59d77d42d4dd254594c7a00ee4a5f223
MD5 6cd5bfab8722598281331cee8a670154
BLAKE2b-256 c8942b160e54f986f2c709b34670e1f690984547ce5f53db9d4874ec0ae8fd42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e477e46f2d1ca75a8e07b0245778c23e547f81eeac524fe9387ac10506bc7d5
MD5 5dca69ca457e8533b16547383f4dfcaa
BLAKE2b-256 bda563cf97cdc0a86f68e8ca297060bd1f6f2bdecb67b953f90bfabdb0a9b4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3301725e6e2119ebc0cca46a4e7e34a4b146682e43f972c05ae92029663cf7e
MD5 c557abcbd9678296fda4f8a6994af688
BLAKE2b-256 9015500e13a8c9c3184da51224626179fd632f537bfd233f6fac8e1d85f9afbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 199a2cc42900d5874c64433fb0203151fb356f9f486d818311f337c192de89f9
MD5 16f82e04df22bd1b6a2dab62d97cd69b
BLAKE2b-256 51def769430de7547821a45fbbaa007c3289d0cd5a9779d10e13a8f2074b0ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 000e2604079adf78e5569e9bcc5f721b02e34b537db1fbff2321eaba8a2dd633
MD5 410200c86d02d749cee8b73f7c4f38d9
BLAKE2b-256 f4ac44086d10b4e07823cce14da74da3e0c242ecbe71307879805de1f6011f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b34d8d31e6db54d40516d1ad73604396ada2a1cf6e5fc07aad4ab625720639cc
MD5 5b5b072132f85203f48037f04214f821
BLAKE2b-256 cd55c64a4323a0fe7f8b3f4bd8712fdefc360155d8401d33fb16f2b83c937f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c083528f854662b9ed7dbaec512a86d03c0abe4a36b732c60b4cd3b7354e76b
MD5 ecbdf128efd537e5fed871a0cf5464ac
BLAKE2b-256 dd5a6c6f79876e8a725fc4cd8eb300c8e5b0460edc2975c41fb0355bfad14a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f29e56c0ce929332d23b1be72a58271c6ebdf3e566f8eee1252b530fc8abebb
MD5 1e011903e00c17470becf64be1f74fce
BLAKE2b-256 a33da06ec2697a8828aebf7c93bc0a5f227b0a5fc90cc56fa40b0b7e54ac71c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6632d64e8bce02a60fec1ccc3637fdc056ea76fc2e0fbc00921de4e0a370a2d9
MD5 8a2f39b99b5ad09138a6a9322a2bc83b
BLAKE2b-256 ddb6de418d99a11423eee563dc719af06dd2ca1463f671d1e65aa39abed4868d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e50d01d0f3299800affd3f49af3197710806be1c3eaf74b1dd64c1e85e97d7e
MD5 c8ecb8b5a9d5c9564d1f34908c295660
BLAKE2b-256 66bf1c84af8cd8c0c0710f550543c993a777c76fd5720aed1f1b051c4243e434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eddc77d3a36971bfc9339552df89aac22d60c1bb46e63636e906d04eb7bc8518
MD5 185c535276ec6465e70f5ad9330753d3
BLAKE2b-256 db9b53e53fdff4a859df15b1a12a27c22c38c297716c16c6da04f68fd7a725e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 612610a3765e134a88c8e2428ca962530ed5fced2dd2cc02cd61d5c5ca0649a4
MD5 37e33422ae23b312f7074af009c9f38a
BLAKE2b-256 35aae4f59139d62d67b453f910f30ffef15c9f5500cb6b17ff528f10307ef5f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca71a0bd68e1274c5b65693b6e247d2df1942e0aba7f68a52106dc9ab2e5f1f2
MD5 d427f239c425a5b15dddc8a4d859ad8a
BLAKE2b-256 266a189f18699056c6a8d61857eb42e9d1c6729d943bca327f6c0cc6022e8b01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96d0bca7eacf5161c17052500f159a2957882cd5787dd2cb2cf166d128996af2
MD5 72aea8daf77b579502de35dd37eddbd3
BLAKE2b-256 d407c5aa9938844ef244def95ffd7764ce82764989ab74a432bc6ab57f798d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6af9de0a2f63e7e59ed25b2ab9e92a313f12b662aaecebfefd4bfbc28adc2d58
MD5 680bd8b36ed77e106e3175024712bb35
BLAKE2b-256 87810d6ba6b99aabc250b574bbe7066eb3b4224bb4c9eeb3c03ee416f2d18e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20b4eb4248c2ba4b789abe8afc491a579f490a7b6c5928fad139d84e5882fc69
MD5 fbf8bb2b982aa42814c5f134cadb0d9f
BLAKE2b-256 657ccff39b1a5690ecda1e5dd5c3fc4b605b0cf206f6ee814c9867507fcadeca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ca3e9ea71d827e6e385d7a844eee11bb92fb7437027b24f11ff34bdc85f6914
MD5 e9718c33c3cc5eea04dea7b0eeefe3ca
BLAKE2b-256 789cd178c1ba573515c5b00b65794548a8825780fa36972ddfe11bbb8f3800fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25eb9e195419076e9694da48c1a365647d18ee944b6f2d5714c7613be3fc3dc3
MD5 924cce01927ab1946cac9b4a60388994
BLAKE2b-256 4a2a97cc6e496a9d525c37c4980b0d72e2661792339c16dec2c17d1bb3fee662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e75dcf3925f560ecdd6b8a05c23ee359313231f7a10112faf4ed30a6c1fe407
MD5 2b49970af0b0b629f9c93e9671cd35bf
BLAKE2b-256 647d1bc04454d3dc60b3b0f8c15ac76fa52dd35ac77962719517befd8502807f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58a1726d775a525f379efa4219552bbafa65f08cf644715126026781ad2aadf2
MD5 3e4631d8f5a9c6016eb3a933ef791efe
BLAKE2b-256 c943cabe35571f67ef4e2ed9ed3685cc88c91e85f97a41449b3902f748c7fb89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c467cd1fcd25d88d9426621a87d2d2daa80e8c26a7750b59765238df04ae06ba
MD5 987b7560481ca0ca041f6c4ee4c14617
BLAKE2b-256 2ebe5c3bff8b0553d8ca10a987e06f48c4372f439de1cf2410a5c118319a88d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79112e90c5aa75cf453a8282d5024a68ef3aba007fe6018279b0f6edb22f4a9b
MD5 c44cdc2ccb10d530b44f42707791e02c
BLAKE2b-256 8cf56ca28c48d07d60984941dcf03bc0628cedc286c3c4ca912b26f3fd424784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 83ecc8b5fcc4ed8893c914f2538aee7b66801be37c5fca0220f8b19e0ac220c1
MD5 a7caa691d82fdccd7bb36553b84e4f09
BLAKE2b-256 508e30d39c53ace22a1a775be028c37eaabae6235b1d94b6f6606f6c18bf13aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c98d27f42d16e065e8e15106f915e7226609cafb080e3078fccd9ea649643498
MD5 f91b22333d11ce0c881ce136283fb102
BLAKE2b-256 14fcf5517f5374710f303745c29693b61e415db64c216ee27fdb5a17b57bdfd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a36740e9c7d9b5b2b0c96f7228d11a88b49efa54d6ef8075fef39ca71469b4e
MD5 9f5b66b1458b4f87b88bd2ea19a443d1
BLAKE2b-256 2df55dc35028db336a15c5547e826a396923180a04848289d8d5c77690698b8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00dd78b9d74b3d1b8a8dfaf3fe93b4b9cb242647c4451f2fb88809d03ef99968
MD5 e2ba9fe73c131f861a08622c5e32fd19
BLAKE2b-256 f62cc6d5d519e16c951a2d77b864608cf940ea4a0a48b20845a7615b28d7957b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08b88343be411f61fa34a1553bc81ebce019e0f849130a1969cbda005c084c13
MD5 2018eccdd3fc2f6e9d19c17615aff493
BLAKE2b-256 6d9d7daacd228c6be1144ffc5e6bc8d470efea376af84f221cee00d7e2475485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76ab61a75bc5dd5bdc8eb48668716ea106992afaf59984672c357e3113646d4b
MD5 15b56c7a2aeb6914f8bf2885f30e03bd
BLAKE2b-256 cb43c58128fa0e3df857e2e4f750245150af2b8b92ef1c21e38bacc3bb730f57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e349099f5521de65ff151a3d0459ca9b59f7ad8c9057aafb8c61dce21eaa6ca
MD5 baffd8f269fa639739c5afb0f33bda96
BLAKE2b-256 c9310cb544d7eae680569baa0fa5bbd7272e32eb815809edda22cbb4ccb7a7d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44423534ae0c02d0d16c0f1a4145f88ec0d0d809d8aaa33a16887c838154ecbb
MD5 41a570c5b3d1e4abb19c8911ae587731
BLAKE2b-256 792267fdcc5fc9c615bb5390a40f71c5bfc1785aded3e0d96c149c19fdb2c5ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4a372328ce1ddcd9cf28b28fe6aa2b5a001112dff07cd81b61b8ec6998a7bac
MD5 3decac25dbdcfeac3e364d5c7d72acb1
BLAKE2b-256 51e8729e802d23052ade6421b3553044cdf4b4831009205bb571750debba846f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 862bcfb126ed3b97231832c92d0a771d93c8d92f07c89e7f8df2e103f7795b14
MD5 033911044e594e26f78991d045377571
BLAKE2b-256 ec2a62ad2b6eeeb67f91606adc25d548f4639db0b5d81d0c318a0d1c936cc7d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 967c469fe8f93da3cada2171b44836dbfee8dc843047f9aa0ed135c280f4ae24
MD5 f9f0bcca362f1b9b051fe4b199c05656
BLAKE2b-256 e02faa5f3b056c513b5a5cd00b69454ea6a04ec7f802cf31ee7288b405ce9b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce81e4e7f31e21a696b773e84d9a62a324e08a20a918ca23b4a8c402edccdbee
MD5 154e5a737021c9a0bc32de87dfce2f02
BLAKE2b-256 3c61418331aa4b32f21ba9dae660fab2f7234de4d3d8ee5df6965bd430a57dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5515efbb9255c58432123abc30462b7892d222b8e5a469f723bff474e88317f
MD5 d2570935230736c32a228d0a7040cba3
BLAKE2b-256 3bc53d924e104fd7f35cea433837c08d629bdc0a62180e26d2475ab309433e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bbb38f0bbae782ee9c9cda859de7d1421308ac6f0ef33f8a24c5239a6134d969
MD5 3cfd983358d24aad2aa7387aa06f023c
BLAKE2b-256 6e9672354a57cefb22fad70101d5c58c18feae064001b23f1c2f160b809a7d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0c9740a4997b712587816f4730a79435d3e905d7efff4bd1e7da3e807e42d411
MD5 8e62a99ff8dbcb89515eaa3147ecc51c
BLAKE2b-256 8d3c9adb2c05d4a7883f3ff48b33000e0ddde97b6ed957e9c44b5f1b7bde24f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a50dca701ed5c83afc73f62f255e7e68ff436a5249749f9b488f353ff227b79b
MD5 5222e9f2e6d36c23852d1e1208bb347a
BLAKE2b-256 46c7564b847f27b72819d1e80b637aedd448ad960b73588cfc3f747e03ea3f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0fbb78c2a8083de481d5cae699c3517e5d9183dc9c3421bde8ee59c8cb6a5f3
MD5 65fc0a46c4956d521c919b15137ff1b7
BLAKE2b-256 0cefc28077d058a5f9be4036922bf4a0b3cf63514f579725835ee19ed88980bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8c4443d912c701248b23dee21356ba3ed6d04b9f2da5e6b459ec427a3cadc23
MD5 f86b1e19833b2c50812f681f25ea1841
BLAKE2b-256 cbf1a675fecda78e98567139104f27b0d51a10563d68131b8f0bc1951b205a50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 116cbb408dcf0c58808cd041211548da4a85528703bc4c9ccd0fc9855dc6d2eb
MD5 8a9dfbd9de4f5b37332fa9522b7b32aa
BLAKE2b-256 6cc93c1896c00a8f5a5ec72bc5ae2ff5cb6eaa6fd51ad5a841d436a79f37e27a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ffa58f72840c117e6108ab9a6de8df0402bd73fa24fa93fa14328122537bf95
MD5 3f38262cb0ac41b41ce5aed9f9d67f61
BLAKE2b-256 6f37c11419712ad8340584bedbfa735525892ada0f5b63301631c5dce87f2ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af316e60f2ce1261c77009fa29a3d891a13a59adc9a2b5220e9a989ad5b3f7a3
MD5 eab7c79bc529c3de5fcae53d37dd9faf
BLAKE2b-256 23289302cf3879eb1415a4164c9ac9733809a12ba1c5f5b71cbe2882e649b1f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f15b27e1283d22c08dc3385cfd75a192b1cab895eaf7b6a8beb4bdc26079df0
MD5 a314687fc122fd808c74c1fb92f9ae3b
BLAKE2b-256 44604701cdbdda820f3229a77e2ee54dfc34a8ae6aa27c2b4304af39b64a233e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2df6ccfa5007115f6ae8cc30f1e6717c9e53c0d83fb39f6b9e37dfdaf349f29b
MD5 ac4d5b49e0685f5cfbedf502a5a0b172
BLAKE2b-256 c94457222a5eb84399a34283e328bed3ab066a2aac4a86b2387bcdca161bf48e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb6150d38e1a0914136cd900340030e7fa88d0782a2227134b02dc1cab930d6b
MD5 08b798bc1c18b7a841160a1592311ff5
BLAKE2b-256 85676dba4af29ef07faab0e2126f4836ff13fcb8e7a995b4087cbe2062266cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40f817826aab9fbd6dff24a82b84a5a081e7bbf026d1986197a3dd0eea0fac61
MD5 9ddb723d401fd8fda9525b052083c795
BLAKE2b-256 391262aa2bc0eb303181631948854f9b73151c03efb72153d90ba6abd531375b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 144a40dd6a9efdfe32d902de9ac00e9b66d5524e3d2580b0829b96972ebc08de
MD5 3404225c7badec4918ad2446af67d25a
BLAKE2b-256 195beeda63d7d6b8ad8e5a80f492f14bd26e2119af393a4a4c59a96f0f6205a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 68a47ef7d124a91d5279a5d59757386dd10a4a182a98c0bc9821c41ea6577c18
MD5 ec634167167d2d75715a6079e6e29c9c
BLAKE2b-256 feb4a71ab414535e90bdba9b7e336b54e3842c5be23d00e869031d936ba897cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 43ad42ae6139b52ec66eba64599649c878b9d178591da6ea65371a538e925166
MD5 b7844fb58832f171e71758244cb84542
BLAKE2b-256 ae404b658b41787931b9dc8ac149e77e250ca346430cf7d2a908728a71a76df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb72e7cb7c627d4dbfc99b4be80a6dc65275bf7517c4a3f5aba77df4f9ba3823
MD5 5054da8b413029f20a75c4071c64659c
BLAKE2b-256 3b45a4c75ae09da600cd855b7c370d141d249d1410917e6b216eb20ad9aea401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c430995affe0a9ff8e982b380e7a4d7ae93f58ac0b9398f40625d41a737169e
MD5 1a865b5f935340f314e7bd8e739c6c0b
BLAKE2b-256 bd3652b94540c959dca571d246bc3545b6736bee14479446c3fbf54727340e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52ef782b8ce51c3b1b0e2e63b0d839f152face7db8209ab2aeab6a5007ceca03
MD5 36f39111e67982386caab9eb5536fcbd
BLAKE2b-256 398cd0654070b53b96bfce45eae8370de09f0ce05a873df68fe806a984e8e2a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bde6bb803c91409ae414e79f58a8b937fa8e59a885c11dcceb4aebd56224419
MD5 981b6160c5d9b3adb0def81e1c02866d
BLAKE2b-256 9c3db7a32f55de50e650edea88092ef0b2a16a8da90d806159274ae3ee7fd8e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 008a2cbaf9aacd623bb66067a5fcd3252d757438d4dfa013ef643049cb847810
MD5 097f7f41ac9e104700d3ac613bd59782
BLAKE2b-256 703c52e11c47e50c88cd40d9df480847311f1e117ab087bed0fa2a4e949bcc03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44c6966fd28a6559144adfcb44794af0a89d8911457278e29cd5b5713d577709
MD5 859dc3fd63bf2dd1aaad2ff28d30160e
BLAKE2b-256 a04f2112c038f23318040f5cb478ecac7eb6c3ea8b6f6d7e592d9bc052070f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08d1f185486ad993bd39fa57b4d4baa095fc2047bc01a8bd73984e274038300d
MD5 cd112e14e56579bb30f3473d5632f126
BLAKE2b-256 e4d1b0c32e599220357f1341e7d328d6ca9e6fcaeb35c85bd79bdb54c1226170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fefaad381a16c84ec75d74edced7e0c519084b0d063fc8ae0629cc8797ee8bb
MD5 668fa9da6470119403c345b229385d62
BLAKE2b-256 9870566db0d9b6fd8fc12958e297c37201d31c539d1621706c286272fb6111ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b681d6ad2839df52c508c66eb5af06e74a048ccf3f13e38586e2372dc823afb3
MD5 6f2a82596047c5a0803dff0afd9e698c
BLAKE2b-256 8494c68c5b81eda1de34fb171b2af6c0ea8e86d6845cd207e75399f847371e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 47443a922fd7e28bbf99d424935cd4f987b64992e3ecdf6417aab27e627d36e4
MD5 4777c4ff0b8c81d3dc5333e3d5e83600
BLAKE2b-256 1871a7943e9d939984d835a8cf922894e5be8401f7c78c78c116b1e246e0271b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xmltodict_rs-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dadeefb63ef8191d0f9f6dc67d2a3ce52e246363832c7961b9fc4514b9ff8db7
MD5 30a0bde5103fe901f44de5db27dd9da8
BLAKE2b-256 9ffbe3aaf20369faaf2f3d53f1246f286de62be2d4bfb003792bce2e84e4b996

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