Name | rpds-py JSON |
Version |
0.23.0
JSON |
| download |
home_page | None |
Summary | Python bindings to Rust's persistent data structures (rpds) |
upload_time | 2025-02-20 17:12:19 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT |
keywords |
data structures
rust
persistent
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
===========
``rpds.py``
===========
|PyPI| |Pythons| |CI|
.. |PyPI| image:: https://img.shields.io/pypi/v/rpds-py.svg
:alt: PyPI version
:target: https://pypi.org/project/rpds-py/
.. |Pythons| image:: https://img.shields.io/pypi/pyversions/rpds-py.svg
:alt: Supported Python versions
:target: https://pypi.org/project/rpds-py/
.. |CI| image:: https://github.com/crate-py/rpds/workflows/CI/badge.svg
:alt: Build status
:target: https://github.com/crate-py/rpds/actions?query=workflow%3ACI
.. |ReadTheDocs| image:: https://readthedocs.org/projects/referencing/badge/?version=stable&style=flat
:alt: ReadTheDocs status
:target: https://referencing.readthedocs.io/en/stable/
Python bindings to the `Rust rpds crate <https://docs.rs/rpds/>`_ for persistent data structures.
What's here is quite minimal (in transparency, it was written initially to support replacing ``pyrsistent`` in the `referencing library <https://github.com/python-jsonschema/referencing>`_).
If you see something missing (which is very likely), a PR is definitely welcome to add it.
Installation
------------
The distribution on PyPI is named ``rpds.py`` (equivalently ``rpds-py``), and thus can be installed via e.g.:
.. code:: sh
$ pip install rpds-py
Note that if you install ``rpds-py`` from source, you will need a Rust toolchain installed, as it is a build-time dependency.
An example of how to do so in a ``Dockerfile`` can be found `here <https://github.com/bowtie-json-schema/bowtie/blob/e77fd93598cb6e7dc1b8b1f53c00e5aa410c201a/implementations/python-jsonschema/Dockerfile#L1-L8>`_.
If you believe you are on a common platform which should have wheels built (i.e. and not need to compile from source), feel free to file an issue or pull request modifying the GitHub action used here to build wheels via ``maturin``.
Usage
-----
Methods in general are named similarly to their ``rpds`` counterparts (rather than ``pyrsistent``\ 's conventions, though probably a full drop-in ``pyrsistent``\ -compatible wrapper module is a good addition at some point).
.. code:: python
>>> 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
Raw data
{
"_id": null,
"home_page": null,
"name": "rpds-py",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "data structures, rust, persistent",
"author": null,
"author_email": "Julian Berman <Julian+rpds@GrayVines.com>",
"download_url": "https://files.pythonhosted.org/packages/ca/0e/4c797078d00dbf1f63af96e4b3beffb67f71230f58442272b4b1962a61c8/rpds_py-0.23.0.tar.gz",
"platform": null,
"description": "===========\n``rpds.py``\n===========\n\n|PyPI| |Pythons| |CI|\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/rpds-py.svg\n :alt: PyPI version\n :target: https://pypi.org/project/rpds-py/\n\n.. |Pythons| image:: https://img.shields.io/pypi/pyversions/rpds-py.svg\n :alt: Supported Python versions\n :target: https://pypi.org/project/rpds-py/\n\n.. |CI| image:: https://github.com/crate-py/rpds/workflows/CI/badge.svg\n :alt: Build status\n :target: https://github.com/crate-py/rpds/actions?query=workflow%3ACI\n\n.. |ReadTheDocs| image:: https://readthedocs.org/projects/referencing/badge/?version=stable&style=flat\n :alt: ReadTheDocs status\n :target: https://referencing.readthedocs.io/en/stable/\n\n\nPython bindings to the `Rust rpds crate <https://docs.rs/rpds/>`_ for persistent data structures.\n\nWhat's here is quite minimal (in transparency, it was written initially to support replacing ``pyrsistent`` in the `referencing library <https://github.com/python-jsonschema/referencing>`_).\nIf you see something missing (which is very likely), a PR is definitely welcome to add it.\n\nInstallation\n------------\n\nThe distribution on PyPI is named ``rpds.py`` (equivalently ``rpds-py``), and thus can be installed via e.g.:\n\n.. code:: sh\n\n $ pip install rpds-py\n\nNote that if you install ``rpds-py`` from source, you will need a Rust toolchain installed, as it is a build-time dependency.\nAn example of how to do so in a ``Dockerfile`` can be found `here <https://github.com/bowtie-json-schema/bowtie/blob/e77fd93598cb6e7dc1b8b1f53c00e5aa410c201a/implementations/python-jsonschema/Dockerfile#L1-L8>`_.\n\nIf you believe you are on a common platform which should have wheels built (i.e. and not need to compile from source), feel free to file an issue or pull request modifying the GitHub action used here to build wheels via ``maturin``.\n\nUsage\n-----\n\nMethods 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).\n\n.. code:: python\n\n >>> from rpds import HashTrieMap, HashTrieSet, List\n\n >>> m = HashTrieMap({\"foo\": \"bar\", \"baz\": \"quux\"})\n >>> m.insert(\"spam\", 37) == HashTrieMap({\"foo\": \"bar\", \"baz\": \"quux\", \"spam\": 37})\n True\n >>> m.remove(\"foo\") == HashTrieMap({\"baz\": \"quux\"})\n True\n\n >>> s = HashTrieSet({\"foo\", \"bar\", \"baz\", \"quux\"})\n >>> s.insert(\"spam\") == HashTrieSet({\"foo\", \"bar\", \"baz\", \"quux\", \"spam\"})\n True\n >>> s.remove(\"foo\") == HashTrieSet({\"bar\", \"baz\", \"quux\"})\n True\n\n >>> L = List([1, 3, 5])\n >>> L.push_front(-1) == List([-1, 1, 3, 5])\n True\n >>> L.rest == List([3, 5])\n True\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python bindings to Rust's persistent data structures (rpds)",
"version": "0.23.0",
"project_urls": {
"Documentation": "https://rpds.readthedocs.io/",
"Funding": "https://github.com/sponsors/Julian",
"Homepage": "https://github.com/crate-py/rpds",
"Issues": "https://github.com/crate-py/rpds/issues/",
"Source": "https://github.com/crate-py/rpds",
"Tidelift": "https://tidelift.com/subscription/pkg/pypi-rpds-py?utm_source=pypi-rpds-py&utm_medium=referral&utm_campaign=pypi-link",
"Upstream": "https://github.com/orium/rpds"
},
"split_keywords": [
"data structures",
" rust",
" persistent"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9c39c2b2337f0dd0494a7e66eb3f114dde2a08c613b9374f52fdec8c38890def",
"md5": "62b9bb44130d80dc68c272413f721d44",
"sha256": "1b36e993b95f0744a94a5add7624cfaf77b91805819c1a960026bc452f95841e"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "62b9bb44130d80dc68c272413f721d44",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 372147,
"upload_time": "2025-02-20T17:08:35",
"upload_time_iso_8601": "2025-02-20T17:08:35.394405Z",
"url": "https://files.pythonhosted.org/packages/9c/39/c2b2337f0dd0494a7e66eb3f114dde2a08c613b9374f52fdec8c38890def/rpds_py-0.23.0-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c19cd8c3bc46b5151db48b9f411cc7cd957766220f93d0edcb8cb81cdc8b192",
"md5": "3271dc4882a602f98316e66a5ae50c9d",
"sha256": "72a0dd4d599fadaf519d4e4b8092e5d7940057c61e70f9f06c1d004a47895204"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3271dc4882a602f98316e66a5ae50c9d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 356821,
"upload_time": "2025-02-20T17:08:38",
"upload_time_iso_8601": "2025-02-20T17:08:38.613002Z",
"url": "https://files.pythonhosted.org/packages/1c/19/cd8c3bc46b5151db48b9f411cc7cd957766220f93d0edcb8cb81cdc8b192/rpds_py-0.23.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c201da56c2a7ca4dfdb8809d9a6a8a28c3addbff67801f01d2f9fdc65accb77b",
"md5": "ede9020c4b4d96fbbcb8dd20f6c31b78",
"sha256": "bba83d703c6728a3a2676a14a9649d7cc87b9e4654293f13f8d4b4d7007d6383"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ede9020c4b4d96fbbcb8dd20f6c31b78",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 386041,
"upload_time": "2025-02-20T17:08:41",
"upload_time_iso_8601": "2025-02-20T17:08:41.248905Z",
"url": "https://files.pythonhosted.org/packages/c2/01/da56c2a7ca4dfdb8809d9a6a8a28c3addbff67801f01d2f9fdc65accb77b/rpds_py-0.23.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6b4113a77a972f92571b12bb596aea4c2d2b80b05ef334a5c330816d07c536c",
"md5": "5f8d2b5ee80e8f6847e0444a07b9e8aa",
"sha256": "1191bf5975a0b001c161a62d5833a6b2f838b10ff19e203910dd6210e88d89f5"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "5f8d2b5ee80e8f6847e0444a07b9e8aa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 392084,
"upload_time": "2025-02-20T17:08:43",
"upload_time_iso_8601": "2025-02-20T17:08:43.810798Z",
"url": "https://files.pythonhosted.org/packages/b6/b4/113a77a972f92571b12bb596aea4c2d2b80b05ef334a5c330816d07c536c/rpds_py-0.23.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "112772ba0416f0d96f60c9d8ca5ba5d4fdd8b934450005a40249c7ef34e54a8f",
"md5": "944c908a6a45d2cf6142872a1d9b46b5",
"sha256": "3154e132e685f907813ace8701721ad4420244f6e07afc2a61763894e8a22961"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "944c908a6a45d2cf6142872a1d9b46b5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 445971,
"upload_time": "2025-02-20T17:08:45",
"upload_time_iso_8601": "2025-02-20T17:08:45.680468Z",
"url": "https://files.pythonhosted.org/packages/11/27/72ba0416f0d96f60c9d8ca5ba5d4fdd8b934450005a40249c7ef34e54a8f/rpds_py-0.23.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dbe6c6d46137847b6add2e93ce2190f7bf190b72e7e19c78e96192e8c66d84f7",
"md5": "8dd3f2f2e92093b778e0791eab1dece1",
"sha256": "62d8fe953110a98a118cacdc1ca79fe344a946c72a2d19fa7d17d0b2ace58f3d"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8dd3f2f2e92093b778e0791eab1dece1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 448102,
"upload_time": "2025-02-20T17:08:48",
"upload_time_iso_8601": "2025-02-20T17:08:48.206572Z",
"url": "https://files.pythonhosted.org/packages/db/e6/c6d46137847b6add2e93ce2190f7bf190b72e7e19c78e96192e8c66d84f7/rpds_py-0.23.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1df9eca747830f4e687afbf78c573554aa46775f0c89d81f584e8ec49c80149a",
"md5": "258bef5e1ac236073d08241635ecda24",
"sha256": "2e27dfcea222c81cd8bece98a73ebb8ca69870de01dc27002d433ad06e55dd8b"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "258bef5e1ac236073d08241635ecda24",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 386631,
"upload_time": "2025-02-20T17:08:49",
"upload_time_iso_8601": "2025-02-20T17:08:49.929516Z",
"url": "https://files.pythonhosted.org/packages/1d/f9/eca747830f4e687afbf78c573554aa46775f0c89d81f584e8ec49c80149a/rpds_py-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38e0d6db6913ed3713c3bfd7e4661cb15663cb7264c981f7b0c9fa2d1e766aaf",
"md5": "2c94629e0ec9915b375cd9fbd7049ec3",
"sha256": "7cca21adfefe5a2237f1e64d769c1ed7ccdc2515d376d1774e7fbe918e03cd8c"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "2c94629e0ec9915b375cd9fbd7049ec3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 415922,
"upload_time": "2025-02-20T17:08:51",
"upload_time_iso_8601": "2025-02-20T17:08:51.726902Z",
"url": "https://files.pythonhosted.org/packages/38/e0/d6db6913ed3713c3bfd7e4661cb15663cb7264c981f7b0c9fa2d1e766aaf/rpds_py-0.23.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfdf241701a9f48257e285b8b2dbe9cf960a2b43620e7c23e2d3d6edec88b57f",
"md5": "486221a8d60ad74d50532c7023548f7f",
"sha256": "8c708f5c2d604e0acc9489df3ea879f4fc75030dfa590668fd959fda34fcc0b8"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "486221a8d60ad74d50532c7023548f7f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 558329,
"upload_time": "2025-02-20T17:08:53",
"upload_time_iso_8601": "2025-02-20T17:08:53.431977Z",
"url": "https://files.pythonhosted.org/packages/cf/df/241701a9f48257e285b8b2dbe9cf960a2b43620e7c23e2d3d6edec88b57f/rpds_py-0.23.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9dc02ba807c157b776247605b106cf4c9511ced66afc14aa6cdb0fa89eefd69a",
"md5": "25d008cb72839f4cfbf1c6d1b84c4ace",
"sha256": "c23cbff21154951731866358e983d01d536a2c0f60f2765be85f00682eae60d9"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "25d008cb72839f4cfbf1c6d1b84c4ace",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 585099,
"upload_time": "2025-02-20T17:08:56",
"upload_time_iso_8601": "2025-02-20T17:08:56.026549Z",
"url": "https://files.pythonhosted.org/packages/9d/c0/2ba807c157b776247605b106cf4c9511ced66afc14aa6cdb0fa89eefd69a/rpds_py-0.23.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "139cc89ab214ce56a696bd1238c1f1f763de1921eff7ccf4f1ee8f1126e71b07",
"md5": "ceda47555c160b6b7c5230f07f99be48",
"sha256": "16826a5346e293bedf0acd5c2f4c8e05415b1970aa3cc448eea19f02724dd453"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ceda47555c160b6b7c5230f07f99be48",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 553833,
"upload_time": "2025-02-20T17:08:58",
"upload_time_iso_8601": "2025-02-20T17:08:58.612685Z",
"url": "https://files.pythonhosted.org/packages/13/9c/c89ab214ce56a696bd1238c1f1f763de1921eff7ccf4f1ee8f1126e71b07/rpds_py-0.23.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7333807356b2f364cf5f0a0abe0fa103a8653d810100a346a7487c8185551fbf",
"md5": "1e8ec6303813aaf88caefb7a224102f6",
"sha256": "1e0fb88357f59c70b8595bc8e5887be35636e646a9ab519c1876063159812cf6"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "1e8ec6303813aaf88caefb7a224102f6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 220694,
"upload_time": "2025-02-20T17:09:00",
"upload_time_iso_8601": "2025-02-20T17:09:00.272410Z",
"url": "https://files.pythonhosted.org/packages/73/33/807356b2f364cf5f0a0abe0fa103a8653d810100a346a7487c8185551fbf/rpds_py-0.23.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1fea0b8e4545125489821ca0b48368dc3815967f0e0f7dd7e8128a06fd078f8",
"md5": "423861b97a795158699c112f5e07d8d0",
"sha256": "c79544d0be2c7c3891fe448bc006666410bc219fdf29bf35990f0ea88ff72b64"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "423861b97a795158699c112f5e07d8d0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 232519,
"upload_time": "2025-02-20T17:09:02",
"upload_time_iso_8601": "2025-02-20T17:09:02.617936Z",
"url": "https://files.pythonhosted.org/packages/a1/fe/a0b8e4545125489821ca0b48368dc3815967f0e0f7dd7e8128a06fd078f8/rpds_py-0.23.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "521523b410a7c69910830334be21c243aecc1e7108fb8e18cbe6d0444c12a3a7",
"md5": "553937815285820f370eb732d92e686e",
"sha256": "827b334702a04df2e1b7fe85ed3784512f6fd3d3a40259180db0c8fdeb20b37f"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "553937815285820f370eb732d92e686e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 372317,
"upload_time": "2025-02-20T17:09:04",
"upload_time_iso_8601": "2025-02-20T17:09:04.174095Z",
"url": "https://files.pythonhosted.org/packages/52/15/23b410a7c69910830334be21c243aecc1e7108fb8e18cbe6d0444c12a3a7/rpds_py-0.23.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "728ad4fcda85b8504b17c5fe0536aef69ba54c72cbf8bfdd4bf204ce7fd7077d",
"md5": "ff95c42d9f0d3dc8c3d6489fea77cfaa",
"sha256": "0e1ece346395e127a8024e5c13d304bdd7dbd094e05329a2f4f27ea1fbe14aa3"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ff95c42d9f0d3dc8c3d6489fea77cfaa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 357029,
"upload_time": "2025-02-20T17:09:05",
"upload_time_iso_8601": "2025-02-20T17:09:05.736623Z",
"url": "https://files.pythonhosted.org/packages/72/8a/d4fcda85b8504b17c5fe0536aef69ba54c72cbf8bfdd4bf204ce7fd7077d/rpds_py-0.23.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "314b73a1b121b204f78ccd8977ea5fa29c47805368e76c5f298f431cefa99701",
"md5": "63502b15af7200acf1cef7d73958dd20",
"sha256": "3adc0b2e71e62fde524389634df4b53f4d16d5f3830ab35c1e511d50b75674f6"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "63502b15af7200acf1cef7d73958dd20",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 385916,
"upload_time": "2025-02-20T17:09:07",
"upload_time_iso_8601": "2025-02-20T17:09:07.285193Z",
"url": "https://files.pythonhosted.org/packages/31/4b/73a1b121b204f78ccd8977ea5fa29c47805368e76c5f298f431cefa99701/rpds_py-0.23.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7ac1a36dfce2fcf1c48f5683de9cc544c8dbb0b234cede287d9b4b529b83282",
"md5": "bd04b186402d467e105d130f2f103dca",
"sha256": "b1eb4757f9c9f96e26a420db97c3ecaa97568961ce718f1f89e03ce1f59ec12e"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "bd04b186402d467e105d130f2f103dca",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 392393,
"upload_time": "2025-02-20T17:09:08",
"upload_time_iso_8601": "2025-02-20T17:09:08.941086Z",
"url": "https://files.pythonhosted.org/packages/a7/ac/1a36dfce2fcf1c48f5683de9cc544c8dbb0b234cede287d9b4b529b83282/rpds_py-0.23.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "506d53abb5a78113e6ab7848caf3efaad8331ff5f6b69b921e1697a03e1becf5",
"md5": "7e0139c9acb64ce4e2dac42c6444468a",
"sha256": "e17402e8f3b49a7ec22e7ef7bbbe0ac0797fcbf0f1ba844811668ef24b37fc9d"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7e0139c9acb64ce4e2dac42c6444468a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 446085,
"upload_time": "2025-02-20T17:09:10",
"upload_time_iso_8601": "2025-02-20T17:09:10.588992Z",
"url": "https://files.pythonhosted.org/packages/50/6d/53abb5a78113e6ab7848caf3efaad8331ff5f6b69b921e1697a03e1becf5/rpds_py-0.23.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6abc7ea54464f685fb7d1c5ff4c580381deef946fdd693f0817cd4825bdd88e5",
"md5": "0ef82120e5f40f8cf7cf439a7dc5c777",
"sha256": "8212c5d25514386a14a032fde7f7f0383a88355f93a1d0fde453f38ebdc43a1b"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0ef82120e5f40f8cf7cf439a7dc5c777",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 447603,
"upload_time": "2025-02-20T17:09:13",
"upload_time_iso_8601": "2025-02-20T17:09:13.303180Z",
"url": "https://files.pythonhosted.org/packages/6a/bc/7ea54464f685fb7d1c5ff4c580381deef946fdd693f0817cd4825bdd88e5/rpds_py-0.23.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "421256bb6ce379b3221df6a9935709838dedc6cf37b89526b3a09a257b514be2",
"md5": "c8ee828ea384e5cb5df51576ed46ca2b",
"sha256": "5211b646a0beb1f8f4b1cde8c7c073f9d6ca3439d5a93ea0874c8ece6cab66a9"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c8ee828ea384e5cb5df51576ed46ca2b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 386630,
"upload_time": "2025-02-20T17:09:14",
"upload_time_iso_8601": "2025-02-20T17:09:14.949650Z",
"url": "https://files.pythonhosted.org/packages/42/12/56bb6ce379b3221df6a9935709838dedc6cf37b89526b3a09a257b514be2/rpds_py-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8f25428a298394ca06fd80a812e56b33a00d439d9df1481316b8b9ec6143f95",
"md5": "08b2fa0ba684ff256df6159fc9ad3b55",
"sha256": "83f71359d81cfb3bd39522045d08a7031036fb0b1b0a43a066c094cc52a9fd00"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "08b2fa0ba684ff256df6159fc9ad3b55",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 416041,
"upload_time": "2025-02-20T17:09:17",
"upload_time_iso_8601": "2025-02-20T17:09:17.732598Z",
"url": "https://files.pythonhosted.org/packages/d8/f2/5428a298394ca06fd80a812e56b33a00d439d9df1481316b8b9ec6143f95/rpds_py-0.23.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02f366bc3656fcff45fa0954113f409d1f6cdd9c1cefcc1c49d5f9c45526acaf",
"md5": "4b903b6594d68fa4aaa0e8b761bbbbe0",
"sha256": "9e66aaa24e0dc3cfaf63a8fc2810ae296792c18fb4cfb99868f52e7c598911b6"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4b903b6594d68fa4aaa0e8b761bbbbe0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 557641,
"upload_time": "2025-02-20T17:09:19",
"upload_time_iso_8601": "2025-02-20T17:09:19.561294Z",
"url": "https://files.pythonhosted.org/packages/02/f3/66bc3656fcff45fa0954113f409d1f6cdd9c1cefcc1c49d5f9c45526acaf/rpds_py-0.23.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e70c3fad69ea0c64e496cac0b6c85ca3e12edadbaa65938130fc714227d02634",
"md5": "4d1f1e376a8bec02d56e459d7c88ffdd",
"sha256": "35336790b4d70c31a59c922d7d603010fe13c5ff56a1dce14849b6bb6a2ad4b9"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4d1f1e376a8bec02d56e459d7c88ffdd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 584504,
"upload_time": "2025-02-20T17:09:21",
"upload_time_iso_8601": "2025-02-20T17:09:21.652547Z",
"url": "https://files.pythonhosted.org/packages/e7/0c/3fad69ea0c64e496cac0b6c85ca3e12edadbaa65938130fc714227d02634/rpds_py-0.23.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ae3f42acd14d5d655860ddf9dee3c5c03122a95235bd63885f7b5462dcaef16",
"md5": "3530af5b849b36ed26516bc967d971e2",
"sha256": "377ba75ebce48d5df69b0ab2e3333cd86f6acfee8cf0a2c286af4e32e4a8b499"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3530af5b849b36ed26516bc967d971e2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 552964,
"upload_time": "2025-02-20T17:09:24",
"upload_time_iso_8601": "2025-02-20T17:09:24.180308Z",
"url": "https://files.pythonhosted.org/packages/2a/e3/f42acd14d5d655860ddf9dee3c5c03122a95235bd63885f7b5462dcaef16/rpds_py-0.23.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f50d90d93159bb22f1b347ee4aab3797c52c0dbb18249e80486a98703778bc2e",
"md5": "eaaaa0f7c07ba0c3193c850ccc93e840",
"sha256": "784a79474675ee12cab90241f3df328129e15443acfea618df069a7d67d12abb"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "eaaaa0f7c07ba0c3193c850ccc93e840",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 220878,
"upload_time": "2025-02-20T17:09:25",
"upload_time_iso_8601": "2025-02-20T17:09:25.928016Z",
"url": "https://files.pythonhosted.org/packages/f5/0d/90d93159bb22f1b347ee4aab3797c52c0dbb18249e80486a98703778bc2e/rpds_py-0.23.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f209afb6a947956e06762a3f25d564b1058e81e830dad80609710a80e9a057d",
"md5": "9c5d58a5dc24d41005ee5ff6b03c9a74",
"sha256": "f1023b1de400ef9d3d9f8f9e88f3f5d8c66c26e48c3f83cffe83bd423def8d81"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9c5d58a5dc24d41005ee5ff6b03c9a74",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 232947,
"upload_time": "2025-02-20T17:09:27",
"upload_time_iso_8601": "2025-02-20T17:09:27.870090Z",
"url": "https://files.pythonhosted.org/packages/2f/20/9afb6a947956e06762a3f25d564b1058e81e830dad80609710a80e9a057d/rpds_py-0.23.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57cdc57b77ae0c8514b316c65668e3d016857b738738496a77faf64346c9f943",
"md5": "1186e2fd298d76f9a3bb363c3917f3ca",
"sha256": "d1f3baf652aeb91775eb3343535890156b07e0cbb2a7b72651f4bbaf7323d40f"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1186e2fd298d76f9a3bb363c3917f3ca",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 364451,
"upload_time": "2025-02-20T17:09:30",
"upload_time_iso_8601": "2025-02-20T17:09:30.944925Z",
"url": "https://files.pythonhosted.org/packages/57/cd/c57b77ae0c8514b316c65668e3d016857b738738496a77faf64346c9f943/rpds_py-0.23.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8fd776cdd973a44be9692db2ae1f38264e565af99c2b9aabbcabb87670618322",
"md5": "f2e1e111c6c980f6b484955bce7ec8e8",
"sha256": "6593dc9b225f8fc900df43c40625c998b8fa99ba78ec69bcd073fe3fb1018a5d"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f2e1e111c6c980f6b484955bce7ec8e8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 349905,
"upload_time": "2025-02-20T17:09:32",
"upload_time_iso_8601": "2025-02-20T17:09:32.717548Z",
"url": "https://files.pythonhosted.org/packages/8f/d7/76cdd973a44be9692db2ae1f38264e565af99c2b9aabbcabb87670618322/rpds_py-0.23.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "037a412a30ecfb8e24a00ad3a7583664d2aa0e3729d3459237241e39b85b926d",
"md5": "7d662447e162fa8f33d7d3a92cc0fbe1",
"sha256": "75d5a2c5629e3582aa73c3a11ac0a3dd454e86cc70188a9b6e2ed51889c331dd"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7d662447e162fa8f33d7d3a92cc0fbe1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 388801,
"upload_time": "2025-02-20T17:09:35",
"upload_time_iso_8601": "2025-02-20T17:09:35.335179Z",
"url": "https://files.pythonhosted.org/packages/03/7a/412a30ecfb8e24a00ad3a7583664d2aa0e3729d3459237241e39b85b926d/rpds_py-0.23.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c368995cc01425aaa650fda11367457647463d7d89b0f14e9d90ba23d9a168af",
"md5": "2ce769cc95b9e2e11524f906d773aeb8",
"sha256": "64ba22924340d7e200b48befcc75ff2379301902381ca4ebbfec81d80c5216b5"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2ce769cc95b9e2e11524f906d773aeb8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 397582,
"upload_time": "2025-02-20T17:09:36",
"upload_time_iso_8601": "2025-02-20T17:09:36.995593Z",
"url": "https://files.pythonhosted.org/packages/c3/68/995cc01425aaa650fda11367457647463d7d89b0f14e9d90ba23d9a168af/rpds_py-0.23.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1892349638b77ace990f62e1241fabda9f2b807f33370cef8218a6e7a425c709",
"md5": "53b3013558102590f3a409aaac127d22",
"sha256": "04d7fc114ca57d25f0d8c324d2d0ddd675df92b2f7da8284f806711c25fe00f7"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "53b3013558102590f3a409aaac127d22",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 448746,
"upload_time": "2025-02-20T17:09:38",
"upload_time_iso_8601": "2025-02-20T17:09:38.564108Z",
"url": "https://files.pythonhosted.org/packages/18/92/349638b77ace990f62e1241fabda9f2b807f33370cef8218a6e7a425c709/rpds_py-0.23.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "928779f50a864a2e0a7f1bcf5460d4747a81e75e37d458b430947e726432e669",
"md5": "422d3a8f7135497a8df354b5a324eba8",
"sha256": "5ff50d7a5b206af7ac8342255ae3ab6c6c86d86520f4413bf9d2561bf4f1ffa1"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "422d3a8f7135497a8df354b5a324eba8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 442565,
"upload_time": "2025-02-20T17:09:42",
"upload_time_iso_8601": "2025-02-20T17:09:42.079706Z",
"url": "https://files.pythonhosted.org/packages/92/87/79f50a864a2e0a7f1bcf5460d4747a81e75e37d458b430947e726432e669/rpds_py-0.23.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6a5f87c3ddb265f6380193f167bb811a7ae0240812205bbb64c5ed53430751ff",
"md5": "ced871ade9685890c44daf237c758f36",
"sha256": "3b147c0d49de69dac573c8e05a5f7edf18a83136bf8c98e2cd3e87dafee184e5"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ced871ade9685890c44daf237c758f36",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 390652,
"upload_time": "2025-02-20T17:09:43",
"upload_time_iso_8601": "2025-02-20T17:09:43.885707Z",
"url": "https://files.pythonhosted.org/packages/6a/5f/87c3ddb265f6380193f167bb811a7ae0240812205bbb64c5ed53430751ff/rpds_py-0.23.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24cd5758fe38126dd7cb8a9cca851080253f74e0ca55b3cacab67365e283836c",
"md5": "0f66faead0617dda874948c57db16131",
"sha256": "5bc79d528e65c877a5e254ddad394d51797bc6bba44c9aa436f61b94448d5f87"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0f66faead0617dda874948c57db16131",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 421371,
"upload_time": "2025-02-20T17:09:45",
"upload_time_iso_8601": "2025-02-20T17:09:45.769298Z",
"url": "https://files.pythonhosted.org/packages/24/cd/5758fe38126dd7cb8a9cca851080253f74e0ca55b3cacab67365e283836c/rpds_py-0.23.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4298f3b161e66a381e39c9bf153562f90d15b01272ac943374262cda2ce54401",
"md5": "4749f80107027939642ffca901d173bb",
"sha256": "ce1a2fe8eea2e956a11112ba426b9be79b2da65e27a533cf152ba8e9882bf9be"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4749f80107027939642ffca901d173bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 562353,
"upload_time": "2025-02-20T17:09:47",
"upload_time_iso_8601": "2025-02-20T17:09:47.421833Z",
"url": "https://files.pythonhosted.org/packages/42/98/f3b161e66a381e39c9bf153562f90d15b01272ac943374262cda2ce54401/rpds_py-0.23.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "708ea9bbfb09eb849ae282a3970927155fc8608be536b53bc0799206c757b807",
"md5": "e079839a785c82e02d05545135a30031",
"sha256": "e2c26f1e0ebbe85dc275816cd53fcbb225aaf7923a4d48b7cdf8b8eb6291e5ae"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e079839a785c82e02d05545135a30031",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 588318,
"upload_time": "2025-02-20T17:09:49",
"upload_time_iso_8601": "2025-02-20T17:09:49.182834Z",
"url": "https://files.pythonhosted.org/packages/70/8e/a9bbfb09eb849ae282a3970927155fc8608be536b53bc0799206c757b807/rpds_py-0.23.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "121dc404fd00d37e44299f2e0c19ad9fc1f5c4aed489fc6a6146cdca889b818b",
"md5": "bb07985bf73bce053ffb55d94fe05a28",
"sha256": "6893a88925972635c843eb02a113d7aabacd386c05d54f2fda29125befbc1b05"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "bb07985bf73bce053ffb55d94fe05a28",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 557251,
"upload_time": "2025-02-20T17:09:51",
"upload_time_iso_8601": "2025-02-20T17:09:51.709392Z",
"url": "https://files.pythonhosted.org/packages/12/1d/c404fd00d37e44299f2e0c19ad9fc1f5c4aed489fc6a6146cdca889b818b/rpds_py-0.23.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bb0f7c4bfdc764fc3042c65b90a9c3e251124b43ccf3c90fb36cddc29846fe86",
"md5": "e2c137a391008da842bb121f7a5a6a76",
"sha256": "06962dc9462fe97d0355e01525ebafcd317316e80e335272751a1857b7bdec97"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "e2c137a391008da842bb121f7a5a6a76",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 222227,
"upload_time": "2025-02-20T17:09:53",
"upload_time_iso_8601": "2025-02-20T17:09:53.468155Z",
"url": "https://files.pythonhosted.org/packages/bb/0f/7c4bfdc764fc3042c65b90a9c3e251124b43ccf3c90fb36cddc29846fe86/rpds_py-0.23.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "542d8fcb5dd574687ed729b28095e96bb54534368d949294eae11f0c6fa3a6c6",
"md5": "1b9b713b9fc30989db7767ce00a508a4",
"sha256": "04882cc4adbdc2778dd49f5ed71b1d9ab43349c45cde7e461456d0432d7d323e"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "1b9b713b9fc30989db7767ce00a508a4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 237508,
"upload_time": "2025-02-20T17:09:54",
"upload_time_iso_8601": "2025-02-20T17:09:54.986167Z",
"url": "https://files.pythonhosted.org/packages/54/2d/8fcb5dd574687ed729b28095e96bb54534368d949294eae11f0c6fa3a6c6/rpds_py-0.23.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a37c811fd70cb891dddb713896801e5062758caa5e3dc6764f92c74c9719c90",
"md5": "dcd459637f64466c1d65a59af5988aae",
"sha256": "c46247ea1382758987417b9c47b05d32dc7f971cd2553e7b3088a76ad48c5a67"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "dcd459637f64466c1d65a59af5988aae",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 363833,
"upload_time": "2025-02-20T17:09:56",
"upload_time_iso_8601": "2025-02-20T17:09:56.707209Z",
"url": "https://files.pythonhosted.org/packages/8a/37/c811fd70cb891dddb713896801e5062758caa5e3dc6764f92c74c9719c90/rpds_py-0.23.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e105b86bb62c0498353867d69519fa9a37162c42bf3417d40418535adae347d",
"md5": "8387269ef61ee227fcfa10a556823094",
"sha256": "fa93e2460b7791872a5dd355438b854a5d9ab317107380c2143d94a1ca5b10a7"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8387269ef61ee227fcfa10a556823094",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 349485,
"upload_time": "2025-02-20T17:09:58",
"upload_time_iso_8601": "2025-02-20T17:09:58.500727Z",
"url": "https://files.pythonhosted.org/packages/5e/10/5b86bb62c0498353867d69519fa9a37162c42bf3417d40418535adae347d/rpds_py-0.23.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12e749b0b48c04bb59a0ada061ebc93ab74013eca3bd414093b50acc868a8e63",
"md5": "01bbcb79e87edad298a640cc4f09ad90",
"sha256": "784d2ef454b42451a1efca40f888105536b6d2374d155c14f51831980c384461"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "01bbcb79e87edad298a640cc4f09ad90",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 388282,
"upload_time": "2025-02-20T17:10:00",
"upload_time_iso_8601": "2025-02-20T17:10:00.312803Z",
"url": "https://files.pythonhosted.org/packages/12/e7/49b0b48c04bb59a0ada061ebc93ab74013eca3bd414093b50acc868a8e63/rpds_py-0.23.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90b28d02beb1969e97e314da85089467069ee68b2832d73c40383950bca9c85b",
"md5": "df8c98c2c2de7a014ddb2c2c830d000f",
"sha256": "aae64cb7faaecd5d36ebcb99dc3f0196f4357586e095630207047f35183431fb"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "df8c98c2c2de7a014ddb2c2c830d000f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 396496,
"upload_time": "2025-02-20T17:10:02",
"upload_time_iso_8601": "2025-02-20T17:10:02.084984Z",
"url": "https://files.pythonhosted.org/packages/90/b2/8d02beb1969e97e314da85089467069ee68b2832d73c40383950bca9c85b/rpds_py-0.23.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5b14fd6c87fac4efcb4bd22c4f007443429e733cd7744f80d164b2a767ac679",
"md5": "18dc202d61b918af2639b002a53bf050",
"sha256": "d8c754d4d021a010df79e0ce10b2dbf0ed12997ff4e508274337fdceed32275f"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "18dc202d61b918af2639b002a53bf050",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 448429,
"upload_time": "2025-02-20T17:10:03",
"upload_time_iso_8601": "2025-02-20T17:10:03.851884Z",
"url": "https://files.pythonhosted.org/packages/a5/b1/4fd6c87fac4efcb4bd22c4f007443429e733cd7744f80d164b2a767ac679/rpds_py-0.23.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b08d32741b4532f91c311f8df48c0a8ea65edb7fe16e5e2f5de1ae22c056711",
"md5": "7fe8bd5e14658f445236201f2ed839b4",
"sha256": "96f0261ef2a45c9dc48c4105ab798e8ba1c0c912ae5c59c2d9f899242cf3ed79"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7fe8bd5e14658f445236201f2ed839b4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 441762,
"upload_time": "2025-02-20T17:10:05",
"upload_time_iso_8601": "2025-02-20T17:10:05.577142Z",
"url": "https://files.pythonhosted.org/packages/2b/08/d32741b4532f91c311f8df48c0a8ea65edb7fe16e5e2f5de1ae22c056711/rpds_py-0.23.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cef770f7c6a08dd01a7460a1db7d4569f10d1055c046dcb818cab3cd4b13357b",
"md5": "55d6110432d9f7a2f4a2f878e8bbe64c",
"sha256": "3cb0ddf0ecc705f8f6dfe858e703c1b9b3ea240b1f56e33316e89dc6c2994ac0"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "55d6110432d9f7a2f4a2f878e8bbe64c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 390424,
"upload_time": "2025-02-20T17:10:07",
"upload_time_iso_8601": "2025-02-20T17:10:07.364090Z",
"url": "https://files.pythonhosted.org/packages/ce/f7/70f7c6a08dd01a7460a1db7d4569f10d1055c046dcb818cab3cd4b13357b/rpds_py-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4fe45981da73f8ef1052d34462bfa53984bbf3dc40c1695cc45448c79a3d1e92",
"md5": "f5a380ae3b80ec551a4628d0ec595ff4",
"sha256": "c7fee301c715ce2fed4c0620a65dff12686002061cd38c6f11a427f64bd0c8ff"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f5a380ae3b80ec551a4628d0ec595ff4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 420919,
"upload_time": "2025-02-20T17:10:09",
"upload_time_iso_8601": "2025-02-20T17:10:09.122284Z",
"url": "https://files.pythonhosted.org/packages/4f/e4/5981da73f8ef1052d34462bfa53984bbf3dc40c1695cc45448c79a3d1e92/rpds_py-0.23.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "883a81ac2944dc603a1260c1da0ead4c3840c60f8d07a59e1caf34bdda060a2a",
"md5": "6dd0dba1000ebee7512ca64caba57ec3",
"sha256": "aef4f05059aa6f5f22c76f23f45b6908da4871589c9efb882e58c33ebf8f4c4f"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6dd0dba1000ebee7512ca64caba57ec3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 561982,
"upload_time": "2025-02-20T17:10:12",
"upload_time_iso_8601": "2025-02-20T17:10:12.548278Z",
"url": "https://files.pythonhosted.org/packages/88/3a/81ac2944dc603a1260c1da0ead4c3840c60f8d07a59e1caf34bdda060a2a/rpds_py-0.23.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9a0deb3bdedb7e9d013daf02277b3a656b6d001aa71c82cc9070073000c8dd1",
"md5": "f9ccf9592a2597e38915c4fe3bf4f849",
"sha256": "77c3e51d994c39227facc742001b7be98c2ad634f8a0cf2ed08c30cf2f7f9249"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f9ccf9592a2597e38915c4fe3bf4f849",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 588062,
"upload_time": "2025-02-20T17:10:15",
"upload_time_iso_8601": "2025-02-20T17:10:15.415376Z",
"url": "https://files.pythonhosted.org/packages/b9/a0/deb3bdedb7e9d013daf02277b3a656b6d001aa71c82cc9070073000c8dd1/rpds_py-0.23.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30fbe0e8de8096a09f1d4e987a9c9e4339dc6c4d4e5d214a49b5e4c142bb9b54",
"md5": "4f2019e17e7d1617fe4c9392b2271eba",
"sha256": "9901d57e8dc3b7245d349a255af097e309602986a604d073414a3826bc5c2cdd"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4f2019e17e7d1617fe4c9392b2271eba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 556947,
"upload_time": "2025-02-20T17:10:17",
"upload_time_iso_8601": "2025-02-20T17:10:17.990070Z",
"url": "https://files.pythonhosted.org/packages/30/fb/e0e8de8096a09f1d4e987a9c9e4339dc6c4d4e5d214a49b5e4c142bb9b54/rpds_py-0.23.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dbf0e3b7939b3ae0350269cb1d88334c558f301d669936a25c59ce3b84af211b",
"md5": "af98563be5ef2aec971e098439e821c7",
"sha256": "c5e3c7d7cdbbd450acb62c5d29d39ea6d5f8584019d391947d73fb998f54acc5"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "af98563be5ef2aec971e098439e821c7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 359623,
"upload_time": "2025-02-20T17:10:25",
"upload_time_iso_8601": "2025-02-20T17:10:25.695049Z",
"url": "https://files.pythonhosted.org/packages/db/f0/e3b7939b3ae0350269cb1d88334c558f301d669936a25c59ce3b84af211b/rpds_py-0.23.0-cp313-cp313t-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18fca64586ba2654abae463c21a97aa7e70f7d5a7b3e45f1e968bc0b0905cb40",
"md5": "cb03cc16382c4fdb0a4dc828cfb041b9",
"sha256": "d59582ddbeabf217d1b815b60acaec9ff5e2ded79e440c3b3e4ddc970ff59160"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cb03cc16382c4fdb0a4dc828cfb041b9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 345794,
"upload_time": "2025-02-20T17:10:27",
"upload_time_iso_8601": "2025-02-20T17:10:27.410951Z",
"url": "https://files.pythonhosted.org/packages/18/fc/a64586ba2654abae463c21a97aa7e70f7d5a7b3e45f1e968bc0b0905cb40/rpds_py-0.23.0-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c872f8f78c4bfeddbf8db1721b5ba6dc60cd30e071061f46f56a45b874213ef8",
"md5": "5f93afea964526269410c708006243d0",
"sha256": "6097538c81a94d4432de645a20bbbbfa7a0eb52c6dcb7370feda18eb8eed61de"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5f93afea964526269410c708006243d0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 385327,
"upload_time": "2025-02-20T17:10:29",
"upload_time_iso_8601": "2025-02-20T17:10:29.076614Z",
"url": "https://files.pythonhosted.org/packages/c8/72/f8f78c4bfeddbf8db1721b5ba6dc60cd30e071061f46f56a45b874213ef8/rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "85cf8f75c99d6018e0e406179f8d958c29f08c43872058a6475d523cc2a07ff0",
"md5": "ac1e2170352c5b5a675689997e510b10",
"sha256": "ac766c8127ee9c9a72f1a6ad6b4291e5acfd14d9685964b771bf8820fe65aeed"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ac1e2170352c5b5a675689997e510b10",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 396647,
"upload_time": "2025-02-20T17:10:31",
"upload_time_iso_8601": "2025-02-20T17:10:31.348565Z",
"url": "https://files.pythonhosted.org/packages/85/cf/8f75c99d6018e0e406179f8d958c29f08c43872058a6475d523cc2a07ff0/rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64c382e90e4a7c7d90f73eba236b94fb5abcfb8fc340334c11231fdaef40228c",
"md5": "c9fb2668ad04d8db03a3d603fe29629a",
"sha256": "0edf94328feaae49a96caa3459784614365708c38f610316601b996e5f085be1"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c9fb2668ad04d8db03a3d603fe29629a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 446880,
"upload_time": "2025-02-20T17:10:34",
"upload_time_iso_8601": "2025-02-20T17:10:34.759823Z",
"url": "https://files.pythonhosted.org/packages/64/c3/82e90e4a7c7d90f73eba236b94fb5abcfb8fc340334c11231fdaef40228c/rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e308ed16293e511713781d06e902dd457b6e3caeb38479bc41010d7dea1d0483",
"md5": "65dbb7982289a8f13ff20bea435ece53",
"sha256": "0f74d8babe0139b8ee30c24c65040cdad81e00547e7eefe43d13b31da9d2bbc5"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "65dbb7982289a8f13ff20bea435ece53",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 436293,
"upload_time": "2025-02-20T17:10:36",
"upload_time_iso_8601": "2025-02-20T17:10:36.474290Z",
"url": "https://files.pythonhosted.org/packages/e3/08/ed16293e511713781d06e902dd457b6e3caeb38479bc41010d7dea1d0483/rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b495afc5daef51463ae7f3de1c20c64c8ba17838dca5adf017d8df5472dfa49b",
"md5": "d1a58dff4cf59e2295102165bcf1adfe",
"sha256": "cf06007aca17ea31069adc8396d718b714559fd7f7db8302399b4697c4564fec"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d1a58dff4cf59e2295102165bcf1adfe",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 388513,
"upload_time": "2025-02-20T17:10:39",
"upload_time_iso_8601": "2025-02-20T17:10:39.370443Z",
"url": "https://files.pythonhosted.org/packages/b4/95/afc5daef51463ae7f3de1c20c64c8ba17838dca5adf017d8df5472dfa49b/rpds_py-0.23.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94518050998494eaa3444c5c76177a8b53d71776540300ded8482aab694d35f4",
"md5": "2f94194f26c92c5ec2051cca1b885767",
"sha256": "9b263adb8e54bc7a5b2b8feebe99ff79f1067037a9178989e9341ea76e935706"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "2f94194f26c92c5ec2051cca1b885767",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 415251,
"upload_time": "2025-02-20T17:10:41",
"upload_time_iso_8601": "2025-02-20T17:10:41.592865Z",
"url": "https://files.pythonhosted.org/packages/94/51/8050998494eaa3444c5c76177a8b53d71776540300ded8482aab694d35f4/rpds_py-0.23.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db1823ad95f41d6cc171ba8faa8c6d36d8fdf5b4a53c12989e3dfabb2247612c",
"md5": "f663175e195ab6a9bde7bf1f478d99e1",
"sha256": "516cec4c1a45bed3c417c402a2f52515561a1d8e578ff675347dcf4180636cca"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f663175e195ab6a9bde7bf1f478d99e1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 557624,
"upload_time": "2025-02-20T17:10:43",
"upload_time_iso_8601": "2025-02-20T17:10:43.544152Z",
"url": "https://files.pythonhosted.org/packages/db/18/23ad95f41d6cc171ba8faa8c6d36d8fdf5b4a53c12989e3dfabb2247612c/rpds_py-0.23.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8dfb466ecf59a7abb0a152e14b5821b0c0a55d736ff67a5d3c337e1690aa1c19",
"md5": "36d9e092380058cc9c06c114492ca7cd",
"sha256": "37af2ee37efeb0a09463124cc1e560192cc751c2a5ae650effb36469e1f17dc8"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "36d9e092380058cc9c06c114492ca7cd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 583056,
"upload_time": "2025-02-20T17:10:45",
"upload_time_iso_8601": "2025-02-20T17:10:45.322651Z",
"url": "https://files.pythonhosted.org/packages/8d/fb/466ecf59a7abb0a152e14b5821b0c0a55d736ff67a5d3c337e1690aa1c19/rpds_py-0.23.0-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ff13e44c9874899647627e02bca8b200eb28b4a52286164c43fdf0d50904fe9",
"md5": "3b9067098bbac40255bf9f12f972c69d",
"sha256": "312981d4da5dc463baeca3ba23a3e74dc7a48a4500d267566d8e9c0680ac54c6"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3b9067098bbac40255bf9f12f972c69d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 555083,
"upload_time": "2025-02-20T17:10:47",
"upload_time_iso_8601": "2025-02-20T17:10:47.271015Z",
"url": "https://files.pythonhosted.org/packages/2f/f1/3e44c9874899647627e02bca8b200eb28b4a52286164c43fdf0d50904fe9/rpds_py-0.23.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23e24894cf732611987c3cee18de8ff087994291a4f7bcd42af2d0418e4d0cdf",
"md5": "c899253ce8365b67ac0f6a78edb8ecbf",
"sha256": "ce1c4277d7f235faa2f31f1aad82e3ab3caeb66f13c97413e738592ec7fef7e0"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-win32.whl",
"has_sig": false,
"md5_digest": "c899253ce8365b67ac0f6a78edb8ecbf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 219672,
"upload_time": "2025-02-20T17:10:49",
"upload_time_iso_8601": "2025-02-20T17:10:49.095401Z",
"url": "https://files.pythonhosted.org/packages/23/e2/4894cf732611987c3cee18de8ff087994291a4f7bcd42af2d0418e4d0cdf/rpds_py-0.23.0-cp313-cp313t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb4bed448931f973f363b4dbf38e86907a2d62cde961176fb938926b63106a38",
"md5": "5436ee1513e3ce080ab37562256233dd",
"sha256": "f46d53a6a37383eca41a111df0e9993399a60e9e1e2110f467fddc5de4a43b68"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "5436ee1513e3ce080ab37562256233dd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 235568,
"upload_time": "2025-02-20T17:10:50",
"upload_time_iso_8601": "2025-02-20T17:10:50.750458Z",
"url": "https://files.pythonhosted.org/packages/fb/4b/ed448931f973f363b4dbf38e86907a2d62cde961176fb938926b63106a38/rpds_py-0.23.0-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cca8c65d752e6e9877db59bf4445dbecf1518277a15b6ce3e763c97b7d4d95a",
"md5": "1d8383ef903e07ff90cc5169669c0422",
"sha256": "56bbf34e129551004e4952db16087bb4912e8cf4fa335ad5c70e126666f97788"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "1d8383ef903e07ff90cc5169669c0422",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 221986,
"upload_time": "2025-02-20T17:10:20",
"upload_time_iso_8601": "2025-02-20T17:10:20.347623Z",
"url": "https://files.pythonhosted.org/packages/0c/ca/8c65d752e6e9877db59bf4445dbecf1518277a15b6ce3e763c97b7d4d95a/rpds_py-0.23.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d9478cd494a9b17b96fd4bb6d989f3282db8850e658e62b7a52dd6cb1aeb9b9",
"md5": "6114254f66f821cd14c17adbc5644fc6",
"sha256": "fbeade9f0284a5c5965f8a4805ef1864e5fb4bc4c5d3d8dd60c5fd2a44f0b51a"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "6114254f66f821cd14c17adbc5644fc6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 237277,
"upload_time": "2025-02-20T17:10:23",
"upload_time_iso_8601": "2025-02-20T17:10:23.811067Z",
"url": "https://files.pythonhosted.org/packages/3d/94/78cd494a9b17b96fd4bb6d989f3282db8850e658e62b7a52dd6cb1aeb9b9/rpds_py-0.23.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1223faa6ba6e0f3088f83c2d0c4ff12383f115223350537edbe223068746ef2e",
"md5": "dceaff173d92d57fbab25f6cdb028c0e",
"sha256": "d5504bd1d637e7633d953418520d9b109b0d8a419153a56537938adf068da9d5"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "dceaff173d92d57fbab25f6cdb028c0e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 372661,
"upload_time": "2025-02-20T17:10:53",
"upload_time_iso_8601": "2025-02-20T17:10:53.719309Z",
"url": "https://files.pythonhosted.org/packages/12/23/faa6ba6e0f3088f83c2d0c4ff12383f115223350537edbe223068746ef2e/rpds_py-0.23.0-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08e2c966ecaca3415e75029de002db17e7ad15483f1b3377a778ab1316777cd3",
"md5": "26bcacf740e88b62d1d050af5791e461",
"sha256": "7730442bb642748dddfbe1de24275bf0cdbae938c68e1c38e0a9d285a056e17d"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "26bcacf740e88b62d1d050af5791e461",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 357193,
"upload_time": "2025-02-20T17:10:55",
"upload_time_iso_8601": "2025-02-20T17:10:55.596851Z",
"url": "https://files.pythonhosted.org/packages/08/e2/c966ecaca3415e75029de002db17e7ad15483f1b3377a778ab1316777cd3/rpds_py-0.23.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89e3bae9cb0850c56501ad3bbc2254ef10edaeac0d3b4dd6cfd7f71320457048",
"md5": "78cebd123fb255f1cc355d8ca58d84bd",
"sha256": "374d2c0067f5ef18e73bfb2a555ef0b8f2b01f5b653a3eca68e9fbde5625c305"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "78cebd123fb255f1cc355d8ca58d84bd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 385908,
"upload_time": "2025-02-20T17:10:57",
"upload_time_iso_8601": "2025-02-20T17:10:57.401286Z",
"url": "https://files.pythonhosted.org/packages/89/e3/bae9cb0850c56501ad3bbc2254ef10edaeac0d3b4dd6cfd7f71320457048/rpds_py-0.23.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc507ddd55de8fdef6d8b2e44893588c6eda6563ae1afa8eb7c41ebba68f9cf6",
"md5": "c62131a6c50360cecd588df300bda943",
"sha256": "a8983725590ddeb62acf7e585badb7354fa71e3d08d3326eaac6886aa91e526c"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c62131a6c50360cecd588df300bda943",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 392230,
"upload_time": "2025-02-20T17:11:00",
"upload_time_iso_8601": "2025-02-20T17:11:00.511096Z",
"url": "https://files.pythonhosted.org/packages/fc/50/7ddd55de8fdef6d8b2e44893588c6eda6563ae1afa8eb7c41ebba68f9cf6/rpds_py-0.23.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9187af2661091e4e133cdc3f47565c2d9bc0918408708fe7dc911e34d6763dce",
"md5": "166e89fd374a1f959c5086e9d6bbfe2c",
"sha256": "048dc18eb2cc83a67bec07c6f9ffe1da83fb94d5af6cc32e333248013576dc4c"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "166e89fd374a1f959c5086e9d6bbfe2c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 445710,
"upload_time": "2025-02-20T17:11:03",
"upload_time_iso_8601": "2025-02-20T17:11:03.277054Z",
"url": "https://files.pythonhosted.org/packages/91/87/af2661091e4e133cdc3f47565c2d9bc0918408708fe7dc911e34d6763dce/rpds_py-0.23.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad00357414ba80406e132ca86fabe23041290801ef74fa1f7f7932b72d43ad1a",
"md5": "391e65f9b1ac908ac7bc94d4aa21bebf",
"sha256": "f4b699830ced68db4294e2e47f25a4ff935a54244814b76fa683e0b857391e3e"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "391e65f9b1ac908ac7bc94d4aa21bebf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 447344,
"upload_time": "2025-02-20T17:11:05",
"upload_time_iso_8601": "2025-02-20T17:11:05.162791Z",
"url": "https://files.pythonhosted.org/packages/ad/00/357414ba80406e132ca86fabe23041290801ef74fa1f7f7932b72d43ad1a/rpds_py-0.23.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f677b0a1cc04eea6ba3e5b62dcdea4191957e6dcf80d76efbb18977c39ce3bf1",
"md5": "368ebc678a4b6cf09d612920312092c7",
"sha256": "1fa3476c9845152091f62edca5e543df77fc0fc2e83027c389fa4c4f52633369"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "368ebc678a4b6cf09d612920312092c7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 386328,
"upload_time": "2025-02-20T17:11:07",
"upload_time_iso_8601": "2025-02-20T17:11:07.329021Z",
"url": "https://files.pythonhosted.org/packages/f6/77/b0a1cc04eea6ba3e5b62dcdea4191957e6dcf80d76efbb18977c39ce3bf1/rpds_py-0.23.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6201601b7667acb0efb4aefe084cd6aff3491548fa60edbd1cc62052f57df4e",
"md5": "30ead583722592afec2bff632d5d1213",
"sha256": "c6c98bde8ec93dd4e19c413e3ac089fb0ff731da54bab8aaf1e8263f55f01406"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "30ead583722592afec2bff632d5d1213",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 416711,
"upload_time": "2025-02-20T17:11:10",
"upload_time_iso_8601": "2025-02-20T17:11:10.024361Z",
"url": "https://files.pythonhosted.org/packages/a6/20/1601b7667acb0efb4aefe084cd6aff3491548fa60edbd1cc62052f57df4e/rpds_py-0.23.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be92b5205c13c59dda9592640de7def65cdcaeab737346421d8cdc4c66d57a6a",
"md5": "f82b251bdb72cd76bbf38c7ebabe3cc9",
"sha256": "947db56d8ee2f567a597f7484ac6c8cb94529181eaa498bd9c196079c395c69f"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f82b251bdb72cd76bbf38c7ebabe3cc9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 559149,
"upload_time": "2025-02-20T17:11:12",
"upload_time_iso_8601": "2025-02-20T17:11:12.108891Z",
"url": "https://files.pythonhosted.org/packages/be/92/b5205c13c59dda9592640de7def65cdcaeab737346421d8cdc4c66d57a6a/rpds_py-0.23.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25a7bf0d35da717a60eb489aecb83a6cd5f2c6cfbc3c53a440f4737fbf5d30e0",
"md5": "e176c95fa9a62f5bcce3d5dfca99963a",
"sha256": "a20fa5cd1cb074c145c3955732cfc3eca19bef16d425b32f14c3d275230110fb"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e176c95fa9a62f5bcce3d5dfca99963a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 585141,
"upload_time": "2025-02-20T17:11:14",
"upload_time_iso_8601": "2025-02-20T17:11:14.223169Z",
"url": "https://files.pythonhosted.org/packages/25/a7/bf0d35da717a60eb489aecb83a6cd5f2c6cfbc3c53a440f4737fbf5d30e0/rpds_py-0.23.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b5d0d72fb7e3d2be567592acb3bba951de4c0897300546d1eb02e51da9ab1d1",
"md5": "ffc1ca09b866c36cb59496fa7b898b41",
"sha256": "f27867c24f0a81065ef94e575dbb1846867257994ac41ebbe5e66c6a3976ac73"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ffc1ca09b866c36cb59496fa7b898b41",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 555048,
"upload_time": "2025-02-20T17:11:16",
"upload_time_iso_8601": "2025-02-20T17:11:16.517875Z",
"url": "https://files.pythonhosted.org/packages/4b/5d/0d72fb7e3d2be567592acb3bba951de4c0897300546d1eb02e51da9ab1d1/rpds_py-0.23.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea1dad5d268a20268f41a834cb19f0d202bf408e09bba95c7dc9769b5abc243c",
"md5": "d7660eb64e75c973474945061771915e",
"sha256": "5e549c7ef1ae42b79878bff27c33363b2de77f23de2f4c19541ef69ae4c11ac7"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "d7660eb64e75c973474945061771915e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 220784,
"upload_time": "2025-02-20T17:11:19",
"upload_time_iso_8601": "2025-02-20T17:11:19.172615Z",
"url": "https://files.pythonhosted.org/packages/ea/1d/ad5d268a20268f41a834cb19f0d202bf408e09bba95c7dc9769b5abc243c/rpds_py-0.23.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63eaf333a554ea1d55f2f54b0c32ff86953305bdb79d532bc575c950d8749ab3",
"md5": "5df623117c19320c61b0ed2b21b2c5b3",
"sha256": "0b3b3553d9216153eb3f8cf0d369b0e31e83912e50835ee201794d9b410e227f"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "5df623117c19320c61b0ed2b21b2c5b3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 232765,
"upload_time": "2025-02-20T17:11:20",
"upload_time_iso_8601": "2025-02-20T17:11:20.959847Z",
"url": "https://files.pythonhosted.org/packages/63/ea/f333a554ea1d55f2f54b0c32ff86953305bdb79d532bc575c950d8749ab3/rpds_py-0.23.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ea9026caac2fbf61bae16353434299e1b90465e5c9c1b672573e98b5381ba74",
"md5": "11f1683788de65dcd7738db1c6b19cbd",
"sha256": "b233a2bdb15dbb4c05b0c79c94d2367a05d0c54351b76c74fdc81aae023a2df8"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "11f1683788de65dcd7738db1c6b19cbd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 373410,
"upload_time": "2025-02-20T17:11:23",
"upload_time_iso_8601": "2025-02-20T17:11:23.480949Z",
"url": "https://files.pythonhosted.org/packages/8e/a9/026caac2fbf61bae16353434299e1b90465e5c9c1b672573e98b5381ba74/rpds_py-0.23.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a40ac31de6f41377b0779958ad73df175d837ea0add4cc65874cfae65a74edf5",
"md5": "4c182b5903aeb7a758dd5e7ca3c5dada",
"sha256": "d2e0cace96976f4e86fc3c51cb3fba24225976e26341e958be42f3d8d0a634ee"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4c182b5903aeb7a758dd5e7ca3c5dada",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 358362,
"upload_time": "2025-02-20T17:11:25",
"upload_time_iso_8601": "2025-02-20T17:11:25.328288Z",
"url": "https://files.pythonhosted.org/packages/a4/0a/c31de6f41377b0779958ad73df175d837ea0add4cc65874cfae65a74edf5/rpds_py-0.23.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee71698b9bc8b372c7681c7361dc537d8fd0331d4fee464993845cc6704be5c8",
"md5": "1a9348c3eb2dc8c244fd66a6a8a8ce6e",
"sha256": "210aa7c699cc61320630c4be33348d9bfef4785fabd6f33ea6be711d4eb45f1f"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1a9348c3eb2dc8c244fd66a6a8a8ce6e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 387113,
"upload_time": "2025-02-20T17:11:27",
"upload_time_iso_8601": "2025-02-20T17:11:27.809038Z",
"url": "https://files.pythonhosted.org/packages/ee/71/698b9bc8b372c7681c7361dc537d8fd0331d4fee464993845cc6704be5c8/rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a087ae0cf8f3920445378f244f8afe01e9292268d4006aec76415edd334f4d6",
"md5": "72ee919af29a3935e6c68ea73d03aa24",
"sha256": "7cd550ee493adab33e95ce00cb42529b0435c916ed949d298887ee9acdcd3f2f"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "72ee919af29a3935e6c68ea73d03aa24",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 393436,
"upload_time": "2025-02-20T17:11:29",
"upload_time_iso_8601": "2025-02-20T17:11:29.717981Z",
"url": "https://files.pythonhosted.org/packages/1a/08/7ae0cf8f3920445378f244f8afe01e9292268d4006aec76415edd334f4d6/rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5113c5a90d08a9250397f9fe68bd82c0eaf49f1fb6e732b685edc73cc72a4f0",
"md5": "989c6b5436f6cb6643b004cc89c53268",
"sha256": "174602fe067a5b622ce47a5b09022e0128c526a308354abd9cc4bf0391f3cfd2"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "989c6b5436f6cb6643b004cc89c53268",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 446291,
"upload_time": "2025-02-20T17:11:31",
"upload_time_iso_8601": "2025-02-20T17:11:31.856510Z",
"url": "https://files.pythonhosted.org/packages/a5/11/3c5a90d08a9250397f9fe68bd82c0eaf49f1fb6e732b685edc73cc72a4f0/rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72e32e416b5654d1c61cdce254252881ea25e77a2f2635dc28cdb3a3edf21df9",
"md5": "69d9ca47670929837d48aeb517fa5f4d",
"sha256": "b8b7b4e5cc5a981a147e1602cf4bd517e57617f9a4c7e96a22a27e4d18de2523"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "69d9ca47670929837d48aeb517fa5f4d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 447989,
"upload_time": "2025-02-20T17:11:34",
"upload_time_iso_8601": "2025-02-20T17:11:34.636918Z",
"url": "https://files.pythonhosted.org/packages/72/e3/2e416b5654d1c61cdce254252881ea25e77a2f2635dc28cdb3a3edf21df9/rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51c73da1d282fd6b4ac285a7940d92d8cf55b2be8ffb86c3a60223ad57949301",
"md5": "11d8d9f2457203eaa52ce3c62ddbfb97",
"sha256": "aa9d67acbcf2cb11acd44da7d41a0495b7799a32fb7ec9a6bc0b14d8552e00fb"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "11d8d9f2457203eaa52ce3c62ddbfb97",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 388117,
"upload_time": "2025-02-20T17:11:37",
"upload_time_iso_8601": "2025-02-20T17:11:37.366145Z",
"url": "https://files.pythonhosted.org/packages/51/c7/3da1d282fd6b4ac285a7940d92d8cf55b2be8ffb86c3a60223ad57949301/rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b988e6feed21bd9e4dd4f219610795787b2dc34cc7d3e68ddc199d2ee8c04991",
"md5": "85800e238a5093308c1c7f87e11c6798",
"sha256": "f482453aeebdae7774781e8c9b1884e0df0bdb1c61f330f95c63a401dfc2fc31"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "85800e238a5093308c1c7f87e11c6798",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 418237,
"upload_time": "2025-02-20T17:11:39",
"upload_time_iso_8601": "2025-02-20T17:11:39.400823Z",
"url": "https://files.pythonhosted.org/packages/b9/88/e6feed21bd9e4dd4f219610795787b2dc34cc7d3e68ddc199d2ee8c04991/rpds_py-0.23.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "421d3d09dfb0b6086d0e802d7ef9c7ccf9958aff83afc178816cd2332e51dd2d",
"md5": "d6f3a784fb3acc37630e877abc4b7c83",
"sha256": "eb841a8e1c2615dfc721d3c28fe81e6300e819a01d3305ecd7f75c7d58c31b2b"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d6f3a784fb3acc37630e877abc4b7c83",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 559116,
"upload_time": "2025-02-20T17:11:42",
"upload_time_iso_8601": "2025-02-20T17:11:42.119896Z",
"url": "https://files.pythonhosted.org/packages/42/1d/3d09dfb0b6086d0e802d7ef9c7ccf9958aff83afc178816cd2332e51dd2d/rpds_py-0.23.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "668e92a7236a829910374322b9cfd9ae0508785f960d223f2932da322dffd9fa",
"md5": "5a34dd5729f39c035af382cccc35b12a",
"sha256": "41f6bb731bfcbd886bd6399717971dd881d759ea831b9f513bc57a10f52c7d53"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5a34dd5729f39c035af382cccc35b12a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 584690,
"upload_time": "2025-02-20T17:11:44",
"upload_time_iso_8601": "2025-02-20T17:11:44.170419Z",
"url": "https://files.pythonhosted.org/packages/66/8e/92a7236a829910374322b9cfd9ae0508785f960d223f2932da322dffd9fa/rpds_py-0.23.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a5dc5f9ca93b481a084a7e7b92d947794f4b2dba2b41c875ec1c9e2554682d3",
"md5": "1a925152f63b78f6a2daf6b4dd3933ba",
"sha256": "a49aeb989ee5e057137910059610bfa8f571a4af674404ce05c59862bbeeecbe"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1a925152f63b78f6a2daf6b4dd3933ba",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 555151,
"upload_time": "2025-02-20T17:11:46",
"upload_time_iso_8601": "2025-02-20T17:11:46.102495Z",
"url": "https://files.pythonhosted.org/packages/4a/5d/c5f9ca93b481a084a7e7b92d947794f4b2dba2b41c875ec1c9e2554682d3/rpds_py-0.23.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90ab4278bb3f4908436b6f752daf3d874f63f681ebc965d915dc1c2ea2e842d1",
"md5": "40c813b05f4b318f748e61687d2653e4",
"sha256": "670c29a74f8e632aa58b48425b12d026703af1ea5e3b131adbb2601c7ae03108"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "40c813b05f4b318f748e61687d2653e4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 233854,
"upload_time": "2025-02-20T17:11:48",
"upload_time_iso_8601": "2025-02-20T17:11:48.279844Z",
"url": "https://files.pythonhosted.org/packages/90/ab/4278bb3f4908436b6f752daf3d874f63f681ebc965d915dc1c2ea2e842d1/rpds_py-0.23.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c331713437efb2a30d1a788477fb7244d1a8b0acdff4c603441dcff6354fb1d9",
"md5": "c33efe95dbc2d8a013880731ba658f79",
"sha256": "e5305ee98053a0f0155e4e5f9fe4d196fa2e43ae7c2ecc61534babf6390511d9"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c33efe95dbc2d8a013880731ba658f79",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 373359,
"upload_time": "2025-02-20T17:11:50",
"upload_time_iso_8601": "2025-02-20T17:11:50.078928Z",
"url": "https://files.pythonhosted.org/packages/c3/31/713437efb2a30d1a788477fb7244d1a8b0acdff4c603441dcff6354fb1d9/rpds_py-0.23.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "866a64f4a1ba5e52a18c54d5038178122adffb21e5964f0cc7b172578bd1461f",
"md5": "9696b24013587798457c8108d7cd81db",
"sha256": "903344afbc46dfb488a73a7eeb9c14d8484c6d80eb402e6737a520a55327f26c"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9696b24013587798457c8108d7cd81db",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 358221,
"upload_time": "2025-02-20T17:11:52",
"upload_time_iso_8601": "2025-02-20T17:11:52.077289Z",
"url": "https://files.pythonhosted.org/packages/86/6a/64f4a1ba5e52a18c54d5038178122adffb21e5964f0cc7b172578bd1461f/rpds_py-0.23.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "878cb450baf678ef8f32297e678b194a5661fba4d5faca52eb3a59dabee69a39",
"md5": "44add7c3116da127d9d705e64e0d9335",
"sha256": "87b8e416f55f2be671d5dbf55e7517a8144f8b926609d2f1427f8310c95e4e13"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "44add7c3116da127d9d705e64e0d9335",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 387193,
"upload_time": "2025-02-20T17:11:54",
"upload_time_iso_8601": "2025-02-20T17:11:54.266276Z",
"url": "https://files.pythonhosted.org/packages/87/8c/b450baf678ef8f32297e678b194a5661fba4d5faca52eb3a59dabee69a39/rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "968147a2ca184764f88ecd80677a4309f7bce9faab48680cd9d0e907b0d077ef",
"md5": "e23e914a2e028a40ec74a6a7d0795065",
"sha256": "8529a28b0dffe7e0c56537912ab8594df7b71b24032622aadce33a2643beada5"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e23e914a2e028a40ec74a6a7d0795065",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 393271,
"upload_time": "2025-02-20T17:11:56",
"upload_time_iso_8601": "2025-02-20T17:11:56.344038Z",
"url": "https://files.pythonhosted.org/packages/96/81/47a2ca184764f88ecd80677a4309f7bce9faab48680cd9d0e907b0d077ef/rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f4f4cb0cd5daada13127b429336a95a981d75f2cdeb44cdeab4d45e620a9ecd",
"md5": "bf84f74153c08878fbc932f846c4b0a9",
"sha256": "55fe404f2826c5821661e787dffcb113e682d9ff011d9d39a28c992312d7029b"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bf84f74153c08878fbc932f846c4b0a9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 446243,
"upload_time": "2025-02-20T17:11:59",
"upload_time_iso_8601": "2025-02-20T17:11:59.110938Z",
"url": "https://files.pythonhosted.org/packages/6f/4f/4cb0cd5daada13127b429336a95a981d75f2cdeb44cdeab4d45e620a9ecd/rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b24919b1ffa4cfbcd721a8c3d471d29443cda3d3fd03241cf5c4f0021ea54c6",
"md5": "f4330b334fff9787934094c8232ea642",
"sha256": "1bda53037dcac2465d0b2067a7129283eb823c7e0175c0991ea7e28ae7593555"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f4330b334fff9787934094c8232ea642",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 447299,
"upload_time": "2025-02-20T17:12:01",
"upload_time_iso_8601": "2025-02-20T17:12:01.134606Z",
"url": "https://files.pythonhosted.org/packages/8b/24/919b1ffa4cfbcd721a8c3d471d29443cda3d3fd03241cf5c4f0021ea54c6/rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "886f15db6a401ac4ef5b5017d18487d2bb989e969b2a65ca8abe51180a711e0e",
"md5": "ee8387634fb21b0b637fd04235f425f3",
"sha256": "7c2ba6b0f4eccf3738a03878c13f18037931c947d70a75231448954e42884feb"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ee8387634fb21b0b637fd04235f425f3",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 388223,
"upload_time": "2025-02-20T17:12:03",
"upload_time_iso_8601": "2025-02-20T17:12:03.089565Z",
"url": "https://files.pythonhosted.org/packages/88/6f/15db6a401ac4ef5b5017d18487d2bb989e969b2a65ca8abe51180a711e0e/rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f53db6742801f5d8ff7cf22366d9a1b43c2aeb20b53ab8b8b5b1e7855aac7787",
"md5": "8ab4819833931679a763f2956ae4a87a",
"sha256": "95d7ffa91b423c974fb50384561736aa16f5fb7a8592d81b2ca5fcaf8afd69a0"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "8ab4819833931679a763f2956ae4a87a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 417572,
"upload_time": "2025-02-20T17:12:07",
"upload_time_iso_8601": "2025-02-20T17:12:07.317103Z",
"url": "https://files.pythonhosted.org/packages/f5/3d/b6742801f5d8ff7cf22366d9a1b43c2aeb20b53ab8b8b5b1e7855aac7787/rpds_py-0.23.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e97d1f1ba8986a4797cce7dd71c874d62d41bf425aeaaae2fb148416a7a20a4",
"md5": "e95bbd4dd948b9bc679ce7144a02b240",
"sha256": "c1523dae0321bf21d0e4151a7438c9bd26c0b712602fb56116efd4ee5b463b5d"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e95bbd4dd948b9bc679ce7144a02b240",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 559209,
"upload_time": "2025-02-20T17:12:10",
"upload_time_iso_8601": "2025-02-20T17:12:10.377862Z",
"url": "https://files.pythonhosted.org/packages/6e/97/d1f1ba8986a4797cce7dd71c874d62d41bf425aeaaae2fb148416a7a20a4/rpds_py-0.23.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "104b595e2c2a7f50b19e12262228bd5fe1d7d3e4e23314a624b3e4120b38b00c",
"md5": "169f6bac852b36cb48f6f6ccf0c42cb3",
"sha256": "cec9feef63e213ec9f9cac44d8454643983c422b318b67059da796f55780b4d4"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "169f6bac852b36cb48f6f6ccf0c42cb3",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 585727,
"upload_time": "2025-02-20T17:12:13",
"upload_time_iso_8601": "2025-02-20T17:12:13.389676Z",
"url": "https://files.pythonhosted.org/packages/10/4b/595e2c2a7f50b19e12262228bd5fe1d7d3e4e23314a624b3e4120b38b00c/rpds_py-0.23.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c2e840d6cdb5a7ed4702f3e179f4753525fa071d96ed495be126741dec7e489",
"md5": "7e90bcc5e60425fe8d5fc96450ebb071",
"sha256": "f9c49366f19c06ce31af1312ae4718292081e73f454a56705e7d56acfd25ac1e"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7e90bcc5e60425fe8d5fc96450ebb071",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 554761,
"upload_time": "2025-02-20T17:12:15",
"upload_time_iso_8601": "2025-02-20T17:12:15.438753Z",
"url": "https://files.pythonhosted.org/packages/7c/2e/840d6cdb5a7ed4702f3e179f4753525fa071d96ed495be126741dec7e489/rpds_py-0.23.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9e5f0edf4d09fcc26935418f888aaa2160cce5a8f85aa13c7561533be6c9d01",
"md5": "c8058ecde8310bcce0baaa2b4f5c3a66",
"sha256": "f119176191c359cb33ff8064b242874bfb1352761379bca8e6ccb74a6141db27"
},
"downloads": -1,
"filename": "rpds_py-0.23.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "c8058ecde8310bcce0baaa2b4f5c3a66",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 233529,
"upload_time": "2025-02-20T17:12:17",
"upload_time_iso_8601": "2025-02-20T17:12:17.418336Z",
"url": "https://files.pythonhosted.org/packages/b9/e5/f0edf4d09fcc26935418f888aaa2160cce5a8f85aa13c7561533be6c9d01/rpds_py-0.23.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca0e4c797078d00dbf1f63af96e4b3beffb67f71230f58442272b4b1962a61c8",
"md5": "300e228f08b4b2406e5df905ee3b1210",
"sha256": "ffac3b13182dc1bf648cde2982148dc9caf60f3eedec7ae639e05636389ebf5d"
},
"downloads": -1,
"filename": "rpds_py-0.23.0.tar.gz",
"has_sig": false,
"md5_digest": "300e228f08b4b2406e5df905ee3b1210",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 26808,
"upload_time": "2025-02-20T17:12:19",
"upload_time_iso_8601": "2025-02-20T17:12:19.150647Z",
"url": "https://files.pythonhosted.org/packages/ca/0e/4c797078d00dbf1f63af96e4b3beffb67f71230f58442272b4b1962a61c8/rpds_py-0.23.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-20 17:12:19",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sponsors",
"github_project": "Julian",
"github_not_found": true,
"lcname": "rpds-py"
}