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

Uploaded Source

Built Distributions

rpds_py-0.8.4-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.8.4-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.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.8.4-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.4-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.4-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.4-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.8.4-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.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.8.4-cp311-none-win32.whl (174.2 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.8.4-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.4-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.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rpds_py-0.8.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (306.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.8.4-cp311-cp311-macosx_10_7_x86_64.whl (311.2 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rpds_py-0.8.4-cp310-none-win_amd64.whl (179.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.8.4-cp310-none-win32.whl (174.2 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.8.4-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.4-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.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rpds_py-0.8.4-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.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (306.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.8.4-cp310-cp310-macosx_10_7_x86_64.whl (311.2 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

rpds_py-0.8.4-cp39-none-win_amd64.whl (180.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.8.4-cp39-none-win32.whl (174.4 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rpds_py-0.8.4-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.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rpds_py-0.8.4-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.4-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.4-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.4-cp38-none-win_amd64.whl (179.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

rpds_py-0.8.4-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.4-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.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rpds_py-0.8.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: rpds_py-0.8.4.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.4.tar.gz
Algorithm Hash digest
SHA256 64b93e8e299a4940726063ced89eebb95ea9ac91c225486726915d8b6e256130
MD5 100336a56cee3b12654857555ee17bd0
BLAKE2b-256 283bc10c07935554aa2398c351206fddf9f19c045d5ca8145bb539c3ad6bfb52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42fe7873beab826dbfe44570d683cf91dc5a9e04133135160155329c518f2114
MD5 6e20b2093e0392af93e164e23e5598f5
BLAKE2b-256 815228f2d3943a8fb73d2030b4f5a2bda160ff3dba3cff5b684b144031aff2ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c68fea3e0eff1d33a4cdb4c4837ec475c8730dc09df675af06cdbba2c68929b
MD5 af97809b676418a3f251bdb038669ffe
BLAKE2b-256 5fa0cf3809e6031bb91616f2369addd28afc59ce0c8fa2f36de0c462f75d06f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef56e193f7788b109ac10c4fa0f46fb00c0d206ec31886e880fe65ddfab07ae3
MD5 a00298ba70bb79d48102ee536fb30aa9
BLAKE2b-256 103c624d94750dbfe31d60eef761e8f9a820eee1e5f16b513c77e2ccf7796665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bdf8f3689f8ffa7723ea7c04bef02c6979bcefcb71811c6c9cb7df433f7c50d
MD5 0d03267bfd379940a80d8bc1afb8c7fe
BLAKE2b-256 ac1952d63cb9ebbfbd8f35f30101afff241d7ccf69c10dc9ad7a04f7359d52c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62e1c925a8a82c34247ba29fe50fd000204f269e2d34314c94656e0d1cdb4c20
MD5 b39847cae840a754ff299acc88e63e3e
BLAKE2b-256 4a64fef4afe14ebd6e6323bbd872f268621b29a4f43fe069d62d83c0d1dad9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 04dc2aed9de863f8ba9724f9d48833625f94a2096cddb66837d18e2334a783b0
MD5 fba8b058808957ae97d7b196d3a37657
BLAKE2b-256 392039dce53cd5cdcf4badf455e4c494730da25e5c49915946a7106ec13f6ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41c6a77cb7b026afb3b61ec757a513dcad37aa34ee84d462a0bac1fb114c4c23
MD5 575641d587a3b5612d34ae93b009feb3
BLAKE2b-256 426593608fc0b15948a948ada84b0a6abb30d8194c54ffb5229eaac97cf8e00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54f531c60aa65fdef3377721abc978d0966b0307dd45a5eca47af8ac834b4367
MD5 eed7facfbbac105d5246455355fe4021
BLAKE2b-256 88cbda019ba8669ceefa2e1092f413b9cc6be306f016c84e784d895995e78b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17a8f13ac4000a3a48748908e61fdadb412c53f14aa6b298c6bb4754ad776fdf
MD5 c4cae8fb1647c57e4bed9a674830d1e4
BLAKE2b-256 f9d5adc4688c533c944f5f51ff0e6fe3e7980d98b7624ceabee3ee8d0a2fa166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d37dc78c17d94f66ca9b2563c496a867c85766dd98a022586041b78ad36c5743
MD5 2d112ee5c82e5622d78ae079b5bfcd6b
BLAKE2b-256 07c40372c845bb415b8490687ab0410676c7b8872a2192024d45369bb3b7039b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b54752b4b543f653108476f6442c868db1a5d5100216cfc7c32a24f466c03c31
MD5 802b8291b50c996b49434c2612d9c4f8
BLAKE2b-256 7c85e893c5ad018e7f1a601c99744ba0ac04a80cd5a50c3e831d5a65529186ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ae7c5b05802d0f495927b9224d692c8e50d84dc6bbbe53f9d9bd47b4494563a
MD5 47faf66de9809ba529ef1cc66f077f2c
BLAKE2b-256 1896987b3232c53b6f3cf3bfa0fda4e771cba2bdd82388e3e6b0899066278b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ee36cb0d0da31f0477a26a2f7c43c44b9c374c843fbed352616513f08a6ccb3c
MD5 05500153346be9562b51c57606fe8b91
BLAKE2b-256 2e3f949bd29cc3dbcd071408f004ea0f7ac13e843bc1f49878c51dbc500aabcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.4-cp311-none-win32.whl
  • Upload date:
  • Size: 174.2 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.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ee285c7ef9f5eaf333e768a5bc26000ad42d2ac714f19814a288eb5700656a30
MD5 836b95b0822e4ac33211ac213395fe63
BLAKE2b-256 b49cc9ca74c3f5d1a67fc5b0f9b089b60eaa9d70d6c084462202e15f74aed152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d03d70ac8e9f167cf73accf3473fdaa151eafed3279584db3a3aa94ab8d763a
MD5 a07059729433c5e418c686946946b1f9
BLAKE2b-256 eda0fb045f8d1e867536f6c4c896ad61e8022d01e2a0ad51173f65d74ee8dd3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 188de17389b5d2b81080ae7373b594b8aee7dc46125512d2c5f8b79d43e2169b
MD5 c146012509691ed206fa94805a4c74a9
BLAKE2b-256 3b18b9da6a542e42e862c93e8a9e0326273aee9cf1cf7797492eadae28228188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b1eb1bbf6ac3988712ae54c1888ca8c25194cd6d034a1b547b741a26ee57db2
MD5 e73a96995af5dbf5400800c8829b6525
BLAKE2b-256 b35f0fe894f0e8115f162d92331b334d0036c5c3ee5cdd3eafa8e8cc2c8798a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28a345e299ae55f7050fd02e044a5304deb08b868b9e5ef4467cf4db15807e9f
MD5 a210b47fa8fa460d83f1e53134a9f367
BLAKE2b-256 9e748c108af8eb0b149dae9f6cbfdf5b5412c68498562a9cfb8c6c66ae24fb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2be846a2ce473e85224dabd1050627c62aac39fc73156c49aa9f190a2f9ffcec
MD5 b5a6e01e1f3a6ea14f6a5cbc1bab2c65
BLAKE2b-256 d5c2ab804df05c80e322f8cc0f2e01434566037c285572714cf786055990b803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6ac78ec881d12708d84026761cdf95c72bdcdc93ddc6e5cbee2492712e3b206
MD5 796624d2f8e3c6727bfbf19bcd04972f
BLAKE2b-256 dc0215e1b6f31b7292c77fd76cd08bd2fbde9e165acac7ec25b8a508e65a63bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6be7a337edc55e498305a545bb1837854931ba7b1492776d58939c76f36c9ab
MD5 bfb754708f914d7c004d59338c0b542f
BLAKE2b-256 883f12c16404115c669a0e6b9b8d7e55c9d843168a25adc28da824abab2dba6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 69690746506927d6840d028227911c2cf67bead1152f341bd12a5ac4eba27bcb
MD5 80e12fc453f07dbf78e55198571ea600
BLAKE2b-256 cecf89f428bf487e211bb04812675cfbf1a779839ff394c48e6f538c7b845dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f122a70569ccde1c0fecc51de3a35464248504f0c46c301a0f3f11db77141dd9
MD5 5e99e4d1790623cb608aca24b9a7196f
BLAKE2b-256 0fc2e84ee9223acedb85f16aab51c3c8f5163b0ccc2d8c289cc752ca9ae0e42d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.4-cp310-none-win32.whl
  • Upload date:
  • Size: 174.2 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.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 54a2897ee222d31006818c7fecd2061a1d2afe9eddb698c6fa273b395a11a4b6
MD5 abd3ab5eceaee522042658e1783ca9be
BLAKE2b-256 5527c15173109b0964a62645c4255e20c7ec9ea79387c51eaf66f11708b6fe0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12513612b50e49bd08f72c1a6cf1a7493cec4392fc2508a4c3209a7ef4693d18
MD5 9a135bf3754ab4c4e01e16b1b0954a9b
BLAKE2b-256 58bcf20747e80d5d5c832cb10ab51337d8b3df75469793c09fb79034e1df9741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2dcd403f6f475e20441b91acbfb7f25e9e5ca3ec737dab9658e504e0bb16dd3
MD5 9ba724162ea8543d71e5e7c6c4e09627
BLAKE2b-256 892194504417ea72a6f0a832d8ea1dbb78edae6126095fe9016cb5974ae698be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85be5eddbbf6740228b67235b7eb455006b2241a130e96cd2e732ac94b8e9cea
MD5 c254c9a0440c99aa536bc9106fc2c31c
BLAKE2b-256 b1d8157fcba25821b1dbddec1589f41d000fb43a46cb74928820b83824d14f61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 673420ed72eee3ed19c6617f7ef6702e959ca06858a53dc56902cbc6c14527ed
MD5 c4b69bf7133bbe519a63ff8f787cfca7
BLAKE2b-256 4eb7cb72f87dd35754cb979dad4fd2956f68455c1443c5b9da356406c0d8997b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f5d5d73f4a22d58be5fb6fdc1d4128b1e7b2c447024450ee2c0da54d2291e47
MD5 507b4cd8f72875c33f8996b693210880
BLAKE2b-256 1fe097eaa3c745e8e4fc219b712c777eb3e5c04049b9c31678d918913e952f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e83806f49f02b17eab5a6e23e640bd8dd82faaafa572dda9a60fc92464e8a6ad
MD5 12b6e6d5766902bd2b2c0bf441fc0ec4
BLAKE2b-256 fef6ad2454cd820145053a0d301d4aa04f4109f7ca05935f02aa38514d8bfd93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c9e27403e1ddb72a6bd5dc08b980f141850039bda5488f35342af7934dedefb
MD5 86184cf50e5ac3589ed59abc593f9bf0
BLAKE2b-256 e096132933083bac5c5b0073604fc4ee80c2aadc2b8e2bdd9230a782fe481196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 905106a2eb369198341d6191cc00c878ced9f55e026aa1c986afbb96904a1b33
MD5 8a69066d11f01cba17c34c5f8234b72d
BLAKE2b-256 c9d5aed76427bbabc5dec0cfe4dc614115d4171358ed86efaddf0a9e134dc0d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7af190b7517ab28e8b2e255f349e3ccbc875112923f7c87d13b065b733b6e559
MD5 355b44aa7b26ba40b5ef3ebbad4d8b39
BLAKE2b-256 804fe2278967bc16f29f86b3f7fae461350a9bd38c715a811e39da77a5d0e36a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.4-cp39-none-win32.whl
  • Upload date:
  • Size: 174.4 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.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4827a90d4dedbcf68533d1661dfd1734d9394ba848ef70a6a6dd318db53b9a63
MD5 46aa19d95c4e41501e5d818cb6096cf8
BLAKE2b-256 f0cd40187be701c35307b935df984f55c4527a5d6a1f2c949042b95f596b89aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9d945512f21f86bf7a06d5db18b410ee3b3f98291ed448829dc71e84bcca4d3
MD5 b877e6ea69b91564737678f821dfaae5
BLAKE2b-256 c65609811df44436cebf3356f81b34039461fd77a3f9946283b341f4559941ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd948acb3249d90003fe2242761f27d820c8878a94a3bb68fe4889c67d1fddef
MD5 e73da885233598b29b6159e6689e4846
BLAKE2b-256 62d003d4266a257bf2c3bfb03473f9c9f240fae251d9d82ea647a787106b49a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95c9efa0259a927e04ed662f6bc5a8b78991f17c8fe511a1aa596920af002bb1
MD5 8774fbfd1703de59afb04ca9eb50ce47
BLAKE2b-256 fd5ae4c21163fcd2c1e802830db957656af92bd03d128e9dc35234bcd6d801a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0231925ac60dfae2fd593b5648a98880b5151abe7397dc5c7f283d1df80d7b0f
MD5 69732bff89da60e34cee34062ff86ec4
BLAKE2b-256 78fb3d1bd391b349a9a5daf5aeecadc573d0e3f0cb844d953377464442c8b416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0290b82b22d6844f0a1da7c3c4a64479d8f6f96bca0b740e75af221466f1976f
MD5 fa5f0862ff172d79513d6cc7bb211917
BLAKE2b-256 55884b433b52cec98924a8112f5bbb00423c0a96f4b73eb8415f184663a5c47a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7aaca7cd3a79490f75bb524bb3ba5c7c02772ddf4d0161a6167206c0e52612bb
MD5 0ed73dfc6e9a141238fe55cdb799a067
BLAKE2b-256 99c2200d9757976c9e868a047b202a68879872bbc08748bf6ae1726c4d4e2a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 118634d15bf870aa175dc9a0a49bfcd1cd00222195ce170d5ffe9d6850aca2d3
MD5 236edf587bd735f27d3c2515530cfc50
BLAKE2b-256 f77f7902c04181c87c41b4b5a27ac23b9f714e0d26da152cffab5135a94b0828

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.4-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.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 387ca6d1a45613c1343c64560aa954ef799937e042905ab8a226a176bb7d61c1
MD5 9ae1440752e2c9728ea203c9bfc86e96
BLAKE2b-256 b6a9266b241eb0e33adf673c5363e43f81e3f238109efc9f915704ffc46eceb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06d02360afb4538d77de3236ea2177d1444f9b7a79959b1e237f1efe9a62eb9b
MD5 4ed3416f3f4a4b85d75847fcfc094889
BLAKE2b-256 a53534f17895c987e82bc3f902d0efb4ac3f491c8b8e8f2d34a54092107dea0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f51d108a476eab8ed55e31cf7840587c983e81b4b5ed1c6beecaba0147d75a2
MD5 1449761f9871ec4f4ce04eea08806e8e
BLAKE2b-256 07b13be231f46dd8032952dc0408941bf006de3fd69ad1af3e0b61e31e7f9c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c6795aa30afcd380872eb1b95bbe19e943f8cdecbce2314dd435a6d3ede6958
MD5 98d108ef0b9004d632fb90d0cf2af81a
BLAKE2b-256 b2af7b586921b9082369795956dc96e4bbe16dea355b303cbe791320fad23cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a42aa8e36b3875f49779fc9f840460e7a84f0727d848c0750409aa130a95d7e8
MD5 814f37790e86e20cddd78f789b16c355
BLAKE2b-256 aad9fd6624fd1b61a71dea9a5b396266b2208af32bcaac8046f065163916e441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4876f1f1c5b02a580da74520766f8804b394195380263c0b962d5f9d0681c390
MD5 91f7dc936a15f67ecfcf6d65b0f9cc79
BLAKE2b-256 91895853476926e635d5dc7d8728bfd18a55d9c22552f1125ab40c3454007d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 003b0b22a5996e5fdaa65c7d42a7d92e99d567181bc51769ae053012cd7b7ca5
MD5 7d89ed4182f81a32c84e9b7d19a692d0
BLAKE2b-256 94994b5a8ab192c7845af34d506fa2633d239b8f8d2c3ea8b6e858f2ffb992ff

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