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

Uploaded Source

Built Distributions

rpds_py-0.21.0-pp310-pypy310_pp73-win_amd64.whl (219.6 kB view details)

Uploaded PyPy Windows x86-64

rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (529.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (550.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (546.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (370.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (362.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (384.0 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.21.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (319.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.21.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (328.3 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.21.0-pp39-pypy39_pp73-win_amd64.whl (219.9 kB view details)

Uploaded PyPy Windows x86-64

rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (528.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (550.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (546.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (370.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (362.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (383.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.21.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (319.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.21.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (328.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.21.0-cp313-none-win_amd64.whl (220.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

rpds_py-0.21.0-cp313-none-win32.whl (202.6 kB view details)

Uploaded CPython 3.13 Windows x86

rpds_py-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl (530.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

rpds_py-0.21.0-cp313-cp313-musllinux_1_2_i686.whl (554.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

rpds_py-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl (548.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

rpds_py-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (363.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

rpds_py-0.21.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (422.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

rpds_py-0.21.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

rpds_py-0.21.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (372.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

rpds_py-0.21.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (386.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

rpds_py-0.21.0-cp313-cp313-macosx_11_0_arm64.whl (320.2 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

rpds_py-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl (329.2 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

rpds_py-0.21.0-cp312-none-win_amd64.whl (220.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

rpds_py-0.21.0-cp312-none-win32.whl (203.1 kB view details)

Uploaded CPython 3.12 Windows x86

rpds_py-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl (530.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rpds_py-0.21.0-cp312-cp312-musllinux_1_2_i686.whl (554.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rpds_py-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl (549.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rpds_py-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rpds_py-0.21.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (422.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rpds_py-0.21.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rpds_py-0.21.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rpds_py-0.21.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (386.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

rpds_py-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl (329.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rpds_py-0.21.0-cp311-none-win_amd64.whl (218.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.21.0-cp311-none-win32.whl (201.0 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl (527.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rpds_py-0.21.0-cp311-cp311-musllinux_1_2_i686.whl (549.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rpds_py-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl (546.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rpds_py-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rpds_py-0.21.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rpds_py-0.21.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rpds_py-0.21.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rpds_py-0.21.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (382.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rpds_py-0.21.0-cp311-cp311-macosx_11_0_arm64.whl (318.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl (327.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rpds_py-0.21.0-cp310-none-win_amd64.whl (218.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.21.0-cp310-none-win32.whl (201.0 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl (528.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rpds_py-0.21.0-cp310-cp310-musllinux_1_2_i686.whl (549.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rpds_py-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl (546.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rpds_py-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rpds_py-0.21.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rpds_py-0.21.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rpds_py-0.21.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rpds_py-0.21.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (382.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rpds_py-0.21.0-cp310-cp310-macosx_11_0_arm64.whl (318.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl (327.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rpds_py-0.21.0-cp39-none-win_amd64.whl (218.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.21.0-cp39-none-win32.whl (200.5 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl (528.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rpds_py-0.21.0-cp39-cp39-musllinux_1_2_i686.whl (550.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rpds_py-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl (547.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rpds_py-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rpds_py-0.21.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (431.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rpds_py-0.21.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rpds_py-0.21.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (370.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rpds_py-0.21.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (383.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rpds_py-0.21.0-cp39-cp39-macosx_11_0_arm64.whl (318.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rpds_py-0.21.0-cp39-cp39-macosx_10_12_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: rpds_py-0.21.0.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rpds_py-0.21.0.tar.gz
Algorithm Hash digest
SHA256 ed6378c9d66d0de903763e7706383d60c33829581f0adff47b6535f1802fa6db
MD5 cfa74e8eb78ab2819d02ddd1b78541a6
BLAKE2b-256 2380afdf96daf9b27d61483ef05b38f282121db0e38f5fd4e89f40f5c86c2a4f

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3e30a69a706e8ea20444b98a49f386c17b26f860aa9245329bab0851ed100677
MD5 2c6d4f7b2aba5e3850e0e40624136b8c
BLAKE2b-256 66866f72984a284d720d84fba5ee7b0d1b0d320978b516497cbfd6e335e95a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af4a644bf890f56e41e74be7d34e9511e4954894d544ec6b8efe1e21a1a8da6c
MD5 0ea09e0d77c19f1359853ae11c3c9fbb
BLAKE2b-256 f454d93867e2bf4acf57314798181faf3bd7d1a4f51a3aa81cb6211d56f74d3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b766a9f57663396e4f34f5140b3595b233a7b146e94777b97a8413a1da1be18
MD5 ac61c21cd21d6a6fe805547eb55927d8
BLAKE2b-256 c0b803d4561095d4fbf2ab62ed651a2b5cb674fe5245b1ab2f7909e8056bd014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 241e6c125568493f553c3d0fdbb38c74babf54b45cef86439d4cd97ff8feb34d
MD5 0cb2482f619101f19540d89178cd8238
BLAKE2b-256 c916df4cfd1de216c25de24f8631f17380f8edee92201ec7810d1e2ba1dd9f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32eb88c30b6a4f0605508023b7141d043a79b14acb3b969aa0b4f99b25bc7d4a
MD5 0dcd90ced08230da294b7980bb333bfd
BLAKE2b-256 34467fae3500bc188df2feee09dd72df262b97d31e8e4bd2ff4a8be4e28bf1d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 faa5e8496c530f9c71f2b4e1c49758b06e5f4055e17144906245c99fa6d45356
MD5 6d4ab4f7289cebd22741cb826a9dd6fc
BLAKE2b-256 8f09f79cd575f503932f41138c4bec4c902eb3b71ea8570436688145cc77b8ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30bdc973f10d28e0337f71d202ff29345320f8bc49a31c90e6c257e1ccef4333
MD5 642992d83fe3cb74fe371ad9fd098b53
BLAKE2b-256 a8dfb989044f90b81093e454eb54799e7ee5b085ebf957a75d07d5e21eac2fb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98e4fe5db40db87ce1c65031463a760ec7906ab230ad2249b4572c2fc3ef1f9f
MD5 8eea834cf0d4db820ab329aba6504390
BLAKE2b-256 6781c9f29da910ac19758f170633c0937fc2f0898b84389bd05bfc255c985f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da52d62a96e61c1c444f3998c434e8b263c384f6d68aca8274d2e08d1906325c
MD5 f827b3c1ace6e61233fa8a93e5989d2b
BLAKE2b-256 433d0e5b835c22933a5bdc4413e4a91de55a8c1ef33f55eb2514a5cf24729173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a89a8ce9e4e75aeb7fa5d8ad0f3fecdee813802592f4f46a15754dcb2fd6b061
MD5 e29e2e5756a4c8861f7eb302c71ae586
BLAKE2b-256 5b1dd850242d30e68f99ad80815576f38b378b5aba393613e3357ed5e593499e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bc0e697d4d79ab1aacbf20ee5f0df80359ecf55db33ff41481cf3e24f206919
MD5 158dce5c46778352cc1e95067b61eb99
BLAKE2b-256 dc9d894ff29a2be8f85fd1acff6e0c1b52b629aee019da8651125af9ee4894e1

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b4ef7725386dc0762857097f6b7266a6cdd62bfd209664da6712cb26acef035
MD5 b2824f16184c476c172967fd0d9e1806
BLAKE2b-256 ffd3ffb04445d29c03d380047c62bed01b979adb9204424e2c833817012f679e

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4991ca61656e3160cdaca4851151fd3f4a92e9eba5c7a530ab030d6aee96ec89
MD5 560be66e70184207d9c11f595907bb37
BLAKE2b-256 543d11cac262f7d5ac4f34e838628410eca4f9ce3bf02be28ccb0de90362ac11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e78868e98f34f34a88e23ee9ccaeeec460e4eaf6db16d51d7a9b883e5e785a5e
MD5 f43e3c22896db8359f608edcc9292138
BLAKE2b-256 32b775e7cea814765ecc0820aac232216b236ffad940f59bc87522effb44e144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4eb2de8a147ffe0626bfdc275fc6563aa7bf4b6db59cf0d44f0ccd6ca625a24e
MD5 185093082a079ae12c6ecb11ac3c0b4a
BLAKE2b-256 e5266800bf70179c5aaffae6bc0cee355744b1475f4b08cb9855a72a5b488fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d167e4dbbdac48bd58893c7e446684ad5d425b407f9336e04ab52e8b9194e2ed
MD5 1f85d944a4421194d4558b6e1edcdfe1
BLAKE2b-256 6a648b0d0c0d162c06805ba0218f524bf607b1324c41e7396ee6cfed751bcfc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ff2eba7f6c0cb523d7e9cff0903f2fe1feff8f0b2ceb6bd71c0e20a4dcee271
MD5 0b58cc5a1612b18f5d4ae29fc4c40b1b
BLAKE2b-256 96513942efa11d6e3fa140f1ac639d533286c94fa6e09e5a1f50a01bfbe12ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8eeec67590e94189f434c6d11c426892e396ae59e4801d17a93ac96b8c02a6c
MD5 83657e931afbf1120a847610742fcb9d
BLAKE2b-256 cebc00bda2ffe45d53c7900234508e1a9432031ff8a38df3325af98aada9c680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 878f6fea96621fda5303a2867887686d7a198d9e0f8a40be100a63f5d60c88c9
MD5 2e47bb21390c261e927ab2fed1eef505
BLAKE2b-256 aa3e4b99613a4628abb6efd82c9d653fee53fcde12225b68f62037b09ad2a720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4de1da871b5c0fd5537b26a6fc6814c3cc05cabe0c941db6e9044ffbb12f04a
MD5 226d922e291db8ab6f18818a16b146a8
BLAKE2b-256 53ac5ba82e51534a13580649de84304c5f75abe37ead43194b7347dd11970528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc5695c321e518d9f03b7ea6abb5ea3af4567766f9852ad1560f501b17588c7b
MD5 8e3e49df5960b20e8ca0ebfc90ee59bb
BLAKE2b-256 ca19de615c09b8ce5a1a09c4d85b64cbeb4188784b082e9e99f051ba6e9ef758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a429b99337062877d7875e4ff1a51fe788424d522bd64a8c0a20ef3021fdb6ed
MD5 0458ecef360fe4b034107d00926237d9
BLAKE2b-256 badd91a32a556908ddc6762ef5247345b30a91a7e75e3e004246e238224f3321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b876f2bc27ab5954e2fd88890c071bd0ed18b9c50f6ec3de3c50a5ece612f7a6
MD5 223570bf316c8d7ec4b2693e96a2b8c3
BLAKE2b-256 6489b468c7bd5736db4c8800c905c6d351b750dfccd9e29e685a3aa9705cfcb4

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 031819f906bb146561af051c7cef4ba2003d28cff07efacef59da973ff7969ba
MD5 248d56ac1234b35f9d92f6ccc9ed1910
BLAKE2b-256 f525999c5176513cdf7d9b86958dedddfa95790f9db643b5ddce0a889def7471

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 320c808df533695326610a1b6a0a6e98f033e49de55d7dc36a13c8a30cfa756e
MD5 45e7eaceba61446cd6b8d0984bf34def
BLAKE2b-256 6031083e6337775e133fb0217ed0ab0752380efa6e5112f2250d592d4135a228

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-none-win32.whl.

File metadata

  • Download URL: rpds_py-0.21.0-cp313-none-win32.whl
  • Upload date:
  • Size: 202.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rpds_py-0.21.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 0c025820b78817db6a76413fff6866790786c38f95ea3f3d3c93dbb73b632202
MD5 4175eb750c5f9cbe297057c8bbda37b8
BLAKE2b-256 50e878847f4e112e99fd5b7bc30fea3e4a44c20b811473d6755f944c5bf0aec7

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee1e4fc267b437bb89990b2f2abf6c25765b89b72dd4a11e21934df449e0c976
MD5 2b86bafc1bba1f5d68522614b2c49d19
BLAKE2b-256 c8d048154c152f9adb8304b21d867d28e79be3b352633fb195c03c7107a4da9a

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52c041802a6efa625ea18027a0723676a778869481d16803481ef6cc02ea8cb3
MD5 54bcaf9c4d25bbdd68c88ca32a7f28d4
BLAKE2b-256 ab1c35f1a5cce4bca71c49664f00140010a96b126e5f443ebaf6db741c25b9b7

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5afb5efde74c54724e1a01118c6e5c15e54e642c42a1ba588ab1f03544ac8c7a
MD5 35b08db67ca7e4ec0f4e237f3362d45d
BLAKE2b-256 4f3bc68c1067b24a7df47edcc0325a825908601aba399e2d372a156edc631ad1

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af04ac89c738e0f0f1b913918024c3eab6e3ace989518ea838807177d38a2e94
MD5 fd72855e37fe39f4d3e698e86e3051bf
BLAKE2b-256 f922387aec1cd6e124adbc3b1f40c4e4152c3963ae47d78d3ca650102ea72c4f

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aaeb25ccfb9b9014a10eaf70904ebf3f79faaa8e60e99e19eef9f478651b9b74
MD5 8b5a9e83c4e2d438a7e51ca0c0922cba
BLAKE2b-256 303c9d12d0b76ecfe80a7ba4770459828dda495d72b18cafd6dfd54c67b2e282

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 520ed8b99b0bf86a176271f6fe23024323862ac674b1ce5b02a72bfeff3fff44
MD5 22d86376e64259ccb3a7ef7edb55f31b
BLAKE2b-256 b5ef99f2cfe6aa128c21f1b30c66ecd348cbd59792953ca35eeb6efa38b88aa1

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d6129137f43f7fa02d41542ffff4871d4aefa724a5fe38e2c31a4e0fd343fb0
MD5 7081ed4409a5d86c4743384955cb153f
BLAKE2b-256 1ee2787ea3a0f4b197893c62c254e6f14929c40bbcff86922928ac4eafaa8edf

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c38dbf31c57032667dd5a2f0568ccde66e868e8f78d5a0d27dcc56d70f3fcd3b
MD5 ecbc5e215ee72758defcd67c4ec8b6b7
BLAKE2b-256 68d0466b61007005f1b2fd8501f23e4bdee4d71c7381b61358750920d1882ac9

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9b76e2afd585803c53c5b29e992ecd183f68285b62fe2668383a18e74abe7a3
MD5 cf1e87d68fa5d66db6699f49f90f4421
BLAKE2b-256 d13e0ad65b776db13d13f002ab363fe3821cd1adec500d8e05e0a81047a75f9d

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 688c93b77e468d72579351a84b95f976bd7b3e84aa6686be6497045ba84be560
MD5 9d11da60e75a842e10ed4840df1f31ff
BLAKE2b-256 f6c0fa689498fa3415565306398c8d2a596207c2a13d3cc03724f32514bddfbc

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee4eafd77cc98d355a0d02f263efc0d3ae3ce4a7c24740010a8b4012bbb24937
MD5 10c48d0464ec0b707edf9c8742486350
BLAKE2b-256 323ae69ec108eefb9b1f19ee00dde7a800b485942e62b123f01d9156a6d8569c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e860f065cc4ea6f256d6f411aba4b1251255366e48e972f8a347cf88077b24fd
MD5 4e8377563981c1dd70d2e72a08cf316b
BLAKE2b-256 e6087a186847dd78881a781d2be9b42c8e49c3261c0f4a6d0289ba9a1e4cde71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.21.0-cp312-none-win32.whl
  • Upload date:
  • Size: 203.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rpds_py-0.21.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a58ce66847711c4aa2ecfcfaff04cb0327f907fead8945ffc47d9407f41ff952
MD5 2bd206be15ef311d022b7a599bda6e32
BLAKE2b-256 788493f00e3613426c8a7a9ca16782d2828f2ac55296dd5c6b599379d9f59ee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a78d8b634c9df7f8d175451cfeac3810a702ccb85f98ec95797fa98b942cea11
MD5 46cec538ff7ff9f7d79d987be0866963
BLAKE2b-256 76b1950568e55a94c2979c2b61ec24e76e648a525fbc7551ccfc1f2841e39d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98486337f7b4f3c324ab402e83453e25bb844f44418c066623db88e4c56b7c7b
MD5 e9b0894c78e9f167c793c692df011c85
BLAKE2b-256 33cebf51bc5a3aa539171ea8c7737ab5ac06cef54c79b6b2a0511afc41533c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 998a8080c4495e4f72132f3d66ff91f5997d799e86cec6ee05342f8f3cda7dca
MD5 05aad2e41ac060c319c4427deff78eae
BLAKE2b-256 dc4184ace07f31aac3a96b73a374d89106cf252f7d3274e7cae85d17a27c602d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b229ce052ddf1a01c67d68166c19cb004fb3612424921b81c46e7ea7ccf7c3bf
MD5 f570d2db9606e72b1beffd99712b8153
BLAKE2b-256 31fb48a647d0afab74289dd21a4128002d58684c22600a22c4bfb76cb9e3bfb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f983e4c2f603c95dde63df633eec42955508eefd8d0f0e6d236d31a044c882d7
MD5 fa8e3a2945a3795e5d1c7fead4365153
BLAKE2b-256 fa653326efa721b6ecd70262aab69a26c9bc19398cdb0a2a416ef30b58326460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 590ef88db231c9c1eece44dcfefd7515d8bf0d986d64d0caf06a81998a9e8cab
MD5 ffe65329d38c7fc3ec1b589a3822c5cb
BLAKE2b-256 398d4afcd688e3ad33ec273900f42e6a41e9bd9f43cfc509b6d498683d2d0338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fed5dfefdf384d6fe975cc026886aece4f292feaf69d0eeb716cfd3c5a4dd8be
MD5 79ec2b923511b8cdda4e7e8675779add
BLAKE2b-256 a2e18218bba36737621262df316fbb729639af25ff611cc07bfeaadc1bfa6292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f54e7106f0001244a5f4cf810ba8d3f9c542e2730821b16e969d6887b664266
MD5 73053cf23353b71f30f706df7e95595b
BLAKE2b-256 6483bf31341f21fa594035891ff04a497dc86b210cc1a903a9cc01b097cc614f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebf64e281a06c904a7636781d2e973d1f0926a5b8b480ac658dc0f556e7779f4
MD5 193a6d4ff5b97f8677096daa79453ba1
BLAKE2b-256 f1b01cdd179d7382dd52d65b1fd19c54d090b6bd0688dfbe259bb5ab7548c359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca9989d5d9b1b300bc18e1801c67b9f6d2c66b8fd9621b36072ed1df2c977f72
MD5 32028da202975170152dcd5ddb1af3d1
BLAKE2b-256 dfc067c8c8ac850c6e3681e356a59d46315bf73bc77cb50c9a32db8ae44325b7

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30b912c965b2aa76ba5168fd610087bad7fcde47f0a8367ee8f1876086ee6d1d
MD5 e4bf0363ec2b52c2182064ebfbf02f57
BLAKE2b-256 d95a3aa6f5d8bacbe4f55ebf9a3c9628dad40cdb57f845124cf13c78895ea156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e168afe6bf6ab7ab46c8c375606298784ecbe3ba31c0980b7dcbb9631dcba97e
MD5 51c4bf580139b26205deef86aafe5d87
BLAKE2b-256 68fae66c3aaf13ef91c203ba47c102cd7c5dca92dde8837e5093577968d6d36d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.21.0-cp311-none-win32.whl
  • Upload date:
  • Size: 201.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rpds_py-0.21.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f71009b0d5e94c0e86533c0b27ed7cacc1239cb51c178fd239c3cfefefb0400a
MD5 05be1e30745f5d67d49bfc6b389dd6de
BLAKE2b-256 eb452135be31543677687a426117c56d8b33e8b581bc4a8b7abfa53721012162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e20da3957bdf7824afdd4b6eeb29510e83e026473e04952dca565170cd1ecc8
MD5 5c68888a42110db3789eece6ed63095c
BLAKE2b-256 cf404ae09a07e4531278e6bee41ef3e4f166c23468135afc2c6c98917bfc28e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a9e0759e7be10109645a9fddaaad0619d58c9bf30a3f248a2ea57a7c417173a
MD5 a7eb3ce01ca044f42bdfbfdab214b578
BLAKE2b-256 3c196e51a141fe6f017d07b7d899b10a4af9e0f268deffacc1107d70fcd9257b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2132377f9deef0c4db89e65e8bb28644ff75a18df5293e132a8d67748397b9f
MD5 6bb524405004fe760587665968f0fc03
BLAKE2b-256 229b2a6eeab4e6752adba751cfee19bdf35d11e1073509f74883cbf14d42d682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de609a6f1b682f70bb7163da745ee815d8f230d97276db049ab447767466a09d
MD5 8bd50188f834bf19102868382e4b947e
BLAKE2b-256 e1fdf1fd7e77fef8e5a442ce7fd80ba957730877515fe18d7195f646408a60ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5145282a7cd2ac16ea0dc46b82167754d5e103a05614b724457cffe614f25bd8
MD5 3554870afd896133f4b2ea77f7c339af
BLAKE2b-256 7a1e9c3c0463fe142456dcd9e9be0ffd15b66a77adfcdf3ecf94fa2b12d95fcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a7ff941004d74d55a47f916afc38494bd1cfd4b53c482b77c03147c91ac0ac3
MD5 5a60bf33142cca8f9586175cfef5480c
BLAKE2b-256 5125a286abda9da7820c971a0b1abcf1d31fb81c44a1088a128ad26c77206622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e8921a259f54bfbc755c5bbd60c82bb2339ae0324163f32868f63f0ebb873d9
MD5 f141e6bb9cf47016e8a67a74d6df8cb3
BLAKE2b-256 ede78ea2d3d3398266c5c8ddd957d86003493b6d14f8f158b726dd09c8f43dee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ab2c2a26d2f69cdf833174f4d9d86118edc781ad9a8fa13970b527bf8236027
MD5 65d539cc52736b617190a64022b880f0
BLAKE2b-256 e4efeb90feb3e384543c48e2f867551075c43a429aa4c9a44e9c4bd71f4f786b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40c91c6e34cf016fa8e6b59d75e3dbe354830777fcfd74c58b279dceb7975b75
MD5 21dbd1edff79118c47c40e5fc93fa85b
BLAKE2b-256 5583347932db075847f4f8172c3b53ad70fe725edd9058f0d4098080ad45e3bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97ef67d9bbc3e15584c2f3c74bcf064af36336c10d2e21a2131e123ce0f924c9
MD5 2242947facc491f8d3f8aa5a52caa02f
BLAKE2b-256 a5f528e89dda55b731d78cbfea284dc9789d265a8a06523f0adf60e9b05cade7

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5555db3e618a77034954b9dc547eae94166391a98eb867905ec8fcbce1308d95
MD5 f0dc401865241a52b42f56817f5433ce
BLAKE2b-256 8061615929ea79f5fd0b3aca000411a33bcc1753607ccc1af0ce7b05b56e6e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b8f107395f2f1d151181880b69a2869c69e87ec079c49c0016ab96860b6acbe5
MD5 a9db0630fad218feda2c006c5d78beaf
BLAKE2b-256 354c674b2e2d75607acdbc7a162ace36dcaad225c9e760cef5defa5c0f5ddd2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.21.0-cp310-none-win32.whl
  • Upload date:
  • Size: 201.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rpds_py-0.21.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ea3a6ac4d74820c98fcc9da4a57847ad2cc36475a8bd9683f32ab6d47a2bd682
MD5 e589a914dd3be8cd96dbfb09aa69b866
BLAKE2b-256 66f2452420f1493112825e975c87b3b4fd8b334e0e228cdb641597a92e0c3267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e53861b29a13d5b70116ea4230b5f0f3547b2c222c5daa090eb7c9c82d7f664
MD5 5c38422a46cf2af28aa425c8d6092475
BLAKE2b-256 1586c1401e2f70fbdf963c2ac9157994ebeb00c101ddf87975a90507f27cb2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95a5bad1ac8a5c77b4e658671642e4af3707f095d2b78a1fdd08af0dfb647624
MD5 83d6559f6ec5b1b4aee77ae9b7a205c3
BLAKE2b-256 3311588568f6c2ed5c9d6d121c188c71ca0f76e0e369a6d66f835737189e5a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 daa8efac2a1273eed2354397a51216ae1e198ecbce9036fba4e7610b308b6153
MD5 dee803a21670eff2cba9780fa821eb58
BLAKE2b-256 e88ce056f0c887d29baa256f8c8d7f7079a72d80395c35c14219de45ab19dce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b80b4690bbff51a034bfde9c9f6bf9357f0a8c61f548942b80f7b66356508bf5
MD5 f47a0a5d2086172e2c57c8df63f244da
BLAKE2b-256 d4312dd40abc26fc0fc037b86006583276dc375d38ac821d4ca2394274e8045b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efec946f331349dfc4ae9d0e034c263ddde19414fe5128580f512619abed05f1
MD5 bf5e191ec68cd823e666fb199d05077b
BLAKE2b-256 5f4a8c6c46afc050b5243be579be7f7b194d00b9731e83cc0845e9c70db127bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de552f4a1916e520f2703ec474d2b4d3f86d41f353e7680b597512ffe7eac5d0
MD5 7a27c90bdafe2ac6f5e92de534c42d00
BLAKE2b-256 44476fdb7273cc80066d434e83cd49a3cfedb6d96ff70908480870877fb64b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 808f1ac7cf3b44f81c9475475ceb221f982ef548e44e024ad5f9e7060649540e
MD5 fe44e6be8d5150b73b02e13bb19b7d47
BLAKE2b-256 ddb178da258a4cafa1d8606a21b7d9ed4cc9d72d1c663583060ab02444b9bd9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad116dda078d0bc4886cb7840e19811562acdc7a8e296ea6ec37e70326c1b41c
MD5 56e5735f357957acf3fb3424ccaf826a
BLAKE2b-256 dc6387d469d7628cd71366fd1baa32573acd37385843b8d39b6e2b69f16eec48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 085ed25baac88953d4283e5b5bd094b155075bb40d07c29c4f073e10623f9f2e
MD5 14de8a6571ae09ff3ec9d8cc754b41f7
BLAKE2b-256 9d2a665b9ebef76f54764f1437ac03373a95a69480b7ce56c480360f88730cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20cc1ed0bcc86d8e1a7e968cce15be45178fd16e2ff656a243145e0b439bd250
MD5 179f4c29cd005c5607019fa69d124658
BLAKE2b-256 8a7275a30a07f96ae210e732c50c7339e742945fdc83661e65a1c80fcf39ceea

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a017f813f24b9df929674d0332a374d40d7f0162b326562daae8066b502d0590
MD5 8ea883c5f1ac67c0dc5d0176bab2716c
BLAKE2b-256 4ca491747f902f166c589f1753cbd8bda713aceb75817c8bb597058a38aa85e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0626238a43152918f9e72ede9a3b6ccc9e299adc8ade0d67c5e142d564c9a83d
MD5 96013c1c3d769ab923fc3ae640f96495
BLAKE2b-256 f39cf5438d22e6172bf6b38e1809e42f4ce47e9dec7f6db04635c167a674fa68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.21.0-cp39-none-win32.whl
  • Upload date:
  • Size: 200.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rpds_py-0.21.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b21747f79f360e790525e6f6438c7569ddbfb1b3197b9e65043f25c3c9b489d8
MD5 65eecaf66cd8d11de69898ae543d5037
BLAKE2b-256 5226dca37e306fa2b7329fcdd3b6028d5075c156e444f87b3229af51074ec4a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2b2f71c6ad6c2e4fc9ed9401080badd1469fa9889657ec3abea42a3d6b2e1ed
MD5 24cc6e6795f1b3ecc96fd33f1d5d9763
BLAKE2b-256 eef3002f79553404f04d737b461e07935a8bf7303d1cee6d7934b0cec009f650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c3761f62fcfccf0864cc4665b6e7c3f0c626f0380b41b8bd1ce322103fa3ef87
MD5 5da234b0c8d59738999a798dc7df8f0e
BLAKE2b-256 ad0f8688bb424ca626fe2ff8782ed40660b1881c78bceadcdd6c72971ebba4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58a0e345be4b18e6b8501d3b0aa540dad90caeed814c515e5206bb2ec26736fd
MD5 ebbbf141efe3871760eae3e0670bcf8b
BLAKE2b-256 2a38c17ae56ed63ef78fb22dbd669460b4ea5ae37ae100e16d5205e4538e0bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8404b3717da03cbf773a1d275d01fec84ea007754ed380f63dfc24fb76ce4592
MD5 c3833f682a999e99cf7004909a15435a
BLAKE2b-256 44ab6fd9144e3b182b7c6ee09fd3f1718541d86c74a595f2afe0bd8bf8fb5db0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b929c2bb6e29ab31f12a1117c39f7e6d6450419ab7464a4ea9b0b417174f044
MD5 8067c99fb5168977e0fe7d2d9aa755c7
BLAKE2b-256 06c37cd4daa0a7ae54ec4b5b9e93b2f0b0d9b6dd3eccb10a0408c3508066ca6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9afe42102b40007f588666bc7de82451e10c6788f6f70984629db193849dced1
MD5 7fcd3b6725c870f1215179658270ba79
BLAKE2b-256 adb1cccfbcd85cfa7537427384f636708867b29c3b438a5d60d579dd022374d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f414da5c51bf350e4b7960644617c130140423882305f7574b6cf65a3081cecb
MD5 de53ec7481ad7a43e45dd71e9a46b92d
BLAKE2b-256 0af90be0f9f58d8d06b3e7c921ce5ca68774eb4d67c691ee21c60d1eeedaf6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dcc4949be728ede49e6244eabd04064336012b37f5c2200e8ec8eb2988b209c
MD5 8c4dba9d7e58306c240b7e992b7973ee
BLAKE2b-256 95507bf8688a91f09a214b847cb3a47007f87577e67c40354d1643adb7ec27e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e12bb09678f38b7597b8346983d2323a6482dcd59e423d9448108c1be37cac9d
MD5 a132b540930a14964018a68f4f2749bc
BLAKE2b-256 9f54902896b543778b0ff6d1baf9b46290f2ca5db14593136b4602a44c0df440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbd7504a10b0955ea287114f003b7ad62330c9e65ba012c6223dba646f6ffd05
MD5 5ebc79669ddc8f17a31b1ad5f9f9902c
BLAKE2b-256 e87c8cbd90d5726894dab069bbba7813864d163cdbbfcd5bf60a12504d061788

See more details on using hashes here.

File details

Details for the file rpds_py-0.21.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.21.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c51d99c30091f72a3c5d126fad26236c3f75716b8b5e5cf8effb18889ced928
MD5 15ff9250bb1b7dbce81566b050335842
BLAKE2b-256 6ce0ab30b78170a198fe12c47c2f04c12374d3a424d506c6fe813c62434c6a5a

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