Skip to main content

RXML is a python library to read and write xml files up to 2 times faster than python's xml included library.

Project description

rxml

What is rxml?

rxml is a simple python library to read xml files up to 2 times faster than python's xml(ElementTree) library.

Installation

To install rxml you can use pip:

pip install rxml

Simply as that!

Example usage

To a given xml with test.xml as name:

<?xml version="1.0" encoding="UTF-8"?>
<note example_attr="example value">
    <to>
        <name>Example Name</name>
    </to>
    <from>
        <name>Example Name</name>
    </from>
    <heading>An Example Heading</heading>
    <body>An Example Body!</body>
</note>

We write the following python code:

from rxml import read_file

root_node = read_file("test.xml", "note")

where "test.xml" is the file_name and "note" is the root_tag.

After that we can simply iter through the children with:

for node in root_node.children:
    # do something with the node here

You can also write it to a file or string(refer to the .pyi file for the args).

from rxml import Node, write_file

example_node = Node(
    name="hello_world", 
    attrs={"example_attr": "example"},
    text="Hello World!"
)
write_file(example_node, "test_ex.xml")

Node attributes

This is how the Node looks like:

class Node:
    name: str
    attrs: dict[str, str]
    children: list[Node]
    text: str

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

rxml-2.1.1.tar.gz (8.6 kB view details)

Uploaded Source

Built Distributions

rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (356.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (349.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (326.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rxml-2.1.1-cp312-none-win_amd64.whl (176.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

rxml-2.1.1-cp312-none-win32.whl (162.4 kB view details)

Uploaded CPython 3.12 Windows x86

rxml-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rxml-2.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (351.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rxml-2.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (348.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rxml-2.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rxml-2.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rxml-2.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (325.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rxml-2.1.1-cp312-cp312-macosx_11_0_arm64.whl (268.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rxml-2.1.1-cp312-cp312-macosx_10_12_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rxml-2.1.1-cp311-none-win_amd64.whl (175.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

rxml-2.1.1-cp311-none-win32.whl (162.4 kB view details)

Uploaded CPython 3.11 Windows x86

rxml-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rxml-2.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rxml-2.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (347.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rxml-2.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (311.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rxml-2.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rxml-2.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (325.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rxml-2.1.1-cp311-cp311-macosx_11_0_arm64.whl (267.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rxml-2.1.1-cp311-cp311-macosx_10_12_x86_64.whl (274.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rxml-2.1.1-cp310-none-win_amd64.whl (175.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

rxml-2.1.1-cp310-none-win32.whl (162.2 kB view details)

Uploaded CPython 3.10 Windows x86

rxml-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rxml-2.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rxml-2.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (347.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rxml-2.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (311.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rxml-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rxml-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (325.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rxml-2.1.1-cp310-cp310-macosx_11_0_arm64.whl (268.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rxml-2.1.1-cp310-cp310-macosx_10_12_x86_64.whl (274.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

File details

Details for the file rxml-2.1.1.tar.gz.

File metadata

  • Download URL: rxml-2.1.1.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rxml-2.1.1.tar.gz
Algorithm Hash digest
SHA256 99bbabd118df0b958c38d6081c7d9c3742c92ae7c05e9341c20d5608bafc60ce
MD5 8e61e089a00eb12277840bf7e6dda9e9
BLAKE2b-256 42a5d1b0fcf5b22043e8f689dd83d77940d78870b6d2412427df16d6ed6e7d98

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85b655bd837e5c7dc52a5118a5aad0854e8f9d37a7df807274435f68aadea29a
MD5 cdecb29ebf4d396da3bd70fc4d346131
BLAKE2b-256 7204dfe74534457881cfb253f7dc2b1239273b1da7d51f15d6f446f9faa9abf1

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab128a31f68214c1253fd57cf98aa6bedaf559da353c39e168ef7b4f212f0a49
MD5 0af05e516a68f2f4e1fe1903bb619b2a
BLAKE2b-256 45b0fe7ed92ebc10d567ca43c09c845ba05e83a403d33e837e726ba82ddfee05

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 468d789e2a38bafe7be9643822ef8b7e5a283bd00817c86d3c8c49ad283f1283
MD5 7d41639281651301f4bf19893ffe83a0
BLAKE2b-256 7bc639a34b58a772f40d7b9aa72d0f91a55af71bbedd04101997dc195201f8de

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb03add8f86864619bf28ea30f57338a1a4c94615404152662b44541fa5e79fd
MD5 8db443a1e12a3e69fbd9083b81e8f84e
BLAKE2b-256 2f0e0334a569b9b9d0ac811439db1a1b4ca2ef3bf39e99507db0f9a8f95e70bf

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64b781e0e8fedb7133b83a31d701b0b63ea926b19f8fe289e1011a486f2300c5
MD5 bba920157e5589651a3bd981abdcff85
BLAKE2b-256 3986f539b6d97ea912e7fb0d3342f4d2c714ebfa11665344424e81fd7d1680e8

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 359e4bcd92bec325bb8777152c54f4841fb09538564a86c89ab99d697c1cb055
MD5 46d423ae7f8de3d677f7b5bf923fb39b
BLAKE2b-256 760111cca184f6d32797cc952c8d40ac4fe7355ecdbfe1827004e4750dc84e6a

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: rxml-2.1.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 176.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rxml-2.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f95622a4b68fe7c01ce39a6a1743b3123d46ed883ad1693a26650b3d3fd2a2a
MD5 5363487cc812a7c9c117e76e10c18e6e
BLAKE2b-256 f383cde5e7a461bb809c7344050d34f59678a71dbbd4cd380cda05d297d785c0

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-none-win32.whl.

File metadata

  • Download URL: rxml-2.1.1-cp312-none-win32.whl
  • Upload date:
  • Size: 162.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rxml-2.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 67e21fa4a88721e5323c0bb89702c0532c6b63e1232c4a34b0d12af79ed985d4
MD5 32bb6273588bb8f28edc32e231f9bf85
BLAKE2b-256 c4a0b3dbabe6d31d65c452c41ba724483d5837399799ed04198c1eb602c811ba

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 539a68b5a23989c4acd976e729e06d45538369651a4712b1b4cdb1c1e8ba485d
MD5 c8b3641be82866dd7f5685160cfd7989
BLAKE2b-256 de23845ae82eb5562506a353731e77347385c763d770f7514acc0aa4450151eb

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bb0d4b4f73a10c188d9ed89446ce38c2f689a251c59b1aa4b7070b11e4a7637
MD5 8b6403e86f1f645b27f107dcec36725c
BLAKE2b-256 f1c919cd200e653ba6410094d67d129ff5c111d7f95dc70e6e7d584d92bd77a5

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c66edc222fb785ca00d18137952c146bdac9eec5c55489c0c1ab1156c2211aae
MD5 ccba40517bef34e6dd9358b0e8f89916
BLAKE2b-256 713878f12840c8aaf4107c3f57b6cdc2581b4790cc55629e343354de937da0a7

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25ee826ea8854edbd99bf317f45a7e9c88bdc8b658d2c64b8a43bda029a8fd73
MD5 8fd7f4c181911944d6b16867d6f6131a
BLAKE2b-256 58cd903fb555e5eb67e82b2eaf2790a5c574721d7d10ed4d266a9bc55c747494

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36dd6a2210c542282efbeeb40ab76c50d660b22c8c9498133c28378e5675575d
MD5 7dc93951093863fbe888fdd329d70702
BLAKE2b-256 85de5cc07411b85176f1fc98cf6bad730ced650acb22fc321d6957c79675b7fb

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 000c12396f48c1d1feaebe61e3d79c45ecc1da161dfb3d239fede154e7673354
MD5 2179d889c6eddddd76baf0a881e4a3fa
BLAKE2b-256 b14516cbd5b003fbf31da02e1d097bc6ad7ea34867fe70d56db1b2acb2894fbc

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6f230d9cc91bf04c880618d45f4c8ebfc4c6f1630e11a763fc6ece70b08b5a9
MD5 5e3f958e13361ea31365b92b8c997e33
BLAKE2b-256 e198c28d54110f7643720cf074e50cb387fd48c738ea94a801fb9828ef2bd622

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4f597cd7d32dafef3e1dd97f6cd0f0bbace003ffba413f5bd8b71b49f96d7a2
MD5 c1d3feb1556c3a88be33de65f56c7a73
BLAKE2b-256 5b34b9e0197ad484061176ed7e77b678a09f0ddce19953ad6bce06044b8d0332

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: rxml-2.1.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 175.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rxml-2.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 af80bc776ff2456534d17e015c8485d674f0a7da891c1f92873dc279a9f2d76b
MD5 681e22648ad7bdd0dea3e78f89bb2370
BLAKE2b-256 4e8cfb0737293b18d0cd2c135bff573343e00ae197573065d984f5df67546780

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-none-win32.whl.

File metadata

  • Download URL: rxml-2.1.1-cp311-none-win32.whl
  • Upload date:
  • Size: 162.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rxml-2.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 4730c3318689f753349841b28564ea029ee213118a7fbe8f4e8b50a5be85b16a
MD5 807c2ad8126df49faf95f89b09bdca25
BLAKE2b-256 1ca5d02d55735f674fd70622b6f13eeca718b912bf046d9b50b0fe596da9d8c9

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1bceade2e0df43bd81aa930f99cf1cbf720a37ede2fc5c1cb777c3c4670e04e
MD5 270b182013d39e395bcfced50ead6df3
BLAKE2b-256 d6f75a82d1192fd675736649bce2d2248d8c63c564cc7bcf3d882c2a577df6b0

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f37c603dfaf885d1d2c948785ab0bb943b61031ed865206b76bd5b2b75859771
MD5 0833bac2724c74e1c9a44b55788dfc55
BLAKE2b-256 a5f14c762048733d654735fe5f310d987c544d23e2d755e8abb6268e06bd8925

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 761541eeb417df89266a8ab8d0b8bb89712f636dfc3e1d62c16673706b1a7cf1
MD5 55ab35498eda6b4e89dbd2ca94e1b7b1
BLAKE2b-256 d979bed4af6c29b81d969f2dd9dc98fd53cf229a0de64fd67cd1b69b0624f395

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcb72e0f92e9903681ec45e7385835ab257c7cac11cd9c7f8c8422f3e42b3699
MD5 88004bcfb25e4a9dd7cf41ff71f70bd9
BLAKE2b-256 d8e0063715843454b8874308311e5e874d69816903e75d231410308bf0f3ea56

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8bea7b610beb3d35e8187d72f8431aa8206d97b2063fbabdd14b3a6cf94e344
MD5 07cce070403c9f6093fbed4946173dbc
BLAKE2b-256 c1ff64a494e206b69d032fbe5d3afc0ddc4aa7a5de6df93fde9ed65388c82887

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e449453f49d91f1d749e40724bc78f81d47d1fefd92707a9e934667e0572b4dd
MD5 b1a1f2d218dd3eeb96f4d9fb38ab4778
BLAKE2b-256 aba5511144379a32511f6a4e7db1db646e739b8243a6a24bc75bdbc6712ff807

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 810f6cd462e519e33847e45286ad68453b1160e10390fe40b0027a6cd27500c8
MD5 af8a9f04122aa73dec44ae2c0b914b4a
BLAKE2b-256 f5671fc19c45204a707c6d3e4c4f91c4b9c183d9556c3dd57686f437bfaad809

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cb3f1c3cfa511e7f3aaf7dc2f8d1e9b21594bc1c7fc5ba1303a5fe750a46203
MD5 b6a3d6581b8cb635d945f7e611433093
BLAKE2b-256 30f57569f524c20295c585a3db9e50be25f0359e8f049c89ab51d68ed464eb96

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: rxml-2.1.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 175.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rxml-2.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 85ce68506e8c6e1a9793f63af799c87a4f0f5fae4536bf08bdac125ee6b1915b
MD5 bc65cbb714a806afdb7f2408367b1baa
BLAKE2b-256 e8939bd9fd850cc4f20f8db3f0152533b3b393f4c34a1a3e65f76e07cdbc6655

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-none-win32.whl.

File metadata

  • Download URL: rxml-2.1.1-cp310-none-win32.whl
  • Upload date:
  • Size: 162.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rxml-2.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8affa1ec9255098173cd31a6320ddc065c7213cf8ca525f1d3dd8962aac16d51
MD5 fbf8b5bb2143f68393a25050a1e6ef5d
BLAKE2b-256 f8d6a2d972f344a800ed3f1ad758cd361aa2d1462c197171ff65e3bdbe6cbe9c

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc8d35cbae2940c9885d61a6ea04947c59c2f5833830e6eed4fc34c1fb2a2b5a
MD5 ee32837f1ccffcc23f5ebb176e2ebb1b
BLAKE2b-256 c06933c2c8c38f7a9b23147b2ce56b33f381b341001a275f294a7eb642c940de

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46a565b79e14886ddce5b352d4b7ea860039c3e5fda9372e9bd96bcd03cb09a3
MD5 1d0a7e17a096715ddd85bc660b874f9a
BLAKE2b-256 371d0996f53c2d9bac806b6f8928915916df1663753ad071cbaff016919bc077

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92432603ffe64ef8cd66d654d98fe2e304f2d1a26d95ebb74f5d96a974a32953
MD5 4002ba8aa44f2b6366affd30aeaeef13
BLAKE2b-256 9eb50fc6ebcbae032c2f8c0bda044cd8fc27fa3fe5f5fe65a357ea8cd36405c8

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88cc13618be7baa4b51584aa20095e71acbc4766dd05fc41211de0a1e5114b6a
MD5 5efd9fc2c1f6ce538df691d178ac9009
BLAKE2b-256 75639ad707068ea7fc2ba323c42d5598b08e1eb73940003f83a426934aa3e07b

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d87ca206d667197c2a79973ec5bb4291f65dd7ad053c1f66361d40b63ff6ed77
MD5 01c2296e3dda5d57b7483d77cd318be7
BLAKE2b-256 0651148b6bdeee81aef1616bb1431be20ea72830512036370eed496799c469b8

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c83338372d7bdce29821ac6d883d3fd844708646b9e4255350c6fb70b6b5aae9
MD5 3331e9077176539f867b831472d42994
BLAKE2b-256 e29abefde8a5cbd9f107a103623281bcb45902bbf94a0d8051152b1a5636df56

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 045b03918c5b476107706bf457e4f0e7d310015f229c7241c062ad91a4304ff9
MD5 9d4d4e34b56e6740e749dfbdce07843c
BLAKE2b-256 289d319cf780a9c6b5a21d3e34fc7036c893ec5b10f71c43a128101f484c5382

See more details on using hashes here.

File details

Details for the file rxml-2.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa51b0c1a893972b060ce1799e609568c9265b13ab268cdba9a5161118c17b45
MD5 4464663077d41668721e9f4687974571
BLAKE2b-256 7c5f3c021e1a887048abdbc71053d959bc17b26d4ba9c5647d6aee690b0bd139

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page