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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.8.3-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.3-cp310-none-win_amd64.whl (179.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.8.3-cp310-cp310-macosx_10_7_x86_64.whl (311.3 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

rpds_py-0.8.3-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.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: rpds_py-0.8.3.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.3.tar.gz
Algorithm Hash digest
SHA256 3620464fe3fee23dd1bf7b68546b0120bec4713fd99e5f63829d8bcc13336376
MD5 e5ed18aea43eff08fceebe248094c443
BLAKE2b-256 a7417f3116eeb468cdf64d39326c1f66224cff376ea43b37859ba58c96bcbcf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25f7ff27c5bc459bd99742fe0b024a7a26239f5c32f33774a86a6eb65ac8f980
MD5 ce5fbe3d6088123647774df89ba3e938
BLAKE2b-256 e6abffcde1e5a97990bd561e0a6a3d2c16e4df37aeddc62ef9e4bcb170343e13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbf962ae0f368af4c600d7d42bbb08f291f64f616fa46cd60e7db00530825b05
MD5 5fb45f417570a9c42dcd38083db062bd
BLAKE2b-256 db2ecac5d817b6a16c7c0f292390656a12d04ec88f7e092bd350a6d5da470a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5565a984131d63b9a3b7542f74d1d57f38509da17afe72c885e32a4c2f347d82
MD5 b72acb8bf954d54aa3d2b8ed729c4fbb
BLAKE2b-256 6e56f942672c8bfe63a8ccb602d730cd074247c503a67fb6fdd95150a057cf0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 250c3a18a1c84f914cf4b761d8a011bee8825df925f6f87fc4e9b6a854394a8e
MD5 3265ad0d4c898a30ea3dfeb9f3c4a473
BLAKE2b-256 2980668ca90401f64e35230852694d8ab74b8aca0721207b79f39c19c99ba6dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8b53cc79ace2f0dba3a98a8a22d7afbecfe54097cc8f942002a954012b2846f
MD5 1261ae4731b7cddaedfa9bf2aee99d50
BLAKE2b-256 28e3c3fd4195b004054397eab08b5e669d6cadfade8e14829913b41f183d5e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e8ee7237a89998d650a879e4c9b8bc19c33e92acb0077e99161c2a9a54e7c1f
MD5 1475513a86e3fb8b7f85b2788c6f3682
BLAKE2b-256 2c525ea33997df39ba43a899d58763b9c11a0b66c3d11fbc8abbabb6d2c8c79f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4890dbcbb1e9b7e209c252658828fa0cff53ad8a46ce6193b65906e5b24a6e7c
MD5 d582cc6917f62b3b15f30c4e6d70e030
BLAKE2b-256 1e2aeec2f3fe4072b296ac46a2363f75b738e7db2f5af344c8d20617065ffd5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f49e2a7c0462bf6b414d2f553ac5375d833c0e8b0373d5bb00d629c4c2b2f37d
MD5 b9457f17913693f62ac33d543ca2b724
BLAKE2b-256 e4da095629c1a581aa4469c906aef4b5e99af26621a956b7f117b6ea304e9f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d94ac0a659589ceb8ad4c7e0464ea928871c1b791f8a710babc018e2a1a74533
MD5 989e6fd6ab879015edb48ad8edf3d3b5
BLAKE2b-256 b1c0fe7e4d39382d866e588193fd2106662edd2783ef65401f6fdf3c1ad8ed77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00e25ae6e74efffe761a39be7b92a3cb7dbdf2e96d8653995c77f3aaaa46d6f7
MD5 7ab1b6e931147c881141c8dff268acc7
BLAKE2b-256 61afa762da375271589e3b5ce2d42dd1f9edf8e5cd402cd69d16353ac8ea9be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de2e483f29aa252e4af45f7c2df98342a91768f9b9b04a23ca6da9c1f365208d
MD5 c3e39d8c96122521701cc584a1469474
BLAKE2b-256 a07a39b2b90f3ffa9b89dcb5b06d191624971bdaa15c2212452accdb159344ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 94ac90626b0a2e783a55658a34f41cdbdafb7269e769af8bdf552dd7bfc598d5
MD5 c380c8c1882ff4fe1350e53985375862
BLAKE2b-256 41a80bda8b98d1737d1ac6a784cf97566b517fc9b1ae84298ae0e633c6311755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9ff28c293f57a4b9a18cfc59fe770280f964587a36831b08859d00621d34c1c1
MD5 f14ae86781d2a8f5796fa07f516714bf
BLAKE2b-256 ce8780f3c97204fbfc36d0ce6ee83bf5be732283a7f30bb3cb5cf1a5a1c8e2b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.3-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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b7aec564acbb9f94550c1b9f1e2186514d74276df08c8eb531754d980b2be213
MD5 fcf3eab539ca0cab383de2f5adf3edbd
BLAKE2b-256 611069739cbf2bf66834fa3d26ab3d9354d3148dce7786f7a9b0c44a0db86d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb9826d377f4d3bd7096e329b815ed55648e5472dab84be9490f85b8004193d4
MD5 b82b044f6088916417faa6ff5c880d99
BLAKE2b-256 b1665268b9a52c9b89c4b27cbfb955203aedeabb0c04bd5b3c08a6ed6a21c02c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0928a9e2188d5e3a037f5413130674c57d9a3a6bdc4a809319fcd3704f950233
MD5 e045e4aa5582d540ed7313c5313cd55a
BLAKE2b-256 96b050ae15700d7f39cfbce051136f86316e86ebdfd1927bb8eb25e499098a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3cd0475538abaebd2a7fa21eb28356347b00c58ca53b9cede859921d19d1edf
MD5 e28ebe46bf93e90a25105fce54f80786
BLAKE2b-256 4057dcd5551219f16a7d08a405ccd52243caa496268eb68f79bf266f5e4d776c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3f565657351e7c8ea4b5fcdd37321f985b6957cab69b2ee1e38dbe6b81a76e9
MD5 bbc88ca563cf5fa930d92730669d207a
BLAKE2b-256 194710f79d463bbf1f072cefd5dcac7f11fc2b3e9b50747df5b6107bc229a13a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef6c45869883078578b61b12cd06a4e189a7a7d5c084b27768a026ee0d0d6083
MD5 dc3df753a4dba0b0cafed9394ff4f77c
BLAKE2b-256 4b46a8e536bfae58c898c1056347a4ef06bae0bfe933210f2ea1a09fc72da68e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 793366505a90401905e2b7c47e725029328025ab3a0cd9a9807a6d50b0ac74a1
MD5 db593ac18eb449ce01f48d91d1182b5f
BLAKE2b-256 dd7389b9ca3263aeb012d083c786cc1715d92084b84f45661538f88a412f31c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f50df3eef018da4f8175f2da2f0a873a9483abd240684cb20172c289f43be046
MD5 354bde16877a25fd4676b547e6ccbe68
BLAKE2b-256 26f30667dad70bf5a59e351eed0cae005d833705a148aa6151acb27b79381b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5509c7f65bbee77e05a5a0d4a48174aad8dfc95db6b9d68bf00ac5ca85e867c5
MD5 ef584358d8d64f199c1bc0742740d9fe
BLAKE2b-256 47ba8118af28ce8f485f4c075f045ebe6ad6da02d3f0d85c3782d2eb09061c11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f6d010dc24e6f83badcada983b7b162ee7a4ce5c7c1c971640e9b9130cabcc3e
MD5 9ea280808dc724aa6243c93f973e3ae8
BLAKE2b-256 25386c7ad645e10cd9128dd89bbdc2bdf28b6ecf0a2542d9493734dd96160f96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.3-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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6810e58696e3f38a0c2590a3eec3a9f0f83c07d4b3e1d0c5050c7396a48d2dee
MD5 1fd6de4b0e1534d152ed64da38686a20
BLAKE2b-256 8385c006a17b5a8565a6e74388af5d6089026b90702129d655acece387a08097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98ac9fe4d064a37c6cde770bfc8d77d3c4801ce42be56dbb1fdab6313a309a97
MD5 ef4f4fd6e30380267c070af1b1cab3a7
BLAKE2b-256 baae9b7badad6643afcecdc420d1cfab35d32d1aff42e7233ca29d4ad7d304d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6bd4e774be893b7a3f4e94209e84fd9f834631cf57dc90ca55b00975a730c9e
MD5 8f44f2b6a745c3d3537d085473cc2c53
BLAKE2b-256 c57df6334efeb10305abb26d14884a6167cfbb7e57275e0066d3022c1d9c8337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c7c9c94c88a562158111e1572f33a189d1f2f77c47dcaeb26b129afdbf84fe0
MD5 7141d6914057853a2d0d44be1b632135
BLAKE2b-256 0deb01b73377ba786061647c0d7f790ffd3da0b0197376ce6fbc1a5ac556565b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 713d7db206e08ef7b2f6aa1e848dd3896f5cbbdb5d4106ca70aeb657b75cd2dd
MD5 09e635959432c490451e08d8739a030c
BLAKE2b-256 f93871df3d4c56738434858e98f4aec85c1d2d90bb417326f3eb310e89fcfcff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aba533458c944b41a85f67f9a9e277de70ee717845ede7a7096e9cd9d0accc20
MD5 6cd41c1b61dd844d127d6fc019149c54
BLAKE2b-256 4864f70da79cfb5acfd9d60992bbe25bb3c05015c423d13d2a1da9b0b1f13c9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a55e48163f9af3adf3f6724527837fa7cdbfa0bd98cc5065ddb7845f19146de
MD5 ad21e66bfc27ad23472a95c14515c591
BLAKE2b-256 d757f9eb07f5d97f5991dbb528e01c3c788c1f1c701b22da25794c5b3c09c853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c28417fa4f3dfa417dea621a324f5bb13551a125a4ed2cde9b881563556d5f5f
MD5 f74b61264b6ac12f198c000a71346e1f
BLAKE2b-256 df6af394992bbce6f4b2e772b3f4e71327186047fe2a330a51e90ab3ae69f56f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6cdfbfce89d249758683a6ea4c6bab652d73cd4a324fb1d8910843de26c0b12e
MD5 e6ebe0ae50231ba1514917d26eeeb8d2
BLAKE2b-256 0823239701b09d9197899fc76419afc3c4f7c7cfeb7ab4b242bd1249671ab674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 81879d8df61237008d3f8dfb4cbc07b36e1c728683f1a84ba897bb9e8ea60d63
MD5 64dee87574db6ce6f59f0b268c3d2d38
BLAKE2b-256 517afb99578a1891ff38b0e503549b6cc866c40d92ba9a9edd9e959ecd4d41f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.3-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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 496c1386c23b637739e684f0ab1ee44731cf652c7d8c71a910272d76ccf75272
MD5 f22b4a991135b84d62cc8196a0456f84
BLAKE2b-256 bff5d6f6099e59d1eef74e6ec12255140218d8456caabd015d92f122c5589473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0104b661801e62e51cd8fe50761a6e26fdb597272be232180a0b6ab254bba963
MD5 e8f0c2125a5f4107bb9548d7f8c09b93
BLAKE2b-256 2974e9ec7f52b3844f3a06e64aaeb1e47498a7d70029e396eff214b555ba1e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60fc4dd14e5d233aa1b932ed02154a8de688198a4ea8f1148f4f871479476246
MD5 199a7f1318dc4181f68e187bb1d49a7b
BLAKE2b-256 19c100348c667e16738a791a71569540d546a3472f043b69da8a9e765d43abb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82b82e382679360f341369447d0be825ae37fe65f480eb43262a4e7dfaed7d92
MD5 25631096e7cdda2fad98a4f3324a6936
BLAKE2b-256 9bf726634099017df5002edcb442208d765557bef81ecc00e25cc20af004770a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 974b3b65b2b0737e6a7f06b336babdef0b84a8103f8bd3a1a0d953564f216cfb
MD5 0db2271f771fb9a6752304aab2dbb920
BLAKE2b-256 6a112ace8fdbb403d2420b968c22ae8f7ab02188e35ef11ae126cd0c2f4d4a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52fd535630eb83cfdfebbffa5d8bce18d70b4898be5ef3a89637939e9bd83c32
MD5 558b23bd0fa5c8bb23f0a49b46010e87
BLAKE2b-256 82f5d453841f6e1fb684ace119d0d67ad6294a51feeea07cc8d3e10a90407527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 343f14b49af7f2a3862e74173bee235e587c4d5ab249882da645389231cd26ba
MD5 005f544dbae5be5e2ec094f7ac5b2bde
BLAKE2b-256 a5ff2ca8712544126c582c75b0c9ad2887b19ae8e4aad9f1a44f1eadada1611f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d12f0e8c01245c6619e9d0dae90d00ac7838680692d6f3d468bddaec79498760
MD5 fc4993f1c4e797e10bd9481b32eac3eb
BLAKE2b-256 e0e8228be9be310883a8abb1f1c1f398732f7ad56ca7c94732269fbdac874c01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.3-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.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 235691dd87ca9948fdb55e9165a0ef2819abd7b13aebe3bfe4b958dec4164bcf
MD5 4526144ebf2a71862362ee5bc1e4249f
BLAKE2b-256 cad7abb3a3d1ed698f5dbb40d26b27d977e66878e4571c514513de4ace02d3fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0a48048a4184cdeb62ed2849aa84b522c49dbc023a4a879b42a84b3260ab7be
MD5 89860e5ff1a68de92d60c8ff156034d8
BLAKE2b-256 37104decc3d752a077d3af1b64fd79c25b38296c4a25edace03ab0325f4b6f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e8275dcf634e4998ebd5d5b7769543b3003ebd8838e7e36fd3dbcab17666d07
MD5 ec1ae6680beb72143bcdd804ca8b4561
BLAKE2b-256 6444ea14f696d175647cd830e15ef74df6ebb98c859ffd9f05afc621a5b2621a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f2b1667a441c47713a0037b7c904a2f125eb15692b64b65858099e87c49f3ea
MD5 29ab154f6e539b109d1b7b9007334ed6
BLAKE2b-256 4b088ba01ce44721931601a21ee4c9a0db55b0511a0ee4039399105f2cc19a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb15e484b7e97078a2f638a4c70f907d5ec2a480ba2546a61c314869778c5c9c
MD5 92edc45f803408d80510db5a9cc674fe
BLAKE2b-256 0e8656a258c74e0039c7483e591de7ed8905e1c387bb2fc23b4871028ff2f71a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60e326d3637b9f200e509d4fd4536a8bb6814deba271ebe2193899643ec0323e
MD5 6762639d6b9a3244ca33a5c57439fa77
BLAKE2b-256 3f34a799504d5931304c8cd8471872a82539ed31ac83a5ff4c53a2259df895cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a192a9c3d9baeb2f57daf854f887a34e5d5af2c7da678b070443f5ddc799c0ec
MD5 dcb11fd2db6a9b4e3e9e3949e5a387b5
BLAKE2b-256 230f45f7fb27172952ab87b91d3a9571f69bafbeeb7ff382970a20e192eacf68

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