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

Uploaded Source

Built Distributions

rpds_py-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.7.1-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.7.1-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.7.1-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.7.1-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.7.1-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.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.7.1-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.7.1-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.7.1-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.7.1-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.7.1-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.7.1-cp311-none-win_amd64.whl (179.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.7.1-cp311-none-win32.whl (174.0 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.7.1-cp311-cp311-macosx_10_7_x86_64.whl (311.1 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rpds_py-0.7.1-cp310-none-win_amd64.whl (179.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.7.1-cp310-none-win32.whl (174.0 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.7.1-cp310-cp310-macosx_10_7_x86_64.whl (311.1 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

rpds_py-0.7.1-cp39-none-win_amd64.whl (180.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.7.1-cp39-none-win32.whl (174.2 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.7.1-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.7.1-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.7.1-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.7.1-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.7.1-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.7.1-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.7.1-cp38-none-win_amd64.whl (179.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.7.1-cp38-none-win32.whl (172.4 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rpds_py-0.7.1-cp38-abi3-win_amd64.whl (177.5 kB view details)

Uploaded CPython 3.8+ Windows x86-64

rpds_py-0.7.1-cp38-abi3-win32.whl (170.7 kB view details)

Uploaded CPython 3.8+ Windows x86

rpds_py-0.7.1-cp38-abi3-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.7.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8+ manylinux: glibc 2.17+ ppc64le

rpds_py-0.7.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8+ manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8+ manylinux: glibc 2.5+ i686

rpds_py-0.7.1-cp38-abi3-macosx_11_0_arm64.whl (298.3 kB view details)

Uploaded CPython 3.8+ macOS 11.0+ ARM64

rpds_py-0.7.1-cp38-abi3-macosx_10_7_x86_64.whl (307.9 kB view details)

Uploaded CPython 3.8+ macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.7.1.tar.gz
Algorithm Hash digest
SHA256 d940b5644f14e49b1c6e7902b9ec8a0c7584109fbf380fa18115831a641927c8
MD5 40d0e0eb878ae10405df7689c5f58ff1
BLAKE2b-256 31cda2da9d5bbeca03abd6c451354825f7ad4f837efc2650fe585f6bc71c9699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 014828cd68b4cdee84ab66adaf5bfe1f137656a7a588c31fdca04ba0768ef62d
MD5 9c6ab3ce9d4cf007de35a289d72ff5ae
BLAKE2b-256 dd30fe3b7a356213b394ffe5c1e0d523f5bf8cef93d08f7e7455d35c81649af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c38d17af73aa03686d701686628e37c114a459650233c0d5f0492dad3a76e3e0
MD5 1a4c0524dad0870cde5dc9384925fbbd
BLAKE2b-256 f3a1bee23364956a1eea74aaa76dd027edfbf83898a036fa532bc3d5db0abfa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7bd3a381c4a5fe7e0fc4dff554bd1ce2b0be12ba0193c176c291b7dc1e8bea0
MD5 058c559f67cc154363489f7c1f371823
BLAKE2b-256 0f1ce5c55c3fc9c5e916f174cab4987f255ecaedd9d1904e13970f77c7b973c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8391420714e84ae9f4c6d4e4d52eb4209ca8d66abfbe4b2ba4892221be1c6f5
MD5 fd23ee3671cf76ee2d763e2425d551ce
BLAKE2b-256 724461105b90d526a0d3f2a41da4dc72036b257d7d56e815fb92f2cc4783fcd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68e8f2cedc65198248a14d716125016fd0816f63f216a82c2209a0686d5447cf
MD5 8558ce36bf9a9b6403317a8dd17fc0cc
BLAKE2b-256 017d30eead64efb0ea8a366dbd02759eaccb7d11f251741c00e2df9a379a5cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33a2a15b641bc17bc6574f9600976374a085ff81ac8dddd4bde6c451e9e9e58d
MD5 e23972d6bd6a36be431f10c4f3124ae1
BLAKE2b-256 12a06cf4fd52eb228af2f30929fee622712945a64bbc955415e866ac92f33a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98b54a47e670093b8bf7d1a0222d0af26dac19314a0e79ac478e447357396a2d
MD5 c6f36494d8dc45c7ccf29a217e6ab7bd
BLAKE2b-256 809e081bd0fa1119308500dee5827878855edf21b53a35207971a981f6a34880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0bcb162f5549408125ec986bfed1a66f2036ac2910d3fb0a6afda0f97bc6ea15
MD5 4e1f016c5a10f1b05b62110a17348953
BLAKE2b-256 0cc8af868e7bcba42d9e69a9cef8009b2ab577a34898148e8eae93b86b4b78c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 453e62d679d8de32c5e00ba27f8c8c45a456e5d6db6fa6f67fdd3e12f1658833
MD5 76d192e171802dc2ea55fc363cb8864f
BLAKE2b-256 2de6977eb618ac05f878bdcf360f117f9152d4c5a66050a4d099bdb88504d6e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a5c672b1cd382973bf414518ddc9d743d06bcee751fa65256d84ba412192b0b
MD5 708a40f935b2380fbc262fa969c95f8d
BLAKE2b-256 20785294b39d615c428aa42023f895e11138e53e5b5b786d30887df2e8932896

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 038249d2bbaf91aa65c4108a40ee076f657654261b1a246ab99726710bfb77de
MD5 89f4dc0862437a0f76134e0e320c5e3a
BLAKE2b-256 0bf24792ae6d7a3bd8deadbe6c0214db887f675378568810f0995fb5859b02c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f53f65cf56bb60355681431d04bc04dbe709452dd85eebf537035dc145bd36c9
MD5 143a4c3fd9d88939519028077094c3e0
BLAKE2b-256 2c4fa48ff0447a574244730340dd11e4675947e81090d2047b13554c9c2394f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 51fe912d2356f3a0e63f5557a704407357ee403cb6dbde4f86e339d50a2110b9
MD5 6c10f3ac966833b79a0fae804d92fe88
BLAKE2b-256 59c1dad89332d3b520efc960a5db660aa52a296cf0ae923fedaba3106fca8e1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.7.1-cp311-none-win32.whl
  • Upload date:
  • Size: 174.0 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.7.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 457345279898d5156b9de9986c650847c2ee0b205b1fea3f4fe4e8e9f8fe318e
MD5 4445952351dbe3c665b97e8adcff2edd
BLAKE2b-256 a36df812e85dbf3f088af15476b2eb787045b2beaeb822101aa439409aeb5b66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9995693d151387d8a95774f6e464118002d7054fade70ea24942caa0f2dcfa8
MD5 b3d821e9e5a923d3011621308982c782
BLAKE2b-256 33856f1f8a80311a163a6fe974cc8e991fb6dc34a2dd922aa9d3f3934d26a1ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99009264ec0992e69f478b3f59b1e411e0d75c1361cf41b1aef397f89d020666
MD5 071e7ea5d45fd93772d7f669bad7d0d0
BLAKE2b-256 758e53088aa1bece7ee9da67cbe1a3361a2e071122c532a0fdc8bb56eb777672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18cd993d5b63450abd3a9eab70af4bbecb6d315a5f167ed3b228cba6b5bc18e4
MD5 da5fbc0ddcd762bacfedca3e8d93ff44
BLAKE2b-256 c1cc3204e8bdcacaeae93e507a2d3c428560530f04f2aafa1c511ccf8c8378cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a5b0f8c81f89ec23d59733dce9724b244003be2367653e1e53095cf643f8c8b
MD5 72d63d6efac8a316b8e43affc72d7113
BLAKE2b-256 a71e41a11604ee2def72fe09da9347c878f94736cff62eb4e9981a7919974790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89d87f5ff7604c25795c369823531b07ac36d62b6c1b743135106f5819051147
MD5 a7a4970da74e711c0da32575ae2142ac
BLAKE2b-256 63128246f4f06e7ed92b83d68e9d1552330dc6544089de10207fde2da786c614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffaca17ce98a61a6a7fd7b1aecfe38cc360a97f85cd7b5ffc4e6c17570bcd377
MD5 e6a7d591d87430cee3e234f46e3944c7
BLAKE2b-256 e9bdf9073f69d1e88062343fbb96c5ede23639d0f6eeeabd727f72d6ae51b397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0502cec5d672b62547c3f5b1e2efc177db0b982cf7742cb23b50c2933739a4b
MD5 98068b6058816e1ae1184d2e4def94d5
BLAKE2b-256 6b14b890662391f4178e93f36af418f1cbc16b21d1da41dcaceccd2a4c3e45c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fa7d3cc9c6684cc4e04b9c138c16ff77f4eb3a51ab1b2239964ae8a3b9456a2b
MD5 e8d3f09ab58463935091b51ce5377903
BLAKE2b-256 36ab172f8e8a8520a086711b03477c2f03996bcec95bbe95ce08883847da7691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9ffed319ab2adc2d426160355311686780eea3f063f2b169fa5a9a17bc24e20f
MD5 5bf995154d9e8a3dc54df1116d54c414
BLAKE2b-256 ee484ef454324ede813f7a4d784fbd5a378e8eec730c38997f74e054bf3e1ccf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.7.1-cp310-none-win32.whl
  • Upload date:
  • Size: 174.0 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.7.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b27301965f076257abea084d245364b3aff01f75a202b36922a09b519dc8359d
MD5 9fe6f1d69b723144bc0b12b2b15f2151
BLAKE2b-256 66558b54f3de3fc2e00d25b84ab422dc9d0bffe9c26b83c59d55e9b960ba1bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 083990eb24bf99a0ae92505b24ab4d4c9110d2569e60437d3c721d8807403471
MD5 6296f5ccd9e0a94ada0483ecd56977ab
BLAKE2b-256 d2cac317bf51023f53f5b1d6056aceb6bc3107b9421e7fd89942a0566d5c6253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e95544c9293bd0f1fa6ecab06472d7b982acfcfaca37df6a1dce113f26e67d66
MD5 0fd4e251f99c37b6e8e0188071f7c273
BLAKE2b-256 8ae843d4f5892a3ac8e45496655f33cb767b98d4d342526b18c3f2fcbfc01601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 648a6e46674764eb0179cff6312aade65bb26f370d8af6fc089ab5bf713a7870
MD5 63b6becebd31beb37fe3fa57640bd205
BLAKE2b-256 731b8621c93fa50a2f8705bf92aab91cb264f50f56b005b8599105e12b4f3f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c1423f3cddc86b54682d5df905664737300cdf316b1a4fa3056c45b47d44790
MD5 feac2db964e8a9093a2c0979748a4ff2
BLAKE2b-256 90b644d63f664e030d4098f386464e7277091ba44601a111f6643a8cbf6199f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b442a4155631cd1c53cb1cd83b815c828cdbb8c0c9a1eb9b8791c5a19bf55692
MD5 885faee7e21f2f4e0eea75ad93d02493
BLAKE2b-256 b7ce39a2fb31d3c99fd90755187ac103a87bae3cd0454da74fe4092c79526e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97c4507d1b4aaa097f076194606bab723adf7c73c517f09c967818808fc198d4
MD5 0b02c44772e29b75cf0aea299e47689f
BLAKE2b-256 1c54660f71435c3a8a9ea2b4bf06b4c7c90e7a3981512f5b0ff62a10f6f536cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdc103711cba081c8896476d99479b462fc584091f9979c3c17fedca7558d4d2
MD5 60c053236afba028d51deab47235be9f
BLAKE2b-256 eee794c1c4e2d4b93ac329fa77d6159ff26fe23610cada7753d703108cfc60cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e5ce9ded54dee1f179e9240a983779d5e3bef20249ae4419b671af549b077879
MD5 496e35377e51a50b336d73a28a77be82
BLAKE2b-256 b0b11a74cbf2b1018872f6a4b3cb8068f87ca8503cd888331e7c1655e5a3766b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 bd15a7b913b5228711d479dd26af9db3c12280ef7df55f48037d0bc9bf042617
MD5 4acdcce174266da765ba8d7d2a846755
BLAKE2b-256 55066051752ca022dc27df9e62f3acc43d10e4ece23da91adf1bfd068d14f2fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.7.1-cp39-none-win32.whl
  • Upload date:
  • Size: 174.2 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.7.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c96f87e14208058dd92dd9e726beeb4a572ead402fedeb230d151575fb39ad93
MD5 2097256333a8c87048bf7ba2b96930d1
BLAKE2b-256 5833c7f539812ecd982a861b5b84f6809e835cb45b8f7092ed9f2384413c56be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 737ea1ee132c89265609ef1951a29a0f4caec57c974715f305587973d63dc439
MD5 3fa1c9193cbf8a31580cdb50f2660f41
BLAKE2b-256 219cd6ed23ea94671e7a8b93331727e1772d85f3181cbf3838db917eb0e2b571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f8ab0fd88fc2a8ecc543b72c293d70ffa3f448e85e6fb7dee009629154d683e
MD5 b39e160a657acb487053f1b2d915a65c
BLAKE2b-256 92009eea8fcf758f09014734cc0f80fc13a343b18709af6e9dab32ab67268dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad2237e4335d6d8a3d678c9106a100c228b1edc92bc5ea6af0be99d1acafd84b
MD5 3dd9b7a7e3fd5590fdee72d27ec05c7a
BLAKE2b-256 1eab59231175f2dd00d1c8bac46c98b9e0752744f61aab6b34db86d8542654e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 453bfdf4a4c618ea24714b6c25bd56d91bfc43c6fd5a34add66c1b92737c5283
MD5 936492ecd4265fe3a3f679a8abbba44c
BLAKE2b-256 08727d1670a14bc99cf39a83ab6956546274bdd2db57e55f6cbe4a32a493f955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b62f9f9bf523f8baea794cc996dc0ba47676bca0517860664e6419f65e533da
MD5 e8a4a7fbbad8e6a80ef6f9e01503a9d3
BLAKE2b-256 439be57ac00f60184552724f5024de6f948bf711f24f2a811ac91de82b28e4a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 130cfa21a10a60f5fc8ec59fb5f8b4a649cbc26302c7f487d7798f7969a1e763
MD5 4386992f84e6b123abc4e3b526d91681
BLAKE2b-256 73022c523b1f634859728053159dcf68c0c8c8742c0ef6bef29f16e959dd0fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 de1e2eb6fe8ab72256aaf83e0d1969a39271a70fa70a27a45b53d270ecfcc7db
MD5 a362eeca10f07d54ab157265d11fda99
BLAKE2b-256 a4fdedcaf074e02e3ef27d95566d2c2e275e6fa62ab566b7f05a5ab5d808638d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.7.1-cp38-none-win32.whl
  • Upload date:
  • Size: 172.4 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.7.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2f7fe606eb4742f2d2f0ada4e3ee168e809514a39527fce8ee33b2ce908ede00
MD5 199e1422e7bcb0eabd7fb7b07bbeccda
BLAKE2b-256 9639a7f0ee67b39b05d46a613a739c36eab88d726f7ec5e186e120f9748afc4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6decbef9ca15a8fef5840ff350fe53fc2cefbabb34c81bce2576c553fdb33eba
MD5 af68a9d1fadc74cae0400c1cbfb252bf
BLAKE2b-256 1f611104de44746f111c6339ebeadef04004993033bb6b81a62a51aec649253d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 794ca22915fb1e4d08d4cafb81c0227d05a75f4dcd3ce463abaf851ba6b14f9c
MD5 21d6e61958a2b9c1a3dd166f36a6afdb
BLAKE2b-256 8f14f99c2942e55ed0b26d5527b148141714f50ca13bb69733fd279c58d17880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5551e5583f341867fb6499d9ca4ce3999209b8e30636c6cf48f204120415dbef
MD5 3e468c2ea8e211a9a5a0d4c9091b1b41
BLAKE2b-256 8ce01d12b2d7bfc8c577bc8340ab263e55f41de79db0d6dd5cc673fc332f15fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d64ef19ea4f65782a09209a2287fea795ca7858375e6e9d87e955dfbbadaed15
MD5 52a3d8a99cd5fc4432345094cf338b9f
BLAKE2b-256 7e2dc757f12f5d22793461534e8fcf1cd9fbf69bbac76dc57f92c2ecb78e371a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf13f4ed0fd7691cbf10371a65cd6b4aeeed2d04f09e96f8aa52db36a794c7d4
MD5 141d07570c89b3b94c44db5b45ea8930
BLAKE2b-256 bc9e2ac1043207c29b11d2d74617900759447fbf7d0af1deec8e454a4445c2ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b71420bbba0f04c82374196467159e960043089f2931227353d9d51d71cd65a7
MD5 e0e81d6db037dfb4d32b48bb6d95c6ac
BLAKE2b-256 baf94527e0964e4f5c0f7770ee2b145a2f2d870a53ad65209042a5c640156393

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.7.1-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 177.5 kB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.15

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 5eda3aba0cd291de9d4bb138db45814bac24bc4c07e0f38b0544374b6104c488
MD5 1ba5d67e514c8d497053c2d4d72a0d74
BLAKE2b-256 f85982597e494aa2bb7159d719bd40ba968425e27be61d912c926dbb44da3791

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-win32.whl.

File metadata

  • Download URL: rpds_py-0.7.1-cp38-abi3-win32.whl
  • Upload date:
  • Size: 170.7 kB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.15

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 cbdc8ab6108b8bb260ee68fb2de83fb1c481d3a77355156049a8a49ea47eacf6
MD5 43bc0ccd37a4791e6b9f940a161280ac
BLAKE2b-256 4e2dfb474dfbf110451f8b88e9f69e8390887b6e7c8c4fb94e2fa615b41661aa

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 025b8101dbf39d77cf41ac3c737e4c713e0b2728a516443b382e66b9d492ff98
MD5 fc00b673dbbbf2ed8798f87abfa63d7c
BLAKE2b-256 5a535d6845d9c6aed768e11fcfbb9b5ba457745b62c542491c79e6e1009b2e80

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d1d4078d60ca47f0eb6bdddbf79f00a72d41ee3148aba1dcf9b980f73a8d26e
MD5 37c950951dad55cb267961424df8d94c
BLAKE2b-256 b7e58ca8485a89e38a3e3c83659aeb019a3ce1e08204fd57c19f6037dc7d174c

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 34007442d36980c4aab3f4044c1fd05a736c8ae09d47b8a42112deab5d6b5a10
MD5 09b9c6ca1c79761b0d9f16728b78b056
BLAKE2b-256 461fdd4fd007a43b614b6390ec9671f93dc184324af7cba3c830b266b55da7d5

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b6db70c2ab847229fa9cff3a5eb641c33ab3f981ee8b99d326a7deb8989e4ce
MD5 2755a2abef5407a475747caf54e8428a
BLAKE2b-256 4b7edbd7222509e5ae3d3b179d39749c3b6e5f8b564b39c0afea23f53d90b234

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 311a57cc972481bd220af28cf4309141c680a356b2359f163daac030d0c2318d
MD5 ed381e0bf06758ee66b877f533a4c09c
BLAKE2b-256 157a4c7a4300026e17b80dbb96339d0f659bc20111984aef599a3148946f7f11

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc6ff891c3814d8cd92549cb385353a922518d433aaf1d2d0d99e98e59915370
MD5 134b5e5a67291f9bb0718db094f55426
BLAKE2b-256 2226dd4b0d6abf23343f1674f78b9b5d02bdd0de80354a5b1a505ef171590d18

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e16c02923726307d960e908b61d4d833939f322877d2957c001fca23b644914e
MD5 c59283efc3d406a1d730dda06e6b046d
BLAKE2b-256 af061ae40c32d83b3370556649b7e7515159e5218a8d04475b84396badbcfbab

See more details on using hashes here.

File details

Details for the file rpds_py-0.7.1-cp38-abi3-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.7.1-cp38-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 858604fe5d7eb50e91b1096bcbcb421f2cb3101454244afda92b4d768d0cb4ce
MD5 6ec345fd4e0fc4c4a9d6ec588a27c48e
BLAKE2b-256 f2c67acd6dfd0e04cfa94806c5addb312039b1659f31ac9f554d9a8f4f416c98

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