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.

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.

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

Uploaded Source

Built Distributions

rpds_py-0.8.6-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.8.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.8.6-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.8.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.8.6-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.8.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.8.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.8.6-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.8.6-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.8.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.8.6-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.8.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.8.6-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.8.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.8.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.8.6-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.8.6-cp311-none-win_amd64.whl (179.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.8.6-cp311-none-win32.whl (174.1 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.8.6-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.8.6-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rpds_py-0.8.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rpds_py-0.8.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rpds_py-0.8.6-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.8.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.8.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rpds_py-0.8.6-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.8.6-cp311-cp311-macosx_11_0_arm64.whl (306.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.8.6-cp311-cp311-macosx_10_7_x86_64.whl (311.3 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rpds_py-0.8.6-cp310-none-win_amd64.whl (179.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.8.6-cp310-none-win32.whl (174.1 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.8.6-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.8.6-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rpds_py-0.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rpds_py-0.8.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rpds_py-0.8.6-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.8.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.8.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rpds_py-0.8.6-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.8.6-cp310-cp310-macosx_11_0_arm64.whl (306.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.8.6-cp310-cp310-macosx_10_7_x86_64.whl (311.4 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

rpds_py-0.8.6-cp39-none-win_amd64.whl (180.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.8.6-cp39-none-win32.whl (174.3 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.8.6-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.8.6-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rpds_py-0.8.6-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.8.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rpds_py-0.8.6-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.8.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.8.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rpds_py-0.8.6-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.8.6-cp38-none-win_amd64.whl (180.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.8.6-cp38-none-win32.whl (172.5 kB view details)

Uploaded CPython 3.8 Windows x86

rpds_py-0.8.6-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.8.6-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rpds_py-0.8.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rpds_py-0.8.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rpds_py-0.8.6-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.8.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.8.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rpds_py-0.8.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.8.6.tar.gz
Algorithm Hash digest
SHA256 816e0f7587cc13ab08cdb2fa8ce5350923ac55d367e758a7e34e5b1c42d5dbd1
MD5 cb2b272a5a0372e13eb7bc007fd3a991
BLAKE2b-256 a51a05e0da8f84c5de6759df1d60b57ee47eedecf4383ce5086911eae2341269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5be49ea7bf05269bf262b1316962e257043351bb3d6a82f7c88c47f35b8a5096
MD5 1d61490575c31dc8e10751ab920ba884
BLAKE2b-256 f8197d3b64a66d9c51cac9d223c483b6cf149a6c069452fb0a190e93247dba7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f76f136be5ccd8489e524e2c419b181c9144985eb42e39a8e727c4996468c84
MD5 7c63300b2113d0a2b5a2b0bef613936b
BLAKE2b-256 4168c5b28140f4eaf80986001cd7533cde55ef9b77dcdf498434b6a2f32675ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcfc2c5b13f5c9ea702a295160707e210eebb2201be5d7769e795d27a4ff94f6
MD5 42bb8047d8cc22cb70c59cf842a17ce1
BLAKE2b-256 ad73c5273d71878363617c24598ab3236388e8ea29cc62c4248caf270dd18224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06974ed0a758c63d7133d3592d3316eafdea685a2a3e101886f1f4674ef17191
MD5 c35922ca2eee5db364f79a6cdc11863f
BLAKE2b-256 642288efdbc9f62ed1ae6e68d2dcb1d79bfa99e27e1f4fd0b07990e9478f29e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00354bb3480cad06cb17937d6aeed02b212e233a01ec87045c8ceddb71447a46
MD5 de6fe83a6d81f661f95964e9e8378303
BLAKE2b-256 8203cf1f69969f1b94223c8f1ed922dc50e20f266ea9663f299c0d340f64b9d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6069217b194d7e9548e67bf74bc9f9414e45269054574699b8d8d21dcbe32403
MD5 8060490ac70e3a612aa0bcdceb354dad
BLAKE2b-256 dd670ce49930f6f6150ede580f0b7d46d635f5653ced21c98cf0ba6fe845ab10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 544f56ac58969371a76dd7d7bef464f07be14f41635944186e48f7c61b02e4e8
MD5 acb83cf4ca29196cda269fde20f99e93
BLAKE2b-256 d5bba0a6f6d0f774900c96644bc86e58d89e37aacc34060d3dd33f78f1867c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9cf5833a4f5995ecfcad86298b7c87b2f532241f7455b94bde47548765f70519
MD5 2acd10ddd4354fdc496664f812f4a0fb
BLAKE2b-256 6ba57c9a7a1b340ae10cb86d59ef9d518ade742acad1c3001da83c2caee8a7fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aca18c5a4db266b0809dfc95d55b8d1d48662ce540d44c93608b3ec5e639cc17
MD5 14d05c455f98f6f6b3d0bc09f6f25bc4
BLAKE2b-256 c9719f1dafcb381ab7d0031139ded3ba68f2835958844aa9c297eb8ebc2bfa81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 924d5854f16d3dbb4de28ddb76fa426d4c345f940be6024891f70c15342ca500
MD5 81e5df581dd35a13057e0b9158d2ad79
BLAKE2b-256 ded9ebcb9cdda0c166451750bf8f4d7efdc082d3e69d80ea94e50030fb901c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0723625ed5c6e99734a3fd526a58bbb11a9fbf935189bfa146089a227b112d8
MD5 d71cb3847bb2c33aced46bee465014fe
BLAKE2b-256 6c0399d431a7f69dd3d9c343e0e84084979e0dd05b4af02d8e2b6da612a7b705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 571b9c91e7a73f47368018b9eddca498eefe0cdcd520b81150545736b6c68263
MD5 af02c3271a049d4c1b52f4d9ad461085
BLAKE2b-256 e3359c15d64366a4b44ba11fa2b4c484476bf3653498e6006eb888c056771078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5810278ca062016edee00e07789af41a32d8b73bdda8d4eb527be2ac55d9e099
MD5 71ecf96651779069d8255d8a6b8e29f5
BLAKE2b-256 6c7810a3072899850d0f384648fe4429aee12e2927aae2ba9b665b093da5673f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ac1ebd98b0468d83e40e85fae662a4e70b2a1fd4012f51c58f9fc3d9a93bf70
MD5 71167757ce470b0ff0598818061b7e73
BLAKE2b-256 4c959592a7e18811a10427a010c1f5311d1e437e49a4bdbb127a21b36e3b193e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d7254be53b4e099a0bfa2ca883f0ab6378e2b530e0408e7884c59e0a538f006
MD5 b1419e79f5f37fb89f1990ccc3a967db
BLAKE2b-256 c56f35417a07c5da86efb528d62b44fa2c34984a737f55545af9d83726a2a501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d78dcdff2844365a0507dc12a9cfd72271a1eecc25a316e41fcc571a9702783
MD5 3d6d61b821ba3ab8c49e5e0e6b60a64e
BLAKE2b-256 c2b5a7b0d4be72154de6964cbd07d4a943629631917a43ea594cb217fb1f5cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2c0ad16838db5d6b021d1304502e4939e43e1993d13a821cf987ed436575ecee
MD5 f8acda23ad1db515e06ca2a38c5779d8
BLAKE2b-256 79914f00ec0b2b1d89be11a35e7ef14762ecaea27f216bb36d3190a89e004bde

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.8.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d181aaac699b021e88ec547f826dfd2345af99b014469469e7c2d704e185924c
MD5 9950b583e9e42d09ee862a81cd14775b
BLAKE2b-256 694cabfd6a397568881820a7c1d3e7444fd45c044fb2b456eccd5cd512f8ff4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0538a7e076d5e8190b05a92cd5d6db30ce85e3443468855048ed3af0c428270e
MD5 08f320c872e5a71ba22ffe6ba2d420d7
BLAKE2b-256 f68bc9dd798320dc61a3f5923cb97191d40791b2d33490496fef69a80b4d31e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38a7ec83e29f323c1bf8a8ea2db9b83fc7d90079363b7441d4567c6d6d70ec74
MD5 e98ee835515ff86529cb1bcb40f88e14
BLAKE2b-256 a2f7a2c5ff359ff577099c3ce652326c980609a7b785517624460aa43f5436a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e018a22e8ac42eff177768ad2c75ffe680feb417b18c8ea8261f369d3a4b4e2
MD5 7bf000027affb5b05738def9b5582a0d
BLAKE2b-256 60bd7c0cc9a22c2ef7a8ea4d7cef9ec12101f996300100e257c2b36c385b6f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8849e8f45385539fc7edebef06c220bdbbee24e9aeb34f108b9990ad872e3217
MD5 7b9e7a487d172cac9c48108c4a9ad769
BLAKE2b-256 475d2fa118a7694df3c6832eecb90449f24b702154e57eeb33bbaaa93b1d75d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a02429b920f7657d98835aaaab595842f77028a82af86934a3ff1341484e088f
MD5 9ffa921d941197d8edacfd80056413fc
BLAKE2b-256 98a92e25411513b377a897ea3a2233ba05a82d738ad09de327f31ddc2343aaaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81ff7ef28959cea7cc18b16912e562a858c87b19fe8abd7b5bc46ef479fb2b91
MD5 78fa1c9e2cb8ec68b0802e0ce64d93d9
BLAKE2b-256 33cd63055ff8fbded659574b33770fe388b1849bc2e541ef03f6f5bf6f5c2a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5292c304ddecb07b9117d503988b5e20e4415bbb1898ed5c68533d0e6e9465a
MD5 660e778a4d5d8a1888889507158423e9
BLAKE2b-256 b1df9640d4d761247714c113858598ea5970354d8fa4ff1e9de1228cfabd8fd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fdcd08742b66a781a2568468bef8eb13d71136787162d908e97294c5cc1a124e
MD5 3c218066ae4d22ef3a8218a1859157a2
BLAKE2b-256 aeffd1f23495063d9886295317ccb288fab2ccadca75cb119611c9d605573d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da05c93a110b03c7160d7c98b111d9c656cc6f8b566e6a1d74aa04e5e903fdb3
MD5 4d9969df46ba562e3a1c205c18f1462c
BLAKE2b-256 252164bd03a608dcb5c960ac094e48eb01052a5a125b2d011d648bc1634feb53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 97eb2d09359a407eb6fe3522836f589e3c57b735d2853ccc950cb18eb1c92c85
MD5 a378906edf459a6a8208387b06edb913
BLAKE2b-256 2f2bb310f50ec15990510d5675fe0e80ef88061a98d4dbc9848f1fbb69a4cbc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c0b7a5828359f96ae47a531dda99e3d4172ab75349469c77ed74963d87c37a2
MD5 913b88238abe610b9da83410c8dacdc4
BLAKE2b-256 38a6ec4e78fc3ecae6eaea00f5fd75516e75fd134e1241cfe4470d5187c874a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.8.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 9947b68eb57666d45474170b7ea443c7c952e6154eb0adac601345b0c6533530
MD5 c426d481b68a5e909c617b55df67807d
BLAKE2b-256 2cdc2576a4afa350913ef55ef53e558dbcf0b2aaf8f354ce0fc923183d2ddbc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a562e82b0dd1a111eccd7c8ad29ac0aaeb1a6022e3c1b535460c754b2ad24cb
MD5 eaf21b8be5ebc47885e481c30f64985b
BLAKE2b-256 288ee6bdbca4066ee04376ce0929cf085b3e286439a2273020967daec3af9b0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae9fa5a0326ad08c4b5ff067389d644b34670265a0799c0a10f7d77f2c40fb12
MD5 d46f975208a037e25160e6f75174f213
BLAKE2b-256 875416cf78d147cf4f827c7493513d297116d0677fda2755d89fd3d9f11f951a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07d9a0ff3aaff3e8c059d16aa32b9171985f1b5f91fee9537b730e1862cffc44
MD5 6750fdf386857fd2c98a7817741109e4
BLAKE2b-256 8c6f5aefce93cd632232ccf5ecff808e8dfc0c6e686d19af64590fbb772f01ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f2f1ef0a5b9288a1856d753875aa0575c4028b91b079839ceb4f79f78f14959
MD5 4a9f529a4dbc23d9c417407ebb7668e0
BLAKE2b-256 74204e9bcb67b56182f76b70458c05da494b3528ee5ca55adb145b85c0004ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8575e61ea0a5a7cf203d18cc18a5fdc5dd94ec697b1f7eaa0fa13e404f61dbe6
MD5 fe2281057002c8c754a0691a37e7a96d
BLAKE2b-256 04f728ba228e4260098200d022b1dc02a66da01beaa41ec0aa4c1a3f1a02b0cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0b6ae3716c55acdc33ab9849fa1ae8dd4b9639d2d7d1e9c77300afc8a83beb2
MD5 0bea49d537af8b32b5a1470a4594dc6b
BLAKE2b-256 2edf3a5c1170c54c99a661c7fd62b78a5f200fe1ecb0855065d721853212fc13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fe06d928b9f5f8b106c7b4c8c2fbd7d8f15abe9fa9eaf23963832996be659c3
MD5 1d3661cd91a0dba861348b94a9682f3f
BLAKE2b-256 a4b4791e21936d255316daa29026e25e0ab7d5fedc444bd77cfdea05cfba1239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4467c630b3713cc677287687c70263455e82ecf322145f3b53a5bebcac1c71a6
MD5 3542f2a6a5f5e850ab4dce899024b07e
BLAKE2b-256 896d87fa786ccae432b484e6b49851682e26672a5a90fb6fa624c25f7dd452c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23977f5f11ba6d1081b02d0f946025143a5559116f61157dba6a2c5ad5f05001
MD5 7a659d628a5b4a1afee27e2c1e563290
BLAKE2b-256 aac7fe6888b1d862c918c31026dcb697f8a99e2f0a9d52461c8745cbbe35d59d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6f694c687ac5eab9bf05dcad872a9e96c83a1aac92b836bc036b59939c9fa013
MD5 265811bb683301e771d72bf068b98a19
BLAKE2b-256 dd049f4c1182241393428632e60f2d873df850a42504796739d69c1232f71ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 653f5e3789348a872c3a4cefe4ce7199262338bb54a52a7602351f3d57846023
MD5 11b331cc61bb01ce9555957c8e32296e
BLAKE2b-256 d1341cf4d5029b60bf492d8ad366b7180d4eb3174d35f9efa7a3525c878ce31d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.8.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fbf1e2a2c078754ca11b05fc6d88baff005cca399d574f26997bebc1a6f2d505
MD5 8089a6ca6b5a8a50ac1eb083bcc221cb
BLAKE2b-256 f9e8c72f4fde621fba7541bff7e8a481aa636ee4a54c35554185173e7c17797c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 806fb171949d30189aac1b66f8c0e81ff43d86bcc2a99eae3bd963b94c5df050
MD5 1fa727faf7e608316eea9918330ee246
BLAKE2b-256 5906c7624804ec79e94236614d305c8bc345d5c072a79d7463b6165d678e3e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b216e3f3363c4dc30351bede88f67e9bb9b98e5753238b37d19ec905c074ffa7
MD5 f43cbb1c7612cd7c50184ec50856fd45
BLAKE2b-256 df4a9e84d75271b852af53e1be824de26c978fe67560706bde5bfcdfc4298b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 864803b4885900177feaa6471cf45d99b73e2267251640ca444386fd2a79056f
MD5 a1676f15611b3134fb437a4fecbb161b
BLAKE2b-256 6512a25ecb324952bcd9a69488eaa734d47fd2266e2520e0c98f95c03c191002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 703110cfbe67fe084a61ecb280d14979f3d83a15895266fe038e976ab5ee668f
MD5 49bb39785a01406c67205add4765695b
BLAKE2b-256 e0cd874089f3d5b2dbaecb1b0c424091e8f597c5aa5a075d255695e6fb30636f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c0441111efe5e2bb34fd2dc1dac624d420d4d62aeb914bf6085569f607262a9
MD5 28c141abbd3fd9e5b221f6ddfeb791b3
BLAKE2b-256 2313228d1a0c3ac60069e0d5508c438f3091942268309015da1555f80b7f5cc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b29f058d9afb6bbbef4b7593b609e3fea7a735789aa06e04e2987ff7e4d490f
MD5 a0678f3efa93c9aa3214a96b85f33735
BLAKE2b-256 ef4d7275d9896fa6bd746cd52bb418c3a9cac17e1a3fc8c287d9bd6e5ed8bf31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1ad988b033d0fddca3c368ac40bb61b2947e05ae11eb825b48d3f8d50d12f75
MD5 032815c59b3c5df4f29e9484a20019ef
BLAKE2b-256 528c54e11b1148ea925805f169c28ff244babc3bb2f65e606e8aaedfaf73dd38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae05a9191e36c457c6144e5ae9b3e32af9f68ed35b6cfc15e60b01dca6bfb93f
MD5 d89eedcf77dcc4edae2a73dd74a84e16
BLAKE2b-256 5f8c4d23f2fb4048de4a1dbd43a47540299970a1d0ebdf262c159b4391089727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 8da7cc6df70e0e8689678256d1cd380f2efa389e065d8b5403ed6901994c21b4
MD5 d489bb7b5b30af670ff4809a7c2b9e48
BLAKE2b-256 2234c2997d648b0d914ac3c2a73ec514bd8f3739dcbe91fc7a05acde5d3f2d05

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.8.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a1b08e42f19bddf77656b39be707ff8408ee8f2bf5b6fff058cfd0dda3dfb945
MD5 e0c49b2415fa2f7bf5581771263e3ad8
BLAKE2b-256 fa250e4b5c9c201cd787da8fa5b90785b44e962f3bb4d73a7177833bd3acdcac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 596887468bdc2c7fa2aec909131ac480437409899d6ae930202f7e3b27144d65
MD5 6e341a28cb0132f823cc04fbe3ac003e
BLAKE2b-256 62e3b0fd055d4e5e9bdb328d6e75653accc98ef7a72daf640f5e8945c3a6d457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35a41dc776f2ae9c9aac9cceabf7fb91aee38fcd064adbb7497e42cfd8b3971b
MD5 ad96afe2a347efc69cfd2a44cc1d63c9
BLAKE2b-256 e1eeabe50cc09449928a211af4923541a23f1a343306e242520a3f6b5b45ae41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89f4646b35dbd8920a0ad0bb001183765f9a3896ad07f6662c045415b4305290
MD5 559c5a7b7d93c59a8df1800dbe95dc52
BLAKE2b-256 1976921d22fdf8d77355f582deb800a109b378f10a081fa8cbabb95ba5e73977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e307cfc77711a9e7c26d42e69a28216c988b4dac569786db66c9bb359f13c81f
MD5 32fe2afb6da19934e8974cf023014b78
BLAKE2b-256 3a05cf97f59e60475061a3a28167fe801643415ec07a50c0b8517a2acda02217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c92caae452de2b6e51accad99b4f71b3d9815c8078dfd700671723ef47cbdc0
MD5 e0db365ac335624520fb083fb70c4b96
BLAKE2b-256 f1503b7e242d9a49c3e6401ac8747d3cf58e6aeaa979abbc988b805c2ea63642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa5876a0ac38ba26a90621051b64cc8537d0feff344d88217c54c299a9067167
MD5 45945a4fd5498d0373fedc9a56b33c1c
BLAKE2b-256 e64cb3fecd9b071a17a847ea599de9e4743743af2957d0cc500533f6841d31fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1aa7450d64bf92a82caf9e6dbc547671808093681e60b111c730e03f034502a
MD5 94491b03715afefee1517c6895f7a2f9
BLAKE2b-256 d76bcabfb0e58b51c1e04d3749e0aa3ee72db2fa59b062c5fb2e7e8a58ff20d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f795a528e1fc33242ccfc2b84bd1f4f297bf4553a23ecd2919b5b43833f5d103
MD5 61bc3d8078ed6595f4ab68516a73aabb
BLAKE2b-256 8f8a63a2da9e735e71c9aeb74879d886afe89d56c35350bd4db5f68a94e93c4a

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