Skip to main content

Python bindings to Rust's persistent data structures (rpds)

Project description

PyPI version Supported Python versions Build status

Python bindings to the Rust rpds crate for persistent data structures.

What’s here is quite minimal (in transparency, it was written initially to support replacing pyrsistent in the referencing library). If you see something missing (which is very likely), a PR is definitely welcome to add it.

Installation

The distribution on PyPI is named rpds.py (equivalently rpds-py), and thus can be installed via e.g.:

$ pip install rpds-py

Note that if you install rpds-py from source, you will need a Rust toolchain installed, as it is a build-time dependency. An example of how to do so in a Dockerfile can be found here.

If you believe you are on a common platform which should have wheels built (i.e. and not need to compile from source), feel free to file an issue or pull request modifying the GitHub action used here to build wheels via maturin.

Usage

Methods in general are named similarly to their rpds counterparts (rather than pyrsistent‘s conventions, though probably a full drop-in pyrsistent-compatible wrapper module is a good addition at some point).

>>> from rpds import HashTrieMap, HashTrieSet, List

>>> m = HashTrieMap({"foo": "bar", "baz": "quux"})
>>> m.insert("spam", 37) == HashTrieMap({"foo": "bar", "baz": "quux", "spam": 37})
True
>>> m.remove("foo") == HashTrieMap({"baz": "quux"})
True

>>> s = HashTrieSet({"foo", "bar", "baz", "quux"})
>>> s.insert("spam") == HashTrieSet({"foo", "bar", "baz", "quux", "spam"})
True
>>> s.remove("foo") == HashTrieSet({"bar", "baz", "quux"})
True

>>> L = List([1, 3, 5])
>>> L.push_front(-1) == List([-1, 1, 3, 5])
True
>>> L.rest == List([3, 5])
True

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

rpds_py-0.10.4.tar.gz (16.5 kB view details)

Uploaded Source

Built Distributions

rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.10.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (323.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.10.4-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (333.3 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.10.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (323.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.10.4-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (333.3 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.10.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (323.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.10.4-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (333.8 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

rpds_py-0.10.4-cp312-none-win_amd64.whl (185.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

rpds_py-0.10.4-cp312-none-win32.whl (175.4 kB view details)

Uploaded CPython 3.12 Windows x86

rpds_py-0.10.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rpds_py-0.10.4-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rpds_py-0.10.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rpds_py-0.10.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rpds_py-0.10.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rpds_py-0.10.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rpds_py-0.10.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.10.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rpds_py-0.10.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rpds_py-0.10.4-cp312-cp312-macosx_11_0_arm64.whl (321.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rpds_py-0.10.4-cp312-cp312-macosx_10_7_x86_64.whl (331.1 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

rpds_py-0.10.4-cp311-none-win_amd64.whl (186.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.10.4-cp311-none-win32.whl (175.8 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.10.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rpds_py-0.10.4-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rpds_py-0.10.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rpds_py-0.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rpds_py-0.10.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rpds_py-0.10.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rpds_py-0.10.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rpds_py-0.10.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rpds_py-0.10.4-cp311-cp311-macosx_11_0_arm64.whl (323.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.10.4-cp311-cp311-macosx_10_7_x86_64.whl (332.8 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rpds_py-0.10.4-cp310-none-win_amd64.whl (186.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.10.4-cp310-none-win32.whl (175.8 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.10.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rpds_py-0.10.4-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rpds_py-0.10.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rpds_py-0.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rpds_py-0.10.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rpds_py-0.10.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rpds_py-0.10.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rpds_py-0.10.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rpds_py-0.10.4-cp310-cp310-macosx_11_0_arm64.whl (323.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.10.4-cp310-cp310-macosx_10_7_x86_64.whl (332.8 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

rpds_py-0.10.4-cp39-none-win_amd64.whl (186.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.10.4-cp39-none-win32.whl (176.7 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.10.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rpds_py-0.10.4-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rpds_py-0.10.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rpds_py-0.10.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rpds_py-0.10.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rpds_py-0.10.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rpds_py-0.10.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rpds_py-0.10.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rpds_py-0.10.4-cp39-cp39-macosx_11_0_arm64.whl (323.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rpds_py-0.10.4-cp39-cp39-macosx_10_7_x86_64.whl (333.1 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

rpds_py-0.10.4-cp38-none-win_amd64.whl (185.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.10.4-cp38-none-win32.whl (176.2 kB view details)

Uploaded CPython 3.8 Windows x86

rpds_py-0.10.4-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rpds_py-0.10.4-cp38-cp38-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rpds_py-0.10.4-cp38-cp38-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rpds_py-0.10.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rpds_py-0.10.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rpds_py-0.10.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rpds_py-0.10.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rpds_py-0.10.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rpds_py-0.10.4-cp38-cp38-macosx_11_0_arm64.whl (323.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rpds_py-0.10.4-cp38-cp38-macosx_10_7_x86_64.whl (333.2 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

Details for the file rpds_py-0.10.4.tar.gz.

File metadata

  • Download URL: rpds_py-0.10.4.tar.gz
  • Upload date:
  • Size: 16.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for rpds_py-0.10.4.tar.gz
Algorithm Hash digest
SHA256 18d5ff7fbd305a1d564273e9eb22de83ae3cd9cd6329fddc8f12f6428a711a6a
MD5 831aa81553a96f1d8e885dceef5f5915
BLAKE2b-256 9ea84a4e5ef90c4c4f27683ce2bb74b9521b5b1d06ac134cd650333fdca0f52c

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e79eeeff8394284b09577f36316d410525e0cf0133abb3de10660e704d3d38e
MD5 24982c6e1248c696305f0bef573bc641
BLAKE2b-256 b4194ffd34ddbcfe3b7e52d8afb9c5b584cadeedb3511b64fbcf1e7e6f0028cb

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bd38b80491ef9686f719c1ad3d24d14fbd0e069988fdd4e7d1a6ffcdd7f4a13
MD5 0ff0f5ec18613fec529e2932455ac158
BLAKE2b-256 9c616564f2ee3c9833a1af51b5f1bf86a0ed6fc7be24fe2b7410b719db0c6970

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32819b662e3b4c26355a4403ea2f60c0a00db45b640fe722dd12db3d2ef807fb
MD5 1032bcbcd517ae724383182a016f90bb
BLAKE2b-256 2b805e94551cfcb2fb420a4c805a0aea85b3062619133ee14ff90e8ade7a6d25

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49db6c0a0e6626c2b97f5e7f8f7074da21cbd8ec73340c25e839a2457c007efa
MD5 3e4db2238781c3ccaebeade5a887ce2e
BLAKE2b-256 4574278e3fcab97236c6f192a8c26310a737227ae7ac80d7bd8f607d52fcad70

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83da147124499fe41ed86edf34b4e81e951b3fe28edcc46288aac24e8a5c8484
MD5 d2bd18632b1ca1cdf86806cd0ab61f5c
BLAKE2b-256 f90e1811d9ded857b18a7d596819b4630f38d8413d96e84a44a5493df55bccb2

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d81359911c3bb31c899c6a5c23b403bdc0279215e5b3bc0d2a692489fed38632
MD5 a354831b09f49f3f22839116b1418401
BLAKE2b-256 47cd951d339b1f9af6472bd92516cba40be71b4196efb95b0a6e78a0431c09c7

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98c0aecf661c175ce9cb17347fc51a5c98c3e9189ca57e8fcd9348dae18541db
MD5 e33f400b13a1562d32df5db49ee44899
BLAKE2b-256 e49aaff1038b3fba7079afe68bd6d7d0271240d0dfc970124d44e5811e4fb28e

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1f191befea279cb9669b57be97ab1785781c8bab805900e95742ebfaa9cbf1d
MD5 36cb5525de1cd129b41ec699e3577880
BLAKE2b-256 f806af07127dd1897de12833b0023fb268a228307564f3ce121a759f18d87a84

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 125776d5db15162fdd9135372bef7fe4fb7c5f5810cf25898eb74a06a0816aec
MD5 63a1c66409dd23797e6ed333ac185dfd
BLAKE2b-256 a739347219e2c43c99360ea04285f841db4e7e06672cd267bb31406d98197425

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7089d8bfa8064b28b2e39f5af7bf12d42f61caed884e35b9b4ea9e6fb1175077
MD5 145894091a6296bae8d320c3277260c2
BLAKE2b-256 e3bb4437e27906ca032ec3a05a83aab176800f75bdf599decbe15231ff874373

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9c7e7bd1fa1f535af71dfcd3700fc83a6dc261a1204f8f5327d8ffe82e52905d
MD5 4998c683c0cf0997883b258ddbf78e66
BLAKE2b-256 f0e9eba2e291eecf5f0fdbd146834f7c4a4b63f41e3d036ef1ac12c6483404b0

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae8a32ab77a84cc870bbfb60645851ca0f7d58fd251085ad67464b1445d632ca
MD5 4e8e5e90f78ec6103672252af06787c9
BLAKE2b-256 adf0aa8b2b8bb3eb868153acddf4f6212b8e57d2d78da25c6fab319a7ec0e164

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60018626e637528a1fa64bb3a2b3e46ab7bf672052316d61c3629814d5e65052
MD5 1dbd2ae31632f108cdfe614231c7f2f3
BLAKE2b-256 49c23e7bc1bbeb712fbbe2dc3652024e8beff786bce17913b3872adf064ea883

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5ad7b1a1f6964d19b1a8acfc14bf7864f39587b3e25c16ca04f6cd1815026b3
MD5 72398847eaf639f7a874bde71186d65f
BLAKE2b-256 8ff2607a7c9fa3501a07cd570188b522bcf63a6166c2d3f4b8929e1fed01aca1

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70563a1596d2e0660ca2cebb738443437fc0e38597e7cbb276de0a7363924a52
MD5 3dcc05168eec79d560cad348ab934e40
BLAKE2b-256 edfbe511ae955292654ad7ece7ffa58b052f56a4cd993c085a832f2f13d89bfc

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0f7f77a77c37159c9f417b8dd847f67a29e98c6acb52ee98fc6b91efbd1b2b6
MD5 a8af957d64827d72c5aaf0ed9d22b418
BLAKE2b-256 02225dc368253bda0346188d78f70b77925546ee8cecc8cdb9e3485230d2fb53

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00a88003db3cc953f8656b59fc9af9d0637a1fb93c235814007988f8c153b2f2
MD5 ea39489b70d7298582bd5b917bd0cdaa
BLAKE2b-256 e21ad069e33334df4ab8cfbe631535d555ab96b722184c1d0ca86f83297b932c

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13cbd79ccedc6b39c279af31ebfb0aec0467ad5d14641ddb15738bf6e4146157
MD5 d9193c73dece1b0ab7f317f311cc4f60
BLAKE2b-256 9823634de45d2392ec6d2c4aff6eed8d6c81a414d1bc3cd13911f5bc1e229bea

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cb55454a20d1b935f9eaab52e6ceab624a2efd8b52927c7ae7a43e02828dbe0
MD5 4deb2afb0bd0b8beeab5d0b5e58de4de
BLAKE2b-256 43784e260ffb72ef42de839bdb3e4e4bfc4ceb25734fd504cfbc8363eac0a70b

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3ece9aa6d07e18c966f14b4352a4c6f40249f6174d3d2c694c1062e19c6adbb
MD5 40745d0c41a908e8ba8d15f7e950d4ad
BLAKE2b-256 dd70aca64692144c35d568e36a6d0322ae3fc460824cd77dad29d8f70264b768

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94876c21512535955a960f42a155213315e6ab06a4ce8ce372341a2a1b143eeb
MD5 08e2655cb0eaad4be3138b2c90915507
BLAKE2b-256 c359a7620d3fa5972f30b4ca30c08892e24eee40d232baec6bcc4a5567a401c8

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp39-pypy39_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6baea8a4f6f01e69e75cfdef3edd4a4d1c4b56238febbdf123ce96d09fbff010
MD5 b1a30816c40f0a6c815377407ff83448
BLAKE2b-256 1480b3c6442da1cc3f4ccd32f7505194aaa11aacc6ca4240b3cf2d5459458a19

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad21c60fc880204798f320387164dcacc25818a7b4ec2a0bf6b6c1d57b007d23
MD5 5d791fa16881a5383c0ddb623fb3aec7
BLAKE2b-256 f4d13d13517578fd7d8aa4d9fa3713b0c35ed15fdaf1d10dc6a8ca4de72bf0ad

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbec8e43cace64e63398155dc585dc479a89fef1e57ead06c22d3441e1bd09c3
MD5 baeed234489e4463348de7a054837876
BLAKE2b-256 7d2c12c099ad2a2709b1b6481b36992bfd1eb2d2c2c74a2dce1e1502f6c1601e

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e7b3ad9f53ea9e085b3d27286dd13f8290969c0a153f8a52c8b5c46002c374b
MD5 4e2bc0a470e51a2b0e07c2987c04647c
BLAKE2b-256 a2f6c3b71c77ac97006c66dc006f1caa6f841e7476ae45c76c829b55bac21603

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac83f5228459b84fa6279e4126a53abfdd73cd9cc183947ee5084153880f65d7
MD5 7719e714e86457f23eb2fed5eb0be885
BLAKE2b-256 b6602a053fb0494ebecd7c34692c92f5cfbe60223646f542994e986ee9425278

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd7e62e7d5bcfa38a62d8397fba6d0428b970ab7954c2197501cd1624f7f0bbb
MD5 4799caee77a1483e34c3d51cf168aa53
BLAKE2b-256 ebcb58341c1094857de4c13f6431efc5b967414388db4a07860251c62c196c3e

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58bae860d1d116e6b4e1aad0cdc48a187d5893994f56d26db0c5534df7a47afd
MD5 257a4a30001145f44218ce66cbc83f6d
BLAKE2b-256 3cde63ac2cd492ea95b482ec22a36e8d6621b87c50fb72ca893a4664af423e00

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d98802b78093c7083cc51f83da41a5be5a57d406798c9f69424bd75f8ae0812a
MD5 eb4960665c530056d6f5064952d4697a
BLAKE2b-256 73164da7447918ab5ade6a9d4d4f17f5b6295afc50cf2b6d46bdadef590008f6

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9123ba0f3f98ff79780eebca9984a2b525f88563844b740f94cffb9099701230
MD5 fa51f283a76d2420cdb12502a697a47d
BLAKE2b-256 bb5c0c7e4d48b0ce9852de25a08d49689c64e0067c8d06db4f096b0742f4d863

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bcb1abecd998a72ad4e36a0fca93577fd0c059a6aacc44f16247031b98f6ff4
MD5 9a145f0b6214d754fd8854ea098aea11
BLAKE2b-256 59e87d1d1864e3726c233df2febd8fc6e8f159c08d9af264dc77a96390302b1c

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba3246c60303eab3d0e562addf25a983d60bddc36f4d1edc2510f056d19df255
MD5 8a589ac5f4d96f71e1a7fccf49f23d2b
BLAKE2b-256 3b350ab92c714bf4ac8f4e7e56467ad310cb9aa06ea529f13d6110f4c84b9c1c

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-pp38-pypy38_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3e37f1f134037601eb4b1f46854194f0cc082435dac2ee3de11e51529f7831f2
MD5 f4e6b6d1dc3a5d443addc6f431dcf27c
BLAKE2b-256 dca3b50d5994e757098e424d494fbdb71b5e52f643e923632170bdcf8e9855c8

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 aab24b9bbaa3d49e666e9309556591aa00748bd24ea74257a405f7fed9e8b10d
MD5 399e6e194100bf7c4c97dd7873588974
BLAKE2b-256 fa5dae7fb6182c2375d8a226cc81ee56a231f59ac73b4946b2c8562f2d782ac2

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-none-win32.whl.

File metadata

  • Download URL: rpds_py-0.10.4-cp312-none-win32.whl
  • Upload date:
  • Size: 175.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for rpds_py-0.10.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 2a97406d5e08b7095428f01dac0d3c091dc072351151945a167e7968d2755559
MD5 afe2ebb76cb04972040b014c39e9ec22
BLAKE2b-256 506c8cb5c29329354c6fb6ff8dcdfdf7d551be330334aa4eb14d79d483f05dfc

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd0ad98c7d72b0e4cbfe89cdfa12cd07d2fd6ed22864341cdce12b318a383442
MD5 cff49902f62ba35c3d6f364c9385c4fb
BLAKE2b-256 06920c0ad615530ae79aeeba0fb305885a1e06f6d3f924767820654e871fca32

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddbd113a37307638f94be5ae232a325155fd24dbfae2c56455da8724b471e7be
MD5 c130e1c030a2bdef65913c94b16d4929
BLAKE2b-256 da2dc019dcfc0b6bbd79bb579a35f3c800f827cb2fc28ace10ee81a551773868

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b28b9668a22ca2cfca4433441ba9acb2899624a323787a509a3dc5fbfa79c49d
MD5 eae707bbfdb539b2c890e4274696ac93
BLAKE2b-256 332e0cb55cf2adbb04c761df2e6a8f196160566e57ffd09687374ce776f95438

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bb3f3cb6072c73e6ec1f865d8b80419b599f1597acf33f63fbf02252aab5a03
MD5 fb5b68157922cb568beac306bd836cff
BLAKE2b-256 e1335882d91da068aae33cb781c4e2096c237d238a2473d5c7d3c62793dd7948

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e41d5b334e8de4bc3f38843f31b2afa9a0c472ebf73119d3fd55cde08974bdf
MD5 f2d0b2979538708d996e47a4dee4e6c6
BLAKE2b-256 2b90e3e08980f6263f6439335fcbcb8ebbeb0c224d9487086c0d0207d29481bc

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a9e864ec051a58fdb6bb2e6da03942adb20273897bc70067aee283e62bbac4d
MD5 a1b4b20a32111d4db851caf80144bc12
BLAKE2b-256 a7958fb6fdeea12a56e74e4fa457da228dcf5dd31c95c398918bee978d49a5a2

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d230fddc60caced271cc038e43e6fb8f4dd6b2dbaa44ac9763f2d76d05b0365a
MD5 1808108d0a5919cdbd2b7b47c8109497
BLAKE2b-256 fbb62d4746e7715664fcb0337167a651f6e9da133e60dd745f547e6625f935e1

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5c330cb125983c5d380fef4a4155248a276297c86d64625fdaf500157e1981c
MD5 23eaa806d49d9aeea58e8ec2754c66b4
BLAKE2b-256 88cb9df44ee8aaee150d31de72f88df63bc028134bca1bab51da1c06e8ddf611

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 576d48e1e45c211e99fc02655ade65c32a75d3e383ccfd98ce59cece133ed02c
MD5 afb83611e2ac60998b04d52cc1483d63
BLAKE2b-256 8c514199b1fd9bb513cde2844766ec655c51f2ca830e1bc18f2c4118b5945932

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db0589e0bf41ff6ce284ab045ca89f27be1adf19e7bce26c2e7de6739a70c18b
MD5 f7e290e988faa92013f96c08d99d8bef
BLAKE2b-256 2be2bd01b139c4272fdbb7c4a101c2958903712302920fa71796885a03d6d0fa

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 36ff30385fb9fb3ac23a28bffdd4a230a5229ed5b15704b708b7c84bfb7fce51
MD5 c5f2cab11d364a6c5527e7001d3300a7
BLAKE2b-256 199965c5009c16f11a9abfd8682d4e3ec6283e14c70c9b50b5bd5ca67bc7cece

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3bc561c183684636c0099f9c3fbab8c1671841942edbce784bb01b4707d17924
MD5 5159f940c7c243267b7fb1ae5f6a4e0b
BLAKE2b-256 f488677e86159dcc4eb15a0553f08d99dec2d62c535e769aa42145a23e96eb36

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-none-win32.whl.

File metadata

  • Download URL: rpds_py-0.10.4-cp311-none-win32.whl
  • Upload date:
  • Size: 175.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for rpds_py-0.10.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e3f9c9e5dd8eba4768e15f19044e1b5e216929a43a54b4ab329e103aed9f3eda
MD5 aa5513558c7b25e41631ee485dabbbe4
BLAKE2b-256 f066963685116fabb1d3a9f2ced1b5d668fff4ee855257eb93ef63ce469ce86c

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 628fbb8be71a103499d10b189af7764996ab2634ed7b44b423f1e19901606e0e
MD5 80051e4e8a4f76c7e865de85f6687dda
BLAKE2b-256 233cd302743864fd8c698539764416bd6f2633e423f609dd4f2624618a2824b1

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec001689402b9104700b50a005c2d3d0218eae90eaa8bdbbd776fe78fe8a74b7
MD5 481dd38ca2dd42d622895f95a0cb3fa8
BLAKE2b-256 49a20b45669a1ac18678da2f3f48d3ae7e9818be8196c307384289dad16684b1

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc688a59c100f038fa9fec9e4ab457c2e2d1fca350fe7ea395016666f0d0a2dc
MD5 3fda806a0415aa5c680bb4dff3092c4a
BLAKE2b-256 b7aa43a9dfc6a68c31e534c7143260a55c3ad8c8d7e589d9abd3a042f464ce6b

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 927e3461dae0c09b1f2e0066e50c1a9204f8a64a3060f596e9a6742d3b307785
MD5 be0d679e3f5a077a6977890528ba2538
BLAKE2b-256 424ab1f0b4e9243c60156813cfc9e0a103d40f59f5b8c6eedd1739952b554191

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e0e2e01c5f61ddf47e3ed2d1fe1c9136e780ca6222d57a2517b9b02afd4710c
MD5 daab6d694777d522e9a2dfbaee2707c8
BLAKE2b-256 078573056396963e42121c9f6dc5be599dd37556272b23b066c3ee0aa6239933

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28b4942ec7d9d6114c1e08cace0157db92ef674636a38093cab779ace5742d3a
MD5 310be538c84882ff536af2054a1a5c96
BLAKE2b-256 a671866b37f1979d23b6ebc02cd012220830b83385885d60c1308403b5f7d286

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b953d11b544ca5f2705bb77b177d8e17ab1bfd69e0fd99790a11549d2302258c
MD5 526b12c0d3c25e1eeef588394d64e224
BLAKE2b-256 988158d5ab85bc5c8470deead6f5d16b50dfcc4273f5a5a15bd58e00712221d4

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f40413d2859737ce6d95c29ce2dde0ef7cdc3063b5830ae4342fef5922c3bba7
MD5 2e47b2d7a29f2eea1cfae6477756a5c0
BLAKE2b-256 82912de6f53c3420bfd91e54d8b02ef9c557171b01ce1cedbdb3f4069c5100db

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e69bbe0ede8f7fe2616e779421bbdb37f025c802335a90f6416e4d98b368a37
MD5 4f2d9bcbe4b96b477c6a2833774321ca
BLAKE2b-256 7c0204f097d44d25b17506f545ef2d0138011995cf95f5bea57b79f9db149921

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3650eae998dc718960e90120eb45d42bd57b18b21b10cb9ee05f91bff2345d48
MD5 72c9a377cb9112e0ce1e1580afcbb225
BLAKE2b-256 04c76860a6f0e0530b4b674be7e3fdf048814ea8d2d7862f06c72d3d1ae979d0

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 72e9b1e92830c876cd49565d8404e4dcc9928302d348ea2517bc3f9e3a873a2a
MD5 e5ede4b6ca74767ac56fe042a5746533
BLAKE2b-256 f390e6663f327f972d8c85038a3be679265790548e70be38f7e1e354dd555049

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9f9184744fb800c9f28e155a5896ecb54816296ee79d5d1978be6a2ae60f53c4
MD5 d3023ef7356ace0348ee9d2e4da96e1b
BLAKE2b-256 d2683e70f9fc0b13db6ebf14c2145bc706406336e12b4af0ead2203a1c9ed4aa

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-none-win32.whl.

File metadata

  • Download URL: rpds_py-0.10.4-cp310-none-win32.whl
  • Upload date:
  • Size: 175.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for rpds_py-0.10.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8f90fc6dd505867514c8b8ef68a712dc0be90031a773c1ae2ad469f04062daef
MD5 45f89fb4594ba40257958750cfefe23d
BLAKE2b-256 71b9544f18bd384ae3d0150d2f450d2cec4ad227736a297b8dce860ec346bc1e

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86e8d6ff15fa7a9590c0addaf3ce52fb58bda4299cab2c2d0afa404db6848dab
MD5 7d2a27deeeb7f8a3011aff924426b8c7
BLAKE2b-256 e5163c202763a9d0b71e14ef394325ae18acbb14db9146137c5f4b5cccd712d7

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efffa359cc69840c8793f0c05a7b663de6afa7b9078fa6c80309ee38b9db677d
MD5 f2bb39adc414c96659c5c1802b8be86c
BLAKE2b-256 2a5ab68b0caa9e2cf88e1949f5ffaf2a184473403a99d7cc599037d96410ff3c

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3331a3684192659fa1090bf2b448db928152fcba08222e58106f44758ef25f7
MD5 7fcbc06274ff963a913d9fc94a13511e
BLAKE2b-256 d720d14606bfabd76b5ba4135a7aa801bab8e882833b75d62e3b84d395e1b3c7

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c27942722cd5039bbf5098c7e21935a96243fed00ea11a9589f3c6c6424bd84
MD5 550eaa42ba197dfcff73b0ceec31ce3a
BLAKE2b-256 a666e719b76b282f6779c73f728f96cd2698793828c21fa60c753b07e05df715

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7ea49ddf51d5ec0c3cbd95190dd15e077a3153c8d4b22a33da43b5dd2b3c640
MD5 c71bd4ce23887b41e6ca4216782cf58a
BLAKE2b-256 52a0262dfe7f7b48ebeca30134c073535c5abecacc6d9be3c72be19ecf29f94d

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f92d2372ec992c82fd7c74aa21e2a1910b3dcdc6a7e6392919a138f21d528a3
MD5 a772634b556d7577031ef496b4a6c73f
BLAKE2b-256 294d9a9806976654b12ed3e758136912973554e1b02f2f8f78511c4ff20fa89a

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c31ecfc53ac03dad4928a1712f3a2893008bfba1b3cde49e1c14ff67faae2290
MD5 d2266053b64d83793aa9b2da53a99c8c
BLAKE2b-256 210c21e2357792c3cc5ca127a90fff26674a067d67eb9d6e978b650b4012e362

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5db93f9017b384a4f194e1d89e1ce82d0a41b1fafdbbd3e0c8912baf13f2950f
MD5 1e976717d14454e6f92cd58cb5308073
BLAKE2b-256 6a7135299bd6532c7d10da30cbaf6b0321f8b5fbaadfb613ab0fb0797d8a6e78

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08f07150c8ebbdbce1d2d51b8e9f4d588749a2af6a98035485ebe45c7ad9394e
MD5 920df812f81122f0100c725c9278f2ae
BLAKE2b-256 02461bf91acec380ef7683b93370ce1388cc7d7324a58fcf3b80a138196fbfb4

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9d8884d58ea8801e5906a491ab34af975091af76d1a389173db491ee7e316bb
MD5 42010b63bec007206206b7c62accd4e8
BLAKE2b-256 b0fe7f0a920a41469c350aa77386c47955371c5b475dcbbf211d6f0365a0a1fe

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e41824343c2c129599645373992b1ce17720bb8a514f04ff9567031e1c26951e
MD5 d3896c55da7e93df26244b2c9d8a5ab2
BLAKE2b-256 8063f2c05eebe3b40074de988379f082d6a7bca52c2c884e67f21f5c35d7cace

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7c7ca791bedda059e5195cf7c6b77384657a51429357cdd23e64ac1d4973d6dc
MD5 5c69ddb7db1fce3d04e6f5b0ac7a0e20
BLAKE2b-256 19b7b710334a21a9dec3bf86ae06bbe2da5798c6ba0ebf86cb6464f141737d0f

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-none-win32.whl.

File metadata

  • Download URL: rpds_py-0.10.4-cp39-none-win32.whl
  • Upload date:
  • Size: 176.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for rpds_py-0.10.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2f2ac8bb01f705c5caaa7fe77ffd9b03f92f1b5061b94228f6ea5eaa0fca68ad
MD5 5b645d6fca5dab369c3fa10660c10636
BLAKE2b-256 6ed24cc48f52606128568610b584d0654b45a321be949947fc51227bce267bef

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e791e3d13b14d0a7921804d0efe4d7bd15508bbcf8cb7a0c1ee1a27319a5f033
MD5 46f1e33861cfd288c0c27998ed677bd5
BLAKE2b-256 65a581945feba8b589208ab0fecbcbe7c5b0ed7748c965fe1413cacba5dcfef1

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffd539d213c1ea2989ab92a5b9371ae7159c8c03cf2bcb9f2f594752f755ecd3
MD5 398e7764a2c2dfdf1c9b31993b0883b5
BLAKE2b-256 6caddb83395f7cd9b2dadec6589a5160d19f36bfcaac7877cde17369af18e285

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5dba1c11e089b526379e74f6c636202e4c5bad9a48c7416502b8a5b0d026c91
MD5 182b2c6695cbc2c41b33ae7c5e7c42dd
BLAKE2b-256 16f941aeeada3bace22197b5edb4b30c05251841c1613d270acee6e6181e8961

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc20dadb102140dff63529e08ce6f9745dbd36e673ebb2b1c4a63e134bca81c2
MD5 00dd90b94fbd535465e8df9155ca1268
BLAKE2b-256 afb3b5da804cb8452aceb4c15700079f84bbcc369a61b60f79a4907db0d037fb

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8709eb4ab477c533b7d0a76cd3065d7d95c9e25e6b9f6e27caeeb8c63e8799c9
MD5 8115b1aba13588f3ec1ba9ff6e0327c8
BLAKE2b-256 110cc66a2bbfced9f20302f0134c852562e4a6532f6570cff188bf20d5870b70

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f050ceffd8c730c1619a16bbf0b9cd037dcdb94b54710928ba38c7bde67e4a4
MD5 a2fa389ed77a79c6b54beae30b4de593
BLAKE2b-256 414dfb19fed5b6e8f7f1b13b101220a9d5e9cb4a1afa614a956c4a26c9d7cac5

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf032367f921201deaecf221d4cc895ea84b3decf50a9c73ee106f961885a0ad
MD5 c0667450a3fd0eb519cb774abe546f8b
BLAKE2b-256 e2b9dbd8eee204b28ac3b6c4fed4d59fcea591d8b248f634df50c931e53e68ae

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0f1d336786cb62613c72c00578c98e5bb8cd57b49c5bae5d4ab906ca7872f98
MD5 4ade97280a64b1577f9bb5119d942e53
BLAKE2b-256 bfb1a8b0cb1bab6133ed9b882d8e012969a8e67e36d356a8ced095ac44526ef8

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd7da2adc721ccf19ac7ec86cae3a4fcaba03d9c477d5bd64ded6e9bb817bf3f
MD5 cecf9ff419b8fa0acfb6596cf686159f
BLAKE2b-256 08f6d215533eaa2b5f10f80a496baad30ffd10636107e2bf9eaac27cb0b0a646

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2603e084054351cc65097da326570102c4c5bd07426ba8471ceaefdb0b642cc9
MD5 269df0d00c8f13e5100bfb78103b268e
BLAKE2b-256 5a8e6e4479ae6a1f96eb32fefd518b035222e9087f12768428f0d3cafcde6176

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3507c459767cf24c11e9520e2a37c89674266abe8e65453e5cb66398aa47ee7b
MD5 34d0f5dd520f797b6b18128ceac14d49
BLAKE2b-256 9d1468876e0b78b35d8737ec32f212d09f3712c972c9e94100124321268b5d3f

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 aa45cc71bf23a3181b8aa62466b5a2b7b7fb90fdc01df67ca433cd4fce7ec94d
MD5 5de1dd275241c88c13bd91b62d2a485d
BLAKE2b-256 47e14505a5c7ebd9d8ae047caa6d01e6428bee7310f88d177bdf3ef85a2f4b84

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-none-win32.whl.

File metadata

  • Download URL: rpds_py-0.10.4-cp38-none-win32.whl
  • Upload date:
  • Size: 176.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for rpds_py-0.10.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 049098dabfe705e9638c55a3321137a821399c50940041a6fcce267a22c70db2
MD5 d638e48404d5f0ddb689a198e563bd7f
BLAKE2b-256 d943dc8acdd837be79498e1e49447ace68533af3e3a0d6195cb3805a38c7444e

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 255a23bded80605e9f3997753e3a4b89c9aec9efb07ec036b1ca81440efcc1a9
MD5 4022dc6ffe72451c087303aaff13064f
BLAKE2b-256 d027394c9cb2017587662b60694e9c2cac5addcbe69f7069a54b9c929678d71e

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d37f27ad80f742ef82796af3fe091888864958ad0bc8bab03da1830fa00c6004
MD5 2809c44bdcffb0e4897d8863787edbc1
BLAKE2b-256 264646f712a1f93e78f1753166948263e4760d109ef2dd8e531096d47a44e905

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3628815fd170a64624001bfb4e28946fd515bd672e68a1902d9e0290186eaf3
MD5 8fb2410729fbebe5aa328b42a6b789db
BLAKE2b-256 f5477ffda605ecd920c2ddea75c60ed47f1297bc2f0ad896cf549f98e877a0be

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28e29dac59df890972f73c511948072897f512974714a803fe793635b80ff8c7
MD5 3751971dc95975dd4fe66413db1d7e4b
BLAKE2b-256 0b6388cbcc144b225d93fbcfd309bc0ae7bca38f3344ec00e3505bf4a10bd10e

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6090ba604ea06b525a231450ae5d343917a393cbf50423900dea968daf61d16f
MD5 f48547e46216a447aaa8401d8012e40c
BLAKE2b-256 53d6223bff27e6af9e1114b51b29ae539599ed8c2b2d58041a6b309257aa8e33

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40f6e53461b19ddbb3354fe5bcf3d50d4333604ae4bf25b478333d83ca68002c
MD5 c2b107c40c490467bd429c2e3ff9be97
BLAKE2b-256 e418d649d19fdb5471679b95261806df70172221e3d92d8814acbd090ef3833d

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 362faeae52dc6ccc50c0b6a01fa2ec0830bb61c292033f3749a46040b876f4ba
MD5 5a084a3c8a2280700d7656dc61948217
BLAKE2b-256 98828d9431fe95fb21336f843d1aedfacdc8f24059ff307e889c3ac75d3f92cd

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2573ec23ad3a59dd2bc622befac845695972f3f2d08dc1a4405d017d20a6c225
MD5 b487b858a4cbf4ef4698958df049b455
BLAKE2b-256 abfc66213002e10f7621d8f603757f64ad64b367355f7d669a5e62d886f35d0b

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f82abb5c5b83dc30e96be99ce76239a030b62a73a13c64410e429660a5602bfd
MD5 a6b1c9cf8cee22ff62c9f2c74bc38745
BLAKE2b-256 f99d4d203aeb105227eb53c932d5c3d23a240a0203b80159c01307a5e4af8d77

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd37ab9a24021821b715478357af1cf369d5a42ac7405e83e5822be00732f463
MD5 3377619b7d91cbc82b87d40e6930d12c
BLAKE2b-256 35517ad6a58bec657b58145934b9c3798eecd0cd9207bdb3fb3ab1f3cc32f2f6

See more details on using hashes here.

File details

Details for the file rpds_py-0.10.4-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.10.4-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6c5ca3eb817fb54bfd066740b64a2b31536eb8fe0b183dc35b09a7bd628ed680
MD5 f864963888c01967798a484633ac02de
BLAKE2b-256 70a102c9ccfbab1635ecfa114e8ff7e5083176e635fe2497175acb88d4d215eb

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