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

Uploaded Source

Built Distributions

rpds_py-0.10.5-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.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.10.5-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.5-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.5-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.5-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.5-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.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.10.5-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.5-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.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.10.5-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.5-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.5-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.5-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.5-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.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.10.5-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (333.4 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

rpds_py-0.10.5-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.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.10.5-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.5-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.5-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.5-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.5-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.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.10.5-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (333.7 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

rpds_py-0.10.5-cp312-none-win_amd64.whl (185.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

rpds_py-0.10.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

rpds_py-0.10.5-cp312-cp312-macosx_10_7_x86_64.whl (331.3 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.10.5-cp311-none-win32.whl (175.7 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.10.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.10.5-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.5-cp310-none-win_amd64.whl (186.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.10.5-cp310-none-win32.whl (175.7 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.10.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.10.5-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.5-cp39-none-win_amd64.whl (186.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.10.5-cp39-none-win32.whl (176.6 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.10.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rpds_py-0.10.5-cp39-cp39-macosx_11_0_arm64.whl (323.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rpds_py-0.10.5-cp39-cp39-macosx_10_7_x86_64.whl (333.2 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.10.5-cp38-none-win32.whl (176.1 kB view details)

Uploaded CPython 3.8 Windows x86

rpds_py-0.10.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

rpds_py-0.10.5-cp38-cp38-macosx_10_7_x86_64.whl (333.3 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: rpds_py-0.10.5.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.5.tar.gz
Algorithm Hash digest
SHA256 0271cf5a15a2a3347919f478fee821629c3fbc722cccdea066149e6737406720
MD5 aea804ef9110ca0d8b2f0dbb1c8e2c06
BLAKE2b-256 6708d09a6bcb11878cb9e035e93c83b99f1deb9ac48f81aeff75e182415dafdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da39b5757ab6f10f0c0938d0137d1ebebba77987a94532510981a2c0238d7bc2
MD5 e5fcb6246514bd918f36d262adfa6d44
BLAKE2b-256 d9d2ab152d05c13b55b5a2a0a0f7f14bf322539275ef54bab8cc5dc6de3d584f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e408981f7d69079b321df3a44398dfc90defbfbd6544b22378a0c0b5d7694694
MD5 40ec15fee02afdee261a583f14a0bb16
BLAKE2b-256 a1c7515b0009f0dd9a5c5aebdf83497ddc8358bfb49c737b9237e0cb7a4b309c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0726a1216cd42b60ef511ef5a16abd6d370c044ede567bdca2ce03908e5505ae
MD5 1363a6e2c7153791f58a665dc0518f5f
BLAKE2b-256 123120a708a648558e394281e046c98157aed09d4c17fb5026e8d2a541de9f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6508c2c96886119ecfe82db8906c595e8aa3f356b95b9da32561f749327ad6b3
MD5 a8b3e629a20160a00c435626954339b7
BLAKE2b-256 c951d4c04254d72f681416592b720498f5a0dc784756df9158ed8ca36a3440e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60be57d0a4e84239206631aecafc5ad74ff1e9394bddfbb1b231df6115c3e3d7
MD5 1d5983716895e799241979255930bf60
BLAKE2b-256 966ae1ad841d2edcf0bc7af824d2a55262abf08a536c844e554a9e2980b2a5b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 446bffbaebf5798c6a7737d18d28f662441feb78bd1276b6f525c21223dee36f
MD5 0059a31c2285b2a753c0391d27c624a3
BLAKE2b-256 1ccb91e50d4cf40e69600257f5c0a6d995e5423d2ca267938f15bb9f941efaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1579515946ae6ef10692ad751f33fc89ea6911fc68a52455717fac251849844f
MD5 8d4727f49f4e2e5c9f288b16e992de72
BLAKE2b-256 194e05b6cc72da437a1d0835f7a67093f215149f2527c4445b56291a6fc19862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 708915238f27f97b156d6048752baf63356fdc576202c1ebf20465542bf06237
MD5 6d1506e32c88a3288b5f6c3584c2a4c9
BLAKE2b-256 c5519878c2cf268f2e482c31f25f7927d80194ef2adfce06f9d21b4b9fd0b139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1e42749a3f4dedd4296d7a3160b9e421914d5eadbff518d81b6429122d51e7a
MD5 edb575d275764ca515d47acef1c1ce5b
BLAKE2b-256 b0b6549f7c309e7fbde20630777e938932673ad2f713d12482fb837e753cf161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c5e5cc903e3a87983197ba8d05ea5b1b4293be92865828454efa143c584b937
MD5 134930a954547173b1f0da2cea48dd68
BLAKE2b-256 389743ea8b8d58ac2216f74d779ce3df351ad036fb402003b25a465ec2bd74af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 534447a97121f2bb9a2287cc136dede40a0cbfe16cf1268de7e2cffc32349a11
MD5 457d9a71bed1416e412390dbf44f8650
BLAKE2b-256 04c9023f373bc7b36028bbff6535239157e84398c28a1a792e6aab457dc86e64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55fccb0bdd957d1315d7c812ebb8ef4b3275db02a3cf8c80f5c00b59936dc661
MD5 06c47b93ce3d23d6b646a983d14fd3c1
BLAKE2b-256 5c43d8203a366899bdc380174d676a7338ccf38a49621a059bb22c81ec92ffa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c21b53d477974692935ad172147a474d03ef1c8ddc8e4eaf884cfba019bb087
MD5 e502740bd746185c384feaaf36645565
BLAKE2b-256 1ac11d55093708e6a00ed421cb18a280ca647fff4cbe244679cb65955104c234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a66dfef17b695579076fe64e60f896025cfca5222d136fd2b010ef858904fce
MD5 bd56a75ea6b1b1b50dc61f2919ee8ffc
BLAKE2b-256 c0de793dfc493d1ad8eb273a6c2cd70e84f53680bda777a49d604193a85f3615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d374e5ff38b3c4ad3461d8893f6ad3b6069f0367c1317473dd5bb9f88267674
MD5 9b114d4503736c852f8dbf6d757b1045
BLAKE2b-256 78fe3d26c5f10a2515e7d2a42a980941e50a1569da6651fcecdde5ef5b9730ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4f0ace847074387f784e1365f6abb22652d2d15c0ef26c3e0b81ac3117c4474
MD5 833c6e5f730d0a640de7a996434009ce
BLAKE2b-256 9af2465118e5190a30402d72a57b2e409174cecf835f49847ce984de0785d322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b545420e573364931a90d354fc3cd95111c3cc0af14b2190556521912a29ef37
MD5 9198bde2523eb4accacfd5486bd36493
BLAKE2b-256 729f193fcfa035e848f5f0e51fdee0eda831c423f8ab83b160aa725d231c6ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62fd9c438ab65ae19a3f595992eb50515c00ea7c6deff7f7e461f6fec479ca81
MD5 23fc71b1191fda53c9fcc6def6b5082a
BLAKE2b-256 d08ce6a8d0ba0f15c6a2c672dd5dccb1f1ea0e078ed6cde653aa121f09ecda37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b652a17961dd1b0937b5d1360df9233e87ebcb607c34d31324f550513a6cf16a
MD5 47697514dc2103e92e2d687499464668
BLAKE2b-256 7895c4c71aa68c7efb6149f9470b9e9e22fc5167bb8029d7db8b0050504c20f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50630a573028b363ac25517f05ca7f8ad1965790f9723e9468882a9e66075875
MD5 5a97a2d6cc9b1c9d3d42519cf50d9b3a
BLAKE2b-256 d930302e607b32541afe49cf751741a65154259cef4da33fb4fed322061b775d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af6d55214356d2543308020b211396d476b84b2cdbc76f7e20ba77eb93b558dc
MD5 1b7e474cb6babf710c535afe9c2becda
BLAKE2b-256 c680578ef74953a2145bc5d3cfca5e8240b1f5d77706e2c35ec9532b25aa3505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8ad48544440d056c468c7b463dd2b6caaf9903c9dec703c5b558e1fb188c3f11
MD5 53db84586746323ef0586638db3788d1
BLAKE2b-256 5274b6880e60b93424da2feaea6736c47fdf94e0dc3b4fb1e9c42ed6eafb0256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5ce663c6455bf0c0b6876cc199df120769c22b830482a1473cc9a72edd89ae3
MD5 34668da9eeb917d3377891ab8ffffa5e
BLAKE2b-256 c25368c5ae687d41e657c287b7b96532daeff0ff08e92b20969ff65f18a4eb93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba682224af046fa8cc1f2e95d0fc5fe57f4692e1758d12f995b26b7f13277f4d
MD5 8c2ca9829f3aefd6437b5e0f880b55c5
BLAKE2b-256 331fcf40128e51b805b375b4bc54992c7a6cbd9497a3c82f1285e22c2f8283e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce2c9a0ad5bc7133e3c9863db01b27fe32073401128a78206859c73cabc0c8b8
MD5 243a29ffe82cd9d104c162e0d5bc757c
BLAKE2b-256 beb35af48f74174c6eda8bd7481771c857c00aa7199c42b6aff73b80470ba0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37ad1ac57f561263afb0e3e7b29e35ba0595eb276139cc158be9896649fe99c7
MD5 365c2542cb883c9ac198244dc8d9eef4
BLAKE2b-256 ddd3eeda41031aaa5a789215d91ffa869e446c1e96de191ec60aa98176f6a38f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb51fea3a7438c41c6a74d2efad5e29f4dca6de2b1edb4f41bdc378b69852af8
MD5 b19af2441b6929b6a60a1bf7e66992ad
BLAKE2b-256 81518f480adaf99d79033a8f09311a4f2b49eee9aaf58097e481c1b37830764b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b87a47dda6b0efb45f41c26ab1b7620c511e5479214f5cf819b6516c7842315f
MD5 80bb5349bbac69a7789d719517b4a19e
BLAKE2b-256 6f2d1695a3508650bb114b192cfdaacecccca3bee643df084a27ff4e1a1d5643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5eed9d354afce96c561b898dd1cd4ae1c0f7366e80a40ef84dfe9bf7e67acd4e
MD5 73a8ae4e9774eaec5b1864b942450a5a
BLAKE2b-256 43ddfa01bb584ae11d82f7969bb7f39f43d9d36749442a532453d1c424103002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 364000d3ae0e93e6382deda086f54f4f4cee9857a4d4b5c2a826098eb8046a5f
MD5 6cbe6e398a287692f04369b0ea93b890
BLAKE2b-256 6e6a20a7baa91e6b2953cf08953baabce3edb2cdde2ea8a18b523fb4a5dfdd85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fbd36f75ea01a0b589c1fb9424619ab0fe9ebbdbde78e1c0bc327a09daabb583
MD5 df1b91e85197804e3d0fe0b7c29ac5fd
BLAKE2b-256 3882a8c8b4e3b4df03c875cf14407508e164cbe4fb9971c76305d88189e9c69a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67a3d0901bd12adf63803e13426f417648f30fb118d1c24f04da81208793aa3a
MD5 82bb01a6d7d9306c4db5a6b42269155e
BLAKE2b-256 2919c5a9c149d195973114d4b5f64cc329c002c1cd3f01269e908309c6068e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a69c57677db4f6cae15cdfeaf67857d269afb3bc22410e3e513271175173117a
MD5 56a86ef3f038378a52e27f178dbcd947
BLAKE2b-256 2ec1892a3ce849ecba321f470ae99636ee101c13346460953abb855260fe0ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0b40d9bfc624c19bd02cf7684a80b93491c06448b7280d038af9e97311f17774
MD5 7973560a6678b3376d0c76b9c50fcae2
BLAKE2b-256 7f671588033a88db2cc860dd25a6ea3b3171f8bd8c10f413a803dd77feca5dca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.10.5-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.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7b1aaac1a232513896946189c79cb5b34b49ee4833b6ce2c810af4ed45c94b67
MD5 0900bd11e5c911d413da5d5d476b41e9
BLAKE2b-256 8af0a7395e62e0b3ece2e0298284cef4fa7ca2c4fe6bf01df65c5376c8b4bd45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71e7b2ea63b5d5de8d6c946f8abb247c9fa28569afc89c3f16c9ff15e73a4a93
MD5 d43319335a915db72979124d541ba4cb
BLAKE2b-256 045ec6bd266f8fc5905ef5dd195750cb70fb8d05d0acb815d2e05cdbc57d893f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a195c9fde2a944c243a3316a1faca79eb9e89ca13f7b064eee5772d33765fbe5
MD5 edd56befa46faee4bea2828c8cbc1bd2
BLAKE2b-256 f06acea0069d27abf6bce356112fe5d6bd66c4627bb594337b01ffd987d278a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 213e18ea6a402ff981595a7c8882ac4cc91d646d0b7ecb839e2cd9d29eab1913
MD5 c7c859207380ad435c6721a9d6ce1878
BLAKE2b-256 1df7f6f7552e4eca8e413761c297ebfb110d2e4c0af387e9398d084085db521b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 812acce2a1d11da2e9e2be88259d193777fec31d1106691ee8bade8a8337bdc4
MD5 6050d3f32de29de6265db4f3e6ebd340
BLAKE2b-256 cc57a81ee0e797d729e4ccbefe76b2bc3ea45ae092e66f8115a20a7dc56f2993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa7e75a965ca11545ee0ede176d4e64f2c5cbd83838af6231b8bafbec7fdc148
MD5 af05361199d1eedb33f47105f7cb62ad
BLAKE2b-256 6df13a7b12b72edcecce3630e1e1f83428069f35250ef41d89add0cd4d1d6814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfdaa92ba43ac483c7dd81179c4f707bafc90ff6eb4fd0cc2fba3e17b0105d3e
MD5 2a8311a01fa12a3481359a70ff8c9000
BLAKE2b-256 f8a5eb3b1468f6e1fa09bdd6b38df9ee868ebe602bd1e7ff830185dca97f7a95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25666280a89d3619e83d41406304ed050c30f3460aa42341824f11640af3a2df
MD5 670e76797e9d2873d16d72387493d17a
BLAKE2b-256 b88c9492f5ba382955e1c5d9fe0918156021d7b52deabba4620c9de8ed526aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4957465d6d7c330bb19d8a5bf47e744f15fe3d6cac27ac791bb938b14eed1a88
MD5 2b1fa0c2f699fd36f5cb730169b0df35
BLAKE2b-256 1b14e7b46bbf9bef156a819ed0d0b119ff2ca99fdd5f08fd7a07c2b286c45dc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79a3915faa90301a3f40d6f781ec957d5affa3efa019b556624c3299c9b04004
MD5 49b078ab58165f3500311dfd0c90d3c8
BLAKE2b-256 e59fb3eb8d9e7766029c4f260adfc57b7e697c2877eb0b5b66fa1de7eeb11206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a4c0dd8299f9c9f35089d689495a709623d47865cd2fd29726c48e30f2c5309
MD5 bed2d5f9e235a035f825dfdf5b50e0dd
BLAKE2b-256 e4a8da3be664cd2067050fadf8584af0c948359545efa157bfc1f334ad07aece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 91de28c8993b880b1b4680cf4e0afacfbda565c3f0ad184960699a16c0614dab
MD5 7ec6df0611074aa1b9e907133201a3ca
BLAKE2b-256 d7f7c60b73d264d7d28c33115ec5edb0c01391f310fbf22bc46692b06f5392ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 fa05b0fd834c084991051e3433e96eeef105f944c7dbf9b95a2fcb9a7c3ece6e
MD5 970e1b8a671554819cc21903e94b1519
BLAKE2b-256 50c060183ee8d2028dbc1f6c66c7f02a5d2fc654c01b04ad3e347f24afd52291

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.10.5-cp311-none-win32.whl
  • Upload date:
  • Size: 175.7 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.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 36fe7a1ad586098c6c9b968c2f90c256580fe20ca149b4750127d3171e5e271e
MD5 84cbd7f5e43e3b93874ba7a850568f4d
BLAKE2b-256 91bea6a4ff09a2e30f10936d41463fcbba115e171bb214a77bfd8ffe1f7af952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee10f573abc9a138f774ef8fb013e2da098c79d84abb3ca88a700bcc4054d938
MD5 8482fe7d725b4c5e2ab9530a68c14057
BLAKE2b-256 674a7d10f188b860d71467d12a1586cfbaf354c57894ccbfda2edecc55f47525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dc511d53b77de4569b03a615cc22d8f67587b2f8db4baedb3019d7c97d63a6e
MD5 953cb85f24caa20a0ae29131f02d3183
BLAKE2b-256 c54606ea98df806c20183229e7b969e7688cfcf1c5f6ec64e8ba78b06ddf2147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abe0824ae3f7bd45ad56a4c7d8f616f2797ef0658af2fae31362c692280bff1c
MD5 a85f8a3e696f025251406dedc96e5c26
BLAKE2b-256 dfb24eb77ec1b816ca2d8ca4b57034c9361d0b1e806f71fe96ae27bed149c4e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07d175153d2c3cb418aadea3e924fb2c02809a3f61f5167ee70249771ab78878
MD5 91d7212256852e92aeca079ab9c2aee5
BLAKE2b-256 083697aaaa96cbe2312e5d64889b019b0c3dcc566fc54c5a69fb609b096f66fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec64060d0962b850e2ad1d2c845cc964bcc08de6f4d5af2b79e97dc41335d366
MD5 a6768dafacfdcd563512eef56ed4204e
BLAKE2b-256 b151d98f917d23124dbcf05ea2da7e4652832c42e9e08c4b66f6f2fc550e7bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 421d121f6870bdda642ea0c0de0ffd595958196543b7d39f7f7e302196442bdf
MD5 758e8fd09a80ccd0e939b1685d43b5c1
BLAKE2b-256 ff1bf55ca0a432e109d83eaf5efb7ebca2280e70c6a91ce7ca87b043a551c51e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6fc28c114bed4856efd66ada94ebe0e2793386a8e33f7be1798ff28670232f3
MD5 d391f2f43dd23535ee85c1aaa0f3657c
BLAKE2b-256 a8aaf3a0527686a78791b4d87f87d859fa1a30fc2745eb019bd6fda6327639e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08c2917b1aaaf4a5d2ab4f9136c3ede9f7e473b0a4328c52a58ce67d9aff7c7e
MD5 57e8b2d302a54e36e9aa17d2e3466320
BLAKE2b-256 f3e225d947bcd66bb88731b3d059860124eaa77207e078bccd10bf6b3046bb6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 19f5b3abf86ba647367d0af88acf874514168132a3435f306e85d78f359c8abd
MD5 fb5ee6f6d862ef807cd61db05789b518
BLAKE2b-256 260d425aa74d1da44a832f67c97f6c73f6f9b07953966cb579a47f351c18ec58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62a41040d2cfb1109d46386d4b6ff78d486dc07fdd452c0c18483716c2eb1cea
MD5 33c7d80007b859ea7f9191b4a8b47b8c
BLAKE2b-256 9a69fe4b7c6250e4bcaf64cc36ee689ee74c27170c1c9f9707f2c5ff46fee4f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 63da1c7974534699b3547bd621b748c2ebd9957dec6da7be5d16fadaabdc66c3
MD5 8426c56d33fe80fd898a7303b629c85d
BLAKE2b-256 903438d6ffbc028366b4007cfff54080186bb4ec786b301b3910486b8824da76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 923efce0bc449ee400aa005d72b12cc63457debbe48bbc72be972660ac659a37
MD5 17fc5ba5d621ce2ceb5c4b591999d8f4
BLAKE2b-256 f2bdf62eac8dacae5236db0b2581e5f0f32f922e7d3136192b3b8732656c4097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.10.5-cp310-none-win32.whl
  • Upload date:
  • Size: 175.7 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.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a28931b20ba59fff082f573f6247636d94a3138b3428ef013f254e15faf25cf4
MD5 0ed349a1059b4c45242c1ee8e2150a26
BLAKE2b-256 2526e44900c9d40a56e9b23c827188f1d0df646a712e6136d00bc3528f46315a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8f841c14a639ebccd25fa291e5d7718687a82962f6ee2d35d3b949496d82dd1
MD5 e75ec78283078e9ac5ca594e5bbf2bd9
BLAKE2b-256 d2952961f64bd276338ccdd06560efbd2fe9543a1cd6bf0bcbf0cef546e60414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83c5261f666e95c768b85967cb54963f461763fb9b279b28dda7792a37f078b7
MD5 9f3296e9ca09fac5f5d6126047b9e514
BLAKE2b-256 bd5a5a21c97987c53376aca0b4bda42d0a61bf0db32f84065f8146faac2612a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbfcac888166687c465149dafa248cf0347bc5931c639530129f8fe8b2992295
MD5 053ccb37568457f31c22e29ed852ee5e
BLAKE2b-256 f867e7dfbb2a1aa86cdb3126b9f82494caff1586bbc4cb271bb05d840ee58b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1b7c607ca178e3ac96a51c86f6f72ae18aba68652053d648c91f08af5bb430b
MD5 472aa40b2f595776838877e02482a8e7
BLAKE2b-256 4adf1c2dad6229df0c5ad528be9139696c6d408b65504927fd531423365b08c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e2591e31ffaf4e903c204c87bd84a30e43771877fcefb0f28e4cb8bb0ecb31d
MD5 4a0506a915486fad52bdabc027a05dcc
BLAKE2b-256 9ce26ce269f141488a9dc447c5378c81a057edbf4eb39598d708436d62ab4996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f2afe69dabc2ddeb460527214eaed6bdc4c541e4003f0a6c0b58806f33b4cfa
MD5 23ed0a3e73e22901f6a7d8da7fbac834
BLAKE2b-256 e9a906a0517ed2cee724c8527b9a29a8e1dda213efa17ebf5091d9b3eb3656a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ceefbb89c4c338f87b23082a07d7f423ab2758d888875f6bd35ba896396f34ff
MD5 e311165155a349fcc64141e2932551b0
BLAKE2b-256 3cbe8abe19335d79c0485de00d4a4f2836dd3502a4fa7a56a38f02e8b4069490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d653278f8dd9cc1ef4ad0b9168ec7a9813374ba2df3ecc67eb0793fcdab952bb
MD5 8039e6585f976a94fa863bdb1c994ff5
BLAKE2b-256 a11336dd34aef8d214ba43ef225a5487021a92dacc254966ef091afc2f8e60a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 550ac012812cbad8743609567b1354856b72570a37f4c57a01311973adc64a17
MD5 676da4024de4f1203df1a33578c46cee
BLAKE2b-256 2a09067cfbd9d07c4a903c223ac792b42df967569d16be29c57f3b7894675c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99b63311662337222b159f0ec7b416166b12059c9c2d98dae7a3844632af3c7f
MD5 5bce6e68640aa7eb9d1ec20607242913
BLAKE2b-256 77321eb34e7f6560ccbcc0092a459b30765bcb3515d7d99f90396c991f9dda98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 011ad6aaca9e01393c8e2877ecf81948243ceb9a62ad2f0311b0e7c49993df70
MD5 52118b4f5701faddfed667467c0adc41
BLAKE2b-256 172b99acb570f852cfe13d38080a8339c3ea2fb7ac2ec94b3c02e763339df734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e54b92a7f9ede586f38407a40f521049455a0f327a53bec91a0f7dab03fe4f3a
MD5 2fcaab3eadd9bf57ad8bff06b2a5d80d
BLAKE2b-256 6996de030cb76e73362b53bdca780d8998f304004c58734d66f4588b71e1773c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.10.5-cp39-none-win32.whl
  • Upload date:
  • Size: 176.6 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.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 932b4965563214ac0944afecd38b6be20fda370e1abf9dd776fd3bc9771b6e8c
MD5 54fa05a7f246ed621745eaa6c644eb6f
BLAKE2b-256 5b30a305f8945362f25fdd3ed0117d6475c04b47945e83c10ea8c2109ac2b59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 871693ebbf319b482771f874489acbf3d7543d7b8be3c02bae58aa4eb687c48f
MD5 28487a36dd14d687c53c95fd12d4a8d3
BLAKE2b-256 b607d6613fe42bcd76dbc7e6e23724728b9bcbaccf6a91dfc7c392dc514cd895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77ba541bb67aa2614929329fe5be549a8e4f949cc34ea978a51479c92827fb3e
MD5 b0c1784919489f6d11d71695a10313ee
BLAKE2b-256 618b88b52424c190c91661c45e4b523b397b62e56b6ef4a968b521ff29fe3b53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 240604a930ef0c2319580d884869a13340733d20818e9dfb122c099924421d92
MD5 894f851fa2cad31ef2bbc4dfaf2365d9
BLAKE2b-256 aceecb32e0053b7c37a9f27f5724c2fbd1f2ebb5b191b0baebb1afa210f98fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8485a355e6c97f0abde849bd7ddebd83bce4ac3d23e4ece3e879146d4eb9375a
MD5 1e5a4a5222001414e24943750b757fe2
BLAKE2b-256 944ea3da1a5bd8e27059f7aea6f7a54ec931db52e3692e356d4297b9d8c3c42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5d23825a8c42499b523729897c1d3c1b05bb4a7a42360f08e374fd96def1e64
MD5 9896cbeb118d4b6d6e8fdfdf71882684
BLAKE2b-256 40b2fb35970943042c44a10d287f8ec00828abf9f01ba9563a6266c8b21dfdbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8dfa4dd2a5adf1985b1f7792a21d746037d9ed82c1e6a1abb0b1025a217860e6
MD5 3a95520ec95a31d30e85b8b1249c435f
BLAKE2b-256 3d31653aa075184d695849429cc2ec45a76ee20ccbf6fc3787bddff6b7074e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ac194a45a3c96fc31e92491dc7b2e72729744db1292bdac7269d79ea763bfdc
MD5 9fc7239056270bee762e3a29d2e9907a
BLAKE2b-256 dd61f3b93695c4c161c63303937107d08fec0f7109e349dceadf7d98392afb52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bffae7ba30b093b7fa744936bbdf532682ef0ff4df22c182628adf1d508df2b
MD5 e3fbf229520f50175f7f1a83aa733406
BLAKE2b-256 61b94cfdefe75d0fa1f2bd1316f9250bed7f49639e78b30798abedd229f09958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0d884b6fdcdb66a54be4b17231cc0eb8eec2bc015db4cabe377b47b330dea0b
MD5 ebff6107fbe4a1ab75e80e25b057909a
BLAKE2b-256 c5a15559a3e4a0ab12b2837c1795b8ec68aae2198c71483858c4d2894e7f9492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 657f8996925eddd8251c14e45241e1afffd24f615b7fa89f0691372418c09d05
MD5 1857374a99aaa23e722da525cd0e84c3
BLAKE2b-256 4b463ba517bb66813257c5ea4ae589c2cca22405f5f9df0f31cd9d2c3104c9f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 242fd08b1bc846fef5c19dffb253c7f1e39f0df72ac5afa5207a29a79e907346
MD5 5f5a10384ded53284fefd48c3f627a9c
BLAKE2b-256 73156cc4b00b7baced98e941a5cf10f2f83830e9e903d7d89f1a0c086d542fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e6a2999693820de5c1cf9be44e1502363fcbc8699c68a2864848b0568da18ece
MD5 b7bb13e616665ca97c862ecf10e4989c
BLAKE2b-256 add614d502611452eff416922865aaee15abf2f08a54e746460c7ed30c5b970b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.10.5-cp38-none-win32.whl
  • Upload date:
  • Size: 176.1 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.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8553e344587b1e920f46d36e99ffa5d64501e2a2c690338353dc990b924c4fe8
MD5 a10d293151aa3de4c1d790bb6da3c705
BLAKE2b-256 69f9dfb82577ba569c021ef7f995a715c9299444d1c402fcf56a17be67b9c55b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cdef01204d3b4ebd230f8b997abe8a16f75a443478ae08a93900823b24208fc
MD5 6cc242e90a895d95f30c6e2045af8bcc
BLAKE2b-256 dfd817f24d0ec69cf9f1d69a14291a55423d2243fdf0dcb92f55e42a87290ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35b7ffaf49d4a99e5445b623bad17733a5b0e38a9ab20261bb56c64fa10440c1
MD5 4f42422c849b18dde801d6a8e415a131
BLAKE2b-256 c1470228d7eebcaf217c43b4904326dd18f79d31e7e9e11d9a5df9015db7003e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21967e8794b688f292fc62a7edff0a66852c977aebf991c09bfc17e4079ad7b2
MD5 083651b468b219f998d99f3ed8ec6d87
BLAKE2b-256 db1b8a2b9d4fff4428b21044779c7e7d50ebf4dfda95fd8bfe33c2c82220fef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4636ea85150908a47bc0d529fcb5abbb87ee3532c7e94083366221409b3de949
MD5 eaa2b3819ede6cfb1612acd13fe50965
BLAKE2b-256 33b809496b310971e742ac0602fad1714a7c191cbda7c28be002bfd037200a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d8d81042429a19cefb52fa25805189892c4bbdbe7a3e73a9af2e0669171f398
MD5 d809338c3b7678fa7f17c270d6518063
BLAKE2b-256 359ae8c01e0cf0fea0339793b2b0ec837a38be5a508834689704e7b311265d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e49bc1c6ad6c44f32fffe2136d908572b2a8bda7759e1ca7ac0dce9439b1a33
MD5 354167f0c2370a2eba4d239cda65076c
BLAKE2b-256 5df44f9835dac1be4621b2d49f740bd7281586d0dcc2d4f03037b10260a3f3aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94e1d0849764285fc314fab80fd72aea433ddef94154c929b918c0724e7fd2c9
MD5 99b27261de96113bcf31233f9f96f297
BLAKE2b-256 b49596cc9a6b7c846ccbfbb2bb736d307703cf7ab2f2c034f63e0526f3d67d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 446a8a3656375bfc2471870a9831b4e3e41ab7c2ba5262413571e48019239a4e
MD5 4e0e9bde8926fc7ed4b8017c2990b458
BLAKE2b-256 2eaaba31b5a55cbace618b7124a4627efdf37c6081a02344cb8f1b7d6e5aa71e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bd5727eac7dabeb1c10cab9a339b2559cd60e0894a0f291490c83285c951ff7
MD5 63f8199bd27a1dad819824e3e8bd7c59
BLAKE2b-256 333477f25bf46ae9f381a3f81496c70bf4aca09ae67beb711a750ed9e02380b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 863bf4b5b8e13e9c1f15dcaeba8fdef9c60b5050763351301f301998a488041c
MD5 2ce52db18771c026fe4713f3a97fcbc2
BLAKE2b-256 76cc02b9cd9a5a654fcdf92dcab2e14410f1eb029183354e73b9916ba5f2d9ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.10.5-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e89b512a8819b18f04d8798b67b555c3c554bc317845c763e3593c5a8df873a1
MD5 daf15eb0945293349c4ca0e3f62a5ad8
BLAKE2b-256 9b463152f53813ccb873c8751b38447e30cb627ae88f65277730de82542b4ff4

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