rpds-py


Namerpds-py JSON
Version 0.18.1 PyPI version JSON
download
home_pageNone
SummaryPython bindings to Rust's persistent data structures (rpds)
upload_time2024-05-06 13:28:34
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
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.8",
    "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/2d/aa/e7c404bdee1db7be09860dff423d022ffdce9269ec8e6532cce09ee7beea/rpds_py-0.18.1.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.18.1",
    "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"
    },
    "split_keywords": [
        "data structures",
        " rust",
        " persistent"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1eb5b7591bb8d9f710df243a3b6304a2b70db5a426a2bd478c2912f8b81b806",
                "md5": "02c014b806495b76919681e39fe18414",
                "sha256": "d31dea506d718693b6b2cffc0648a8929bdc51c70a311b2770f09611caa10d53"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02c014b806495b76919681e39fe18414",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 327723,
            "upload_time": "2024-05-06T13:24:30",
            "upload_time_iso_8601": "2024-05-06T13:24:30.261972Z",
            "url": "https://files.pythonhosted.org/packages/a1/eb/5b7591bb8d9f710df243a3b6304a2b70db5a426a2bd478c2912f8b81b806/rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b99af1cce2481968d0ff1301d6da02bb977d7c7dc2ad9d218281ead38cc7f1ae",
                "md5": "60504addd26eb51ba3eb7b002a15ba06",
                "sha256": "732672fbc449bab754e0b15356c077cc31566df874964d4801ab14f71951ea80"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "60504addd26eb51ba3eb7b002a15ba06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 322269,
            "upload_time": "2024-05-06T13:24:33",
            "upload_time_iso_8601": "2024-05-06T13:24:33.439230Z",
            "url": "https://files.pythonhosted.org/packages/b9/9a/f1cce2481968d0ff1301d6da02bb977d7c7dc2ad9d218281ead38cc7f1ae/rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3167ddc46210ec4b52614c5d5ed72ca0afd12b6c6af1d7cb3859b2e7faa8ffe",
                "md5": "34fca4cd3862c68ef9dd2322d96dd15f",
                "sha256": "4a98a1f0552b5f227a3d6422dbd61bc6f30db170939bd87ed14f3c339aa6c7c9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "34fca4cd3862c68ef9dd2322d96dd15f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1114128,
            "upload_time": "2024-05-06T13:24:36",
            "upload_time_iso_8601": "2024-05-06T13:24:36.104275Z",
            "url": "https://files.pythonhosted.org/packages/f3/16/7ddc46210ec4b52614c5d5ed72ca0afd12b6c6af1d7cb3859b2e7faa8ffe/rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd6ae67b83791863db607a297b822fe95813c6cbff979608496f47d81ad45fea",
                "md5": "a47c9c1e45a54002f426d6d2bf591bcc",
                "sha256": "7f1944ce16401aad1e3f7d312247b3d5de7981f634dc9dfe90da72b87d37887d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a47c9c1e45a54002f426d6d2bf591bcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1123687,
            "upload_time": "2024-05-06T13:24:38",
            "upload_time_iso_8601": "2024-05-06T13:24:38.819772Z",
            "url": "https://files.pythonhosted.org/packages/fd/6a/e67b83791863db607a297b822fe95813c6cbff979608496f47d81ad45fea/rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7a9b25013071a61f008a8266a208e701cf8ec2c2946feb6005b3ec454f63a66",
                "md5": "67e581bd5d3616cde2a6bf7481ad8c58",
                "sha256": "38e14fb4e370885c4ecd734f093a2225ee52dc384b86fa55fe3f74638b2cfb09"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "67e581bd5d3616cde2a6bf7481ad8c58",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1145179,
            "upload_time": "2024-05-06T13:24:40",
            "upload_time_iso_8601": "2024-05-06T13:24:40.835276Z",
            "url": "https://files.pythonhosted.org/packages/d7/a9/b25013071a61f008a8266a208e701cf8ec2c2946feb6005b3ec454f63a66/rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5765b9769f891d0f2f915151f6d172f82ce182cedf950bcc65af4e853d794421",
                "md5": "29ef24ec0f4bcec9e619fc909adb221a",
                "sha256": "08d74b184f9ab6289b87b19fe6a6d1a97fbfea84b8a3e745e87a5de3029bf944"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "29ef24ec0f4bcec9e619fc909adb221a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1309609,
            "upload_time": "2024-05-06T13:24:44",
            "upload_time_iso_8601": "2024-05-06T13:24:44.066636Z",
            "url": "https://files.pythonhosted.org/packages/57/65/b9769f891d0f2f915151f6d172f82ce182cedf950bcc65af4e853d794421/rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e52010c12b1acb102c4981a7e1dc86b60e36c1d5c940a7bda48643542f80dbff",
                "md5": "07501bb4f92331c0af56fcfd07f60eff",
                "sha256": "d70129cef4a8d979caa37e7fe957202e7eee8ea02c5e16455bc9808a59c6b2f0"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07501bb4f92331c0af56fcfd07f60eff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1114172,
            "upload_time": "2024-05-06T13:24:46",
            "upload_time_iso_8601": "2024-05-06T13:24:46.280825Z",
            "url": "https://files.pythonhosted.org/packages/e5/20/10c12b1acb102c4981a7e1dc86b60e36c1d5c940a7bda48643542f80dbff/rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "735bbf77d1fe5025eeec85d62e389edacf073b93553b4837f8221093acc3ed7e",
                "md5": "6fdd0480c5cb8d24add29e6d998dc2ce",
                "sha256": "ce0bb20e3a11bd04461324a6a798af34d503f8d6f1aa3d2aa8901ceaf039176d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6fdd0480c5cb8d24add29e6d998dc2ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1139248,
            "upload_time": "2024-05-06T13:24:48",
            "upload_time_iso_8601": "2024-05-06T13:24:48.268113Z",
            "url": "https://files.pythonhosted.org/packages/73/5b/bf77d1fe5025eeec85d62e389edacf073b93553b4837f8221093acc3ed7e/rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2b9dcb20646cda07b4e9db3b346c19a4685623c9a9aa8ad8a566776def0da33",
                "md5": "6263015dc16da7eae945906ba8e78470",
                "sha256": "81c5196a790032e0fc2464c0b4ab95f8610f96f1f2fa3d4deacce6a79852da60"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6263015dc16da7eae945906ba8e78470",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1277001,
            "upload_time": "2024-05-06T13:24:50",
            "upload_time_iso_8601": "2024-05-06T13:24:50.586277Z",
            "url": "https://files.pythonhosted.org/packages/c2/b9/dcb20646cda07b4e9db3b346c19a4685623c9a9aa8ad8a566776def0da33/rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "555cf59ed857a85d6713d936d70e3235a7c9bc51bc83ab7c1b4e9b4f9371abbc",
                "md5": "ce88ea96edb881426720d7b14476b35b",
                "sha256": "f3027be483868c99b4985fda802a57a67fdf30c5d9a50338d9db646d590198da"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ce88ea96edb881426720d7b14476b35b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1304195,
            "upload_time": "2024-05-06T13:24:52",
            "upload_time_iso_8601": "2024-05-06T13:24:52.858301Z",
            "url": "https://files.pythonhosted.org/packages/55/5c/f59ed857a85d6713d936d70e3235a7c9bc51bc83ab7c1b4e9b4f9371abbc/rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f3c2807bb396f1d940813d1ec39efb8984ec01e84e2064db9a06bf314f3658d",
                "md5": "b31459f9a94d8ff8569fd8f441d3a9b5",
                "sha256": "d44607f98caa2961bab4fa3c4309724b185b464cdc3ba6f3d7340bac3ec97cc1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b31459f9a94d8ff8569fd8f441d3a9b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1282968,
            "upload_time": "2024-05-06T13:24:55",
            "upload_time_iso_8601": "2024-05-06T13:24:55.301522Z",
            "url": "https://files.pythonhosted.org/packages/4f/3c/2807bb396f1d940813d1ec39efb8984ec01e84e2064db9a06bf314f3658d/rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d213495eea6921b280ac04602fc3cc4b385ab985a2eb3e450281d02ce98872bc",
                "md5": "2c6749113eb25d6b9b87b337e28b6cc6",
                "sha256": "c273e795e7a0f1fddd46e1e3cb8be15634c29ae8ff31c196debb620e1edb9333"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2c6749113eb25d6b9b87b337e28b6cc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 196635,
            "upload_time": "2024-05-06T13:24:57",
            "upload_time_iso_8601": "2024-05-06T13:24:57.668895Z",
            "url": "https://files.pythonhosted.org/packages/d2/13/495eea6921b280ac04602fc3cc4b385ab985a2eb3e450281d02ce98872bc/rpds_py-0.18.1-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bbfc8f8b5d1da7f0673998c63d2246987773c3422e1c2482bbf511b7fffe184",
                "md5": "8efa15bce28b4de8f88965277fd5250b",
                "sha256": "8352f48d511de5f973e4f2f9412736d7dea76c69faa6d36bcf885b50c758ab9a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8efa15bce28b4de8f88965277fd5250b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 209023,
            "upload_time": "2024-05-06T13:24:59",
            "upload_time_iso_8601": "2024-05-06T13:24:59.890450Z",
            "url": "https://files.pythonhosted.org/packages/1b/bf/c8f8b5d1da7f0673998c63d2246987773c3422e1c2482bbf511b7fffe184/rpds_py-0.18.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0cf3454ef9c66219ea511991e024f3a379fca618acd4cbe12e369b2d02f9d0b6",
                "md5": "eed749f1f34e7c0c58eb7c497a513f76",
                "sha256": "6b5ff7e1d63a8281654b5e2896d7f08799378e594f09cf3674e832ecaf396ce8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eed749f1f34e7c0c58eb7c497a513f76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 327805,
            "upload_time": "2024-05-06T13:25:02",
            "upload_time_iso_8601": "2024-05-06T13:25:02.669831Z",
            "url": "https://files.pythonhosted.org/packages/0c/f3/454ef9c66219ea511991e024f3a379fca618acd4cbe12e369b2d02f9d0b6/rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58e3b5eb611e2d51688726533bb97b420d36a55d4560c53d016e977ff6d48116",
                "md5": "478d3cb9d3abdc40f9cb6cb93e09fa95",
                "sha256": "8927638a4d4137a289e41d0fd631551e89fa346d6dbcfc31ad627557d03ceb6d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "478d3cb9d3abdc40f9cb6cb93e09fa95",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 322329,
            "upload_time": "2024-05-06T13:25:05",
            "upload_time_iso_8601": "2024-05-06T13:25:05.666643Z",
            "url": "https://files.pythonhosted.org/packages/58/e3/b5eb611e2d51688726533bb97b420d36a55d4560c53d016e977ff6d48116/rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "924832bed868dd4e7d16e26457cc0b8634d6b16cb0e082a93f044ef5f7c77361",
                "md5": "67e76c6a002e353e42f8de7684302b37",
                "sha256": "154bf5c93d79558b44e5b50cc354aa0459e518e83677791e6adb0b039b7aa6a7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "67e76c6a002e353e42f8de7684302b37",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1114289,
            "upload_time": "2024-05-06T13:25:08",
            "upload_time_iso_8601": "2024-05-06T13:25:08.806275Z",
            "url": "https://files.pythonhosted.org/packages/92/48/32bed868dd4e7d16e26457cc0b8634d6b16cb0e082a93f044ef5f7c77361/rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7766905aa687ea072d8980f7b14eb9e3c3023f5f3892eb8b88be024094956014",
                "md5": "cb36a470836a7a1241e9c5fd582d2bd6",
                "sha256": "07f2139741e5deb2c5154a7b9629bc5aa48c766b643c1a6750d16f865a82c5fc"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cb36a470836a7a1241e9c5fd582d2bd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1123667,
            "upload_time": "2024-05-06T13:25:11",
            "upload_time_iso_8601": "2024-05-06T13:25:11.624394Z",
            "url": "https://files.pythonhosted.org/packages/77/66/905aa687ea072d8980f7b14eb9e3c3023f5f3892eb8b88be024094956014/rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e6cc658183fc2d2a6ed97b0816ab4fef59d609e596bf6f5f0898ae955c14885",
                "md5": "ce3cafe059a6f79cde7b3faf756c4f54",
                "sha256": "8c7672e9fba7425f79019db9945b16e308ed8bc89348c23d955c8c0540da0a07"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ce3cafe059a6f79cde7b3faf756c4f54",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1145398,
            "upload_time": "2024-05-06T13:25:14",
            "upload_time_iso_8601": "2024-05-06T13:25:14.607053Z",
            "url": "https://files.pythonhosted.org/packages/4e/6c/c658183fc2d2a6ed97b0816ab4fef59d609e596bf6f5f0898ae955c14885/rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9133b680feac0159b5b66ebb9e6d635d78e94486b0b7ed58bea273be2cc80817",
                "md5": "b100ea2587d1e0abe5d9eba6a8ca22c9",
                "sha256": "489bdfe1abd0406eba6b3bb4fdc87c7fa40f1031de073d0cfb744634cc8fa261"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b100ea2587d1e0abe5d9eba6a8ca22c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1309726,
            "upload_time": "2024-05-06T13:25:16",
            "upload_time_iso_8601": "2024-05-06T13:25:16.757537Z",
            "url": "https://files.pythonhosted.org/packages/91/33/b680feac0159b5b66ebb9e6d635d78e94486b0b7ed58bea273be2cc80817/rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ba0a3702128743ae5bf14175a7333a4741db167f62d42f70e0edc15d9cd45c5",
                "md5": "2cb0c2175552ec6235ab143947a59304",
                "sha256": "3c20f05e8e3d4fc76875fc9cb8cf24b90a63f5a1b4c5b9273f0e8225e169b100"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2cb0c2175552ec6235ab143947a59304",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1114522,
            "upload_time": "2024-05-06T13:25:19",
            "upload_time_iso_8601": "2024-05-06T13:25:19.815253Z",
            "url": "https://files.pythonhosted.org/packages/1b/a0/a3702128743ae5bf14175a7333a4741db167f62d42f70e0edc15d9cd45c5/rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c13ba4ed8b067a8f55df92dc1bc4d20858f02ddfdba3057f96759f4dd1bff7af",
                "md5": "83d22a29ec212eb657fe02b96c2329e6",
                "sha256": "967342e045564cef76dfcf1edb700b1e20838d83b1aa02ab313e6a497cf923b8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "83d22a29ec212eb657fe02b96c2329e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1139472,
            "upload_time": "2024-05-06T13:25:22",
            "upload_time_iso_8601": "2024-05-06T13:25:22.140049Z",
            "url": "https://files.pythonhosted.org/packages/c1/3b/a4ed8b067a8f55df92dc1bc4d20858f02ddfdba3057f96759f4dd1bff7af/rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4baadb81247a2fe211ff74cd4c2790454bbf37eb7430ee898e4aa7ce5cb6507",
                "md5": "5a4a5b132f14c94508e9d775a7825192",
                "sha256": "2cc7c1a47f3a63282ab0f422d90ddac4aa3034e39fc66a559ab93041e6505da7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5a4a5b132f14c94508e9d775a7825192",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1277148,
            "upload_time": "2024-05-06T13:25:25",
            "upload_time_iso_8601": "2024-05-06T13:25:25.122296Z",
            "url": "https://files.pythonhosted.org/packages/f4/ba/adb81247a2fe211ff74cd4c2790454bbf37eb7430ee898e4aa7ce5cb6507/rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52fc1eb8dcf82ec8d1252c060644fa44478660e94637ddd91dc8d452b467f359",
                "md5": "559b0bf2ec7c4365d49b6fc2fb045be8",
                "sha256": "f7afbfee1157e0f9376c00bb232e80a60e59ed716e3211a80cb8506550671e6e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "559b0bf2ec7c4365d49b6fc2fb045be8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1304556,
            "upload_time": "2024-05-06T13:25:27",
            "upload_time_iso_8601": "2024-05-06T13:25:27.737168Z",
            "url": "https://files.pythonhosted.org/packages/52/fc/1eb8dcf82ec8d1252c060644fa44478660e94637ddd91dc8d452b467f359/rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a93f0b8e2ac89076fede032aae3fc9cf9390c6fd99a470b238fb62bbc64f4cbf",
                "md5": "d459c9741fd213c1483e22007948e72a",
                "sha256": "9e6934d70dc50f9f8ea47081ceafdec09245fd9f6032669c3b45705dea096b88"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d459c9741fd213c1483e22007948e72a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1283410,
            "upload_time": "2024-05-06T13:25:29",
            "upload_time_iso_8601": "2024-05-06T13:25:29.843664Z",
            "url": "https://files.pythonhosted.org/packages/a9/3f/0b8e2ac89076fede032aae3fc9cf9390c6fd99a470b238fb62bbc64f4cbf/rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74e0f9dc97509b3048ddc3ab7b0cd48bd25f78dff45bec463c62b0171c57398c",
                "md5": "eace5e55a8824d9c96dce9a17d54fceb",
                "sha256": "c69882964516dc143083d3795cb508e806b09fc3800fd0d4cddc1df6c36e76bb"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "eace5e55a8824d9c96dce9a17d54fceb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 196622,
            "upload_time": "2024-05-06T13:25:31",
            "upload_time_iso_8601": "2024-05-06T13:25:31.794201Z",
            "url": "https://files.pythonhosted.org/packages/74/e0/f9dc97509b3048ddc3ab7b0cd48bd25f78dff45bec463c62b0171c57398c/rpds_py-0.18.1-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff260778cc18815f20e37eb492bfed622d01722db38b2f3f86790753b01b2a73",
                "md5": "4c34cc143b816326a9ea9113d336c9ea",
                "sha256": "70a838f7754483bcdc830444952fd89645569e7452e3226de4a613a4c1793fb2"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4c34cc143b816326a9ea9113d336c9ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 209016,
            "upload_time": "2024-05-06T13:25:33",
            "upload_time_iso_8601": "2024-05-06T13:25:33.646241Z",
            "url": "https://files.pythonhosted.org/packages/ff/26/0778cc18815f20e37eb492bfed622d01722db38b2f3f86790753b01b2a73/rpds_py-0.18.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0304a39fc930b1ab45943b7f3a8d990a3c731b37541d9eb58c5664374c2ce007",
                "md5": "1066eb29230c4b36ab6a7ebaf7e86379",
                "sha256": "3dd3cd86e1db5aadd334e011eba4e29d37a104b403e8ca24dcd6703c68ca55b3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1066eb29230c4b36ab6a7ebaf7e86379",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 329378,
            "upload_time": "2024-05-06T13:25:35",
            "upload_time_iso_8601": "2024-05-06T13:25:35.648778Z",
            "url": "https://files.pythonhosted.org/packages/03/04/a39fc930b1ab45943b7f3a8d990a3c731b37541d9eb58c5664374c2ce007/rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "972ae96015e3e6c0b1d5c06a009ab058f30776a4a6e1b14773ad7beefac82b99",
                "md5": "a05aee2f3e39de6c76735055bdaffdb3",
                "sha256": "05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a05aee2f3e39de6c76735055bdaffdb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 323585,
            "upload_time": "2024-05-06T13:25:37",
            "upload_time_iso_8601": "2024-05-06T13:25:37.913598Z",
            "url": "https://files.pythonhosted.org/packages/97/2a/e96015e3e6c0b1d5c06a009ab058f30776a4a6e1b14773ad7beefac82b99/rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1938eb7ae2b3ca5001b74536a67555e65202bedd1302f3d5d5000f7b0dc67ba6",
                "md5": "74f58f7f2cc35531e21a51b3d70cf804",
                "sha256": "35b2b771b13eee8729a5049c976197ff58a27a3829c018a04341bcf1ae409b2b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74f58f7f2cc35531e21a51b3d70cf804",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1115272,
            "upload_time": "2024-05-06T13:25:39",
            "upload_time_iso_8601": "2024-05-06T13:25:39.883462Z",
            "url": "https://files.pythonhosted.org/packages/19/38/eb7ae2b3ca5001b74536a67555e65202bedd1302f3d5d5000f7b0dc67ba6/rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "206a571d8b2afa73bf750f86eeaad7e132c7cce1b0a22cc0ab2c53545bbac6e1",
                "md5": "b3ae16d42f2cb76e3ffe5ade5094d800",
                "sha256": "ee17cd26b97d537af8f33635ef38be873073d516fd425e80559f4585a7b90c43"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b3ae16d42f2cb76e3ffe5ade5094d800",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1131961,
            "upload_time": "2024-05-06T13:25:42",
            "upload_time_iso_8601": "2024-05-06T13:25:42.330324Z",
            "url": "https://files.pythonhosted.org/packages/20/6a/571d8b2afa73bf750f86eeaad7e132c7cce1b0a22cc0ab2c53545bbac6e1/rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3cb1af0a13cdcd9183ec6f4ea9f2ae8cb48a697db0961a3f80e11a937af91f28",
                "md5": "bdca91f81688e77026516efaca429191",
                "sha256": "b646bf655b135ccf4522ed43d6902af37d3f5dbcf0da66c769a2b3938b9d8184"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bdca91f81688e77026516efaca429191",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1145118,
            "upload_time": "2024-05-06T13:25:45",
            "upload_time_iso_8601": "2024-05-06T13:25:45.163148Z",
            "url": "https://files.pythonhosted.org/packages/3c/b1/af0a13cdcd9183ec6f4ea9f2ae8cb48a697db0961a3f80e11a937af91f28/rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0330067d42b83d2b4e0c918a3e130236423cb3c7da0920cc162c5fce8f944205",
                "md5": "b85aa6bcc5beef436e02be1990c7f798",
                "sha256": "19ba472b9606c36716062c023afa2484d1e4220548751bda14f725a7de17b4f6"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b85aa6bcc5beef436e02be1990c7f798",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1298533,
            "upload_time": "2024-05-06T13:25:47",
            "upload_time_iso_8601": "2024-05-06T13:25:47.508587Z",
            "url": "https://files.pythonhosted.org/packages/03/30/067d42b83d2b4e0c918a3e130236423cb3c7da0920cc162c5fce8f944205/rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "281c2e208636275eab9636981fee10cb5cdaf3d5a202c3c16bf31fdd52ee08d0",
                "md5": "fa39d8c21d088cb288f61ccfe604175f",
                "sha256": "6e30ac5e329098903262dc5bdd7e2086e0256aa762cc8b744f9e7bf2a427d3f8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa39d8c21d088cb288f61ccfe604175f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1117290,
            "upload_time": "2024-05-06T13:25:49",
            "upload_time_iso_8601": "2024-05-06T13:25:49.951404Z",
            "url": "https://files.pythonhosted.org/packages/28/1c/2e208636275eab9636981fee10cb5cdaf3d5a202c3c16bf31fdd52ee08d0/rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45048fd5e166e8bb6d386491f41da51ae07118deb5461114f9eb160a7c10cedc",
                "md5": "7e2068a7a7849ad568c5880d1facc4e3",
                "sha256": "d58ad6317d188c43750cb76e9deacf6051d0f884d87dc6518e0280438648a9ac"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7e2068a7a7849ad568c5880d1facc4e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1143292,
            "upload_time": "2024-05-06T13:25:52",
            "upload_time_iso_8601": "2024-05-06T13:25:52.677050Z",
            "url": "https://files.pythonhosted.org/packages/45/04/8fd5e166e8bb6d386491f41da51ae07118deb5461114f9eb160a7c10cedc/rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bb85da92178ecd95f6193cb4144f5c2a21bd6d743200c0739c9290c6240bfc1",
                "md5": "1d344f5f345a94f469f56f81106ebe62",
                "sha256": "e1735502458621921cee039c47318cb90b51d532c2766593be6207eec53e5c4c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1d344f5f345a94f469f56f81106ebe62",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1278364,
            "upload_time": "2024-05-06T13:25:55",
            "upload_time_iso_8601": "2024-05-06T13:25:55.260009Z",
            "url": "https://files.pythonhosted.org/packages/6b/b8/5da92178ecd95f6193cb4144f5c2a21bd6d743200c0739c9290c6240bfc1/rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d128e63095852b338b4c476f34fca47d87befb19f219a326fd3f3e3749e1a49b",
                "md5": "d421c7abb3b361062e3f3e5fa605f211",
                "sha256": "f5bab211605d91db0e2995a17b5c6ee5edec1270e46223e513eaa20da20076ac"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d421c7abb3b361062e3f3e5fa605f211",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1307845,
            "upload_time": "2024-05-06T13:25:57",
            "upload_time_iso_8601": "2024-05-06T13:25:57.694787Z",
            "url": "https://files.pythonhosted.org/packages/d1/28/e63095852b338b4c476f34fca47d87befb19f219a326fd3f3e3749e1a49b/rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "635e20602b2cfdf0cafa8b1668cf64ccdb32d43dcb996d3ba456fcc02e791a88",
                "md5": "98b96b9abba71d8604a00966e80c5945",
                "sha256": "2fc24a329a717f9e2448f8cd1f960f9dac4e45b6224d60734edeb67499bab03a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98b96b9abba71d8604a00966e80c5945",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1285323,
            "upload_time": "2024-05-06T13:26:00",
            "upload_time_iso_8601": "2024-05-06T13:26:00.130749Z",
            "url": "https://files.pythonhosted.org/packages/63/5e/20602b2cfdf0cafa8b1668cf64ccdb32d43dcb996d3ba456fcc02e791a88/rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdc6947a657bc116c985517e7a7efe01a043f263ee2dd2c9875cedc8ebf26373",
                "md5": "1544bf81771f85f2b9d071bc7afcb4b0",
                "sha256": "1805d5901779662d599d0e2e4159d8a82c0b05faa86ef9222bf974572286b2b6"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "1544bf81771f85f2b9d071bc7afcb4b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 197764,
            "upload_time": "2024-05-06T13:26:02",
            "upload_time_iso_8601": "2024-05-06T13:26:02.652699Z",
            "url": "https://files.pythonhosted.org/packages/fd/c6/947a657bc116c985517e7a7efe01a043f263ee2dd2c9875cedc8ebf26373/rpds_py-0.18.1-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "017d8552e329973a198e5e150cc6be068f5cbae797a89e64c02bbd47bd397dee",
                "md5": "675103244a3f6e296f6070660902af51",
                "sha256": "720edcb916df872d80f80a1cc5ea9058300b97721efda8651efcd938a9c70a72"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "675103244a3f6e296f6070660902af51",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 209322,
            "upload_time": "2024-05-06T13:26:04",
            "upload_time_iso_8601": "2024-05-06T13:26:04.822367Z",
            "url": "https://files.pythonhosted.org/packages/01/7d/8552e329973a198e5e150cc6be068f5cbae797a89e64c02bbd47bd397dee/rpds_py-0.18.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db89c0e8e04be0d4ebb390d9b0941288a0268b5d1a98a6eec22723e009c9334f",
                "md5": "019032804e86fdd4637f10dd4a4ab592",
                "sha256": "c827576e2fa017a081346dce87d532a5310241648eb3700af9a571a6e9fc7e74"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "019032804e86fdd4637f10dd4a4ab592",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 327411,
            "upload_time": "2024-05-06T13:26:07",
            "upload_time_iso_8601": "2024-05-06T13:26:07.406809Z",
            "url": "https://files.pythonhosted.org/packages/db/89/c0e8e04be0d4ebb390d9b0941288a0268b5d1a98a6eec22723e009c9334f/rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6542e8ea20e5ecbd3ed2228500db56024fc09f130a75bf9d530c88aca4f57aa6",
                "md5": "917ce91d911376572a5af37becaa1c75",
                "sha256": "aa3679e751408d75a0b4d8d26d6647b6d9326f5e35c00a7ccd82b78ef64f65f8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "917ce91d911376572a5af37becaa1c75",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 323295,
            "upload_time": "2024-05-06T13:26:09",
            "upload_time_iso_8601": "2024-05-06T13:26:09.506435Z",
            "url": "https://files.pythonhosted.org/packages/65/42/e8ea20e5ecbd3ed2228500db56024fc09f130a75bf9d530c88aca4f57aa6/rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "592126b0b40d3945e2a83d3626dff45ca65d4d719f914bbcbc23e43162b5cd8d",
                "md5": "3180764cfa9356a2b71ca9a0f5aff39a",
                "sha256": "0abeee75434e2ee2d142d650d1e54ac1f8b01e6e6abdde8ffd6eeac6e9c38e20"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3180764cfa9356a2b71ca9a0f5aff39a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1114426,
            "upload_time": "2024-05-06T13:26:11",
            "upload_time_iso_8601": "2024-05-06T13:26:11.894290Z",
            "url": "https://files.pythonhosted.org/packages/59/21/26b0b40d3945e2a83d3626dff45ca65d4d719f914bbcbc23e43162b5cd8d/rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1112866549e2af13cc70f23ec297d9bbdb9cf97745392bfdf61cbd946a7d7ca6",
                "md5": "530fc89794ce388ad0cb6852e003c3bf",
                "sha256": "ed402d6153c5d519a0faf1bb69898e97fb31613b49da27a84a13935ea9164dfc"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "530fc89794ce388ad0cb6852e003c3bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1123781,
            "upload_time": "2024-05-06T13:26:14",
            "upload_time_iso_8601": "2024-05-06T13:26:14.185222Z",
            "url": "https://files.pythonhosted.org/packages/11/12/866549e2af13cc70f23ec297d9bbdb9cf97745392bfdf61cbd946a7d7ca6/rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e881d47f29b80a9cd9ea81bd03561c7e0515f2bbe823767864f91745a3906cb0",
                "md5": "a25a7631c7f7381ab10d47521288ea0c",
                "sha256": "338dee44b0cef8b70fd2ef54b4e09bb1b97fc6c3a58fea5db6cc083fd9fc2724"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a25a7631c7f7381ab10d47521288ea0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1145128,
            "upload_time": "2024-05-06T13:26:16",
            "upload_time_iso_8601": "2024-05-06T13:26:16.460704Z",
            "url": "https://files.pythonhosted.org/packages/e8/81/d47f29b80a9cd9ea81bd03561c7e0515f2bbe823767864f91745a3906cb0/rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba477995225572d53b14bafb9d406f52145b6a082009cf10143646d3f22913f2",
                "md5": "85b897c206c428f1e55f59902fe6a92b",
                "sha256": "7750569d9526199c5b97e5a9f8d96a13300950d910cf04a861d96f4273d5b104"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "85b897c206c428f1e55f59902fe6a92b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1309777,
            "upload_time": "2024-05-06T13:26:19",
            "upload_time_iso_8601": "2024-05-06T13:26:19.074888Z",
            "url": "https://files.pythonhosted.org/packages/ba/47/7995225572d53b14bafb9d406f52145b6a082009cf10143646d3f22913f2/rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b2d7ce6b2fe57d288b0c3e735e79612e79cddb52b6042b68e9c329e25c42ff5",
                "md5": "3792ea9bb9ae3e48c1667aa50b28fe3b",
                "sha256": "607345bd5912aacc0c5a63d45a1f73fef29e697884f7e861094e443187c02be5"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3792ea9bb9ae3e48c1667aa50b28fe3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1114803,
            "upload_time": "2024-05-06T13:26:21",
            "upload_time_iso_8601": "2024-05-06T13:26:21.599470Z",
            "url": "https://files.pythonhosted.org/packages/6b/2d/7ce6b2fe57d288b0c3e735e79612e79cddb52b6042b68e9c329e25c42ff5/rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a52d2447c5a8872097a7b6bb7d28305fc85d27d797bf9715d5ea44f36eacabc7",
                "md5": "13cf292535f2fcb633b0c210da12aa3d",
                "sha256": "207c82978115baa1fd8d706d720b4a4d2b0913df1c78c85ba73fe6c5804505f0"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "13cf292535f2fcb633b0c210da12aa3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1138916,
            "upload_time": "2024-05-06T13:26:23",
            "upload_time_iso_8601": "2024-05-06T13:26:23.885418Z",
            "url": "https://files.pythonhosted.org/packages/a5/2d/2447c5a8872097a7b6bb7d28305fc85d27d797bf9715d5ea44f36eacabc7/rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e55a2e0ac1c38021da0055f08a0f49be29f64df6dcffcdd63b2d38c402e94489",
                "md5": "c88d24a63e66c58aac527cd01cd048e2",
                "sha256": "6d1e42d2735d437e7e80bab4d78eb2e459af48c0a46e686ea35f690b93db792d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c88d24a63e66c58aac527cd01cd048e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1276965,
            "upload_time": "2024-05-06T13:26:26",
            "upload_time_iso_8601": "2024-05-06T13:26:26.180874Z",
            "url": "https://files.pythonhosted.org/packages/e5/5a/2e0ac1c38021da0055f08a0f49be29f64df6dcffcdd63b2d38c402e94489/rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f3eefa774354adc00b3d3dbae80daf3fbd0155d68c246d0b41f626d53f329d1",
                "md5": "8a9b528da2342686232c680f97a22978",
                "sha256": "5463c47c08630007dc0fe99fb480ea4f34a89712410592380425a9b4e1611d8e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8a9b528da2342686232c680f97a22978",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1305128,
            "upload_time": "2024-05-06T13:26:28",
            "upload_time_iso_8601": "2024-05-06T13:26:28.648244Z",
            "url": "https://files.pythonhosted.org/packages/6f/3e/efa774354adc00b3d3dbae80daf3fbd0155d68c246d0b41f626d53f329d1/rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "194ee72c314d3a5933aa37cdd045ec21e1b0ad9cf3b38166b61732481d3a4a00",
                "md5": "2f0ff739211940e22bb1d13381c8474e",
                "sha256": "06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f0ff739211940e22bb1d13381c8474e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1283193,
            "upload_time": "2024-05-06T13:26:30",
            "upload_time_iso_8601": "2024-05-06T13:26:30.718155Z",
            "url": "https://files.pythonhosted.org/packages/19/4e/e72c314d3a5933aa37cdd045ec21e1b0ad9cf3b38166b61732481d3a4a00/rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85d1af79ddf8087c350c4534a0fabc340befd4b066e0db4548669e57ab1a2b2b",
                "md5": "4bf72135e635a904025fe756fb9b6306",
                "sha256": "312fe69b4fe1ffbe76520a7676b1e5ac06ddf7826d764cc10265c3b53f96dbe9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4bf72135e635a904025fe756fb9b6306",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 197740,
            "upload_time": "2024-05-06T13:26:32",
            "upload_time_iso_8601": "2024-05-06T13:26:32.775044Z",
            "url": "https://files.pythonhosted.org/packages/85/d1/af79ddf8087c350c4534a0fabc340befd4b066e0db4548669e57ab1a2b2b/rpds_py-0.18.1-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1dbbabfc21d701ab9a7192b634803881e450bb73b9e8894b7f10d1015fedec1",
                "md5": "53f913e0b3af63e28da230f173ced336",
                "sha256": "9437ca26784120a279f3137ee080b0e717012c42921eb07861b412340f85bae2"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53f913e0b3af63e28da230f173ced336",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 209176,
            "upload_time": "2024-05-06T13:26:34",
            "upload_time_iso_8601": "2024-05-06T13:26:34.622141Z",
            "url": "https://files.pythonhosted.org/packages/d1/db/babfc21d701ab9a7192b634803881e450bb73b9e8894b7f10d1015fedec1/rpds_py-0.18.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7a015114fa1e4427b966e686f10fbad8c23a464d226d34a6712dcaa366707d7",
                "md5": "f7d70dccb111217cef3e2e5fb67a758e",
                "sha256": "19e515b78c3fc1039dd7da0a33c28c3154458f947f4dc198d3c72db2b6b5dc93"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7d70dccb111217cef3e2e5fb67a758e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 327442,
            "upload_time": "2024-05-06T13:26:37",
            "upload_time_iso_8601": "2024-05-06T13:26:37.319541Z",
            "url": "https://files.pythonhosted.org/packages/d7/a0/15114fa1e4427b966e686f10fbad8c23a464d226d34a6712dcaa366707d7/rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ef689c0302279feb2c7dcce7064326cb588299470f0c172979ef26888b6aa53",
                "md5": "e35a48c008cca1a78af31478397a686f",
                "sha256": "a7b28c5b066bca9a4eb4e2f2663012debe680f097979d880657f00e1c30875a0"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e35a48c008cca1a78af31478397a686f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 322495,
            "upload_time": "2024-05-06T13:26:39",
            "upload_time_iso_8601": "2024-05-06T13:26:39.543496Z",
            "url": "https://files.pythonhosted.org/packages/7e/f6/89c0302279feb2c7dcce7064326cb588299470f0c172979ef26888b6aa53/rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "894b633f22dcfc96b33e0bba801d3022359d0cec6f02f0001790cea84df636ad",
                "md5": "3c03138bb9d879cbb8926265f1f5e663",
                "sha256": "673fdbbf668dd958eff750e500495ef3f611e2ecc209464f661bc82e9838991e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c03138bb9d879cbb8926265f1f5e663",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1114414,
            "upload_time": "2024-05-06T13:26:41",
            "upload_time_iso_8601": "2024-05-06T13:26:41.767902Z",
            "url": "https://files.pythonhosted.org/packages/89/4b/633f22dcfc96b33e0bba801d3022359d0cec6f02f0001790cea84df636ad/rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6acb86f59a827bdd446759cffeb10242814da0652b28e57362c41dfabab71ca0",
                "md5": "240f9ef9c7a26efd7c19223971ade8fa",
                "sha256": "d960de62227635d2e61068f42a6cb6aae91a7fe00fca0e3aeed17667c8a34611"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "240f9ef9c7a26efd7c19223971ade8fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1123796,
            "upload_time": "2024-05-06T13:26:43",
            "upload_time_iso_8601": "2024-05-06T13:26:43.997849Z",
            "url": "https://files.pythonhosted.org/packages/6a/cb/86f59a827bdd446759cffeb10242814da0652b28e57362c41dfabab71ca0/rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c14fa947a9cf31b7d08b26feea4fcc3d57de96924fd1a6c87b46b430fbb11b7",
                "md5": "f40fc5aed42bc398111baf500c82ba66",
                "sha256": "352a88dc7892f1da66b6027af06a2e7e5d53fe05924cc2cfc56495b586a10b72"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f40fc5aed42bc398111baf500c82ba66",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1145259,
            "upload_time": "2024-05-06T13:26:46",
            "upload_time_iso_8601": "2024-05-06T13:26:46.446406Z",
            "url": "https://files.pythonhosted.org/packages/8c/14/fa947a9cf31b7d08b26feea4fcc3d57de96924fd1a6c87b46b430fbb11b7/rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c83bcc231994f64baaff05ac2a6f847f9760d362263765b904c98782e377a317",
                "md5": "d91cc9986ae6fe6ca4a6bf55364e25b0",
                "sha256": "4e0ee01ad8260184db21468a6e1c37afa0529acc12c3a697ee498d3c2c4dcaf3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d91cc9986ae6fe6ca4a6bf55364e25b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1309479,
            "upload_time": "2024-05-06T13:26:49",
            "upload_time_iso_8601": "2024-05-06T13:26:49.324796Z",
            "url": "https://files.pythonhosted.org/packages/c8/3b/cc231994f64baaff05ac2a6f847f9760d362263765b904c98782e377a317/rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97b112238bd8cdf3cef71e85188af133399bfde1bddf319007361cc869d6f6a7",
                "md5": "4e31d9357322d5167665ae5103ecb590",
                "sha256": "e4c39ad2f512b4041343ea3c7894339e4ca7839ac38ca83d68a832fc8b3748ab"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e31d9357322d5167665ae5103ecb590",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1114758,
            "upload_time": "2024-05-06T13:26:51",
            "upload_time_iso_8601": "2024-05-06T13:26:51.851227Z",
            "url": "https://files.pythonhosted.org/packages/97/b1/12238bd8cdf3cef71e85188af133399bfde1bddf319007361cc869d6f6a7/rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9d6cb9edd4910b6f253b4f64b0d8871ddcdc9ff02241307f33cccdb61f903cd",
                "md5": "183eda31e8bd23d2aa2af06ac0f75e33",
                "sha256": "aaa71ee43a703c321906813bb252f69524f02aa05bf4eec85f0c41d5d62d0f4c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "183eda31e8bd23d2aa2af06ac0f75e33",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1139728,
            "upload_time": "2024-05-06T13:26:54",
            "upload_time_iso_8601": "2024-05-06T13:26:54.033093Z",
            "url": "https://files.pythonhosted.org/packages/d9/d6/cb9edd4910b6f253b4f64b0d8871ddcdc9ff02241307f33cccdb61f903cd/rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2457599c6a77ceec52607fc2db134c583cad9b89268573ffd1fbcb15b9576f5f",
                "md5": "c37b726934697018ddd3ced9d6ab6553",
                "sha256": "6cd8098517c64a85e790657e7b1e509b9fe07487fd358e19431cb120f7d96338"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c37b726934697018ddd3ced9d6ab6553",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1277295,
            "upload_time": "2024-05-06T13:26:56",
            "upload_time_iso_8601": "2024-05-06T13:26:56.233740Z",
            "url": "https://files.pythonhosted.org/packages/24/57/599c6a77ceec52607fc2db134c583cad9b89268573ffd1fbcb15b9576f5f/rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7442d05e5e023aa3b410408881960664e7e3a526d2e6e9c8620a3fa926574451",
                "md5": "44baa66808bb4d95fd8b4e899e55d3aa",
                "sha256": "4adec039b8e2928983f885c53b7cc4cda8965b62b6596501a0308d2703f8af1b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "44baa66808bb4d95fd8b4e899e55d3aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1305724,
            "upload_time": "2024-05-06T13:26:58",
            "upload_time_iso_8601": "2024-05-06T13:26:58.481618Z",
            "url": "https://files.pythonhosted.org/packages/74/42/d05e5e023aa3b410408881960664e7e3a526d2e6e9c8620a3fa926574451/rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9657bb354853ee6d867c900d4149b277ad027df7ad530084caa7e3b29c2ee6d3",
                "md5": "40ff673635dd9da087ed5b3f9a4851cb",
                "sha256": "32b7daaa3e9389db3695964ce8e566e3413b0c43e3394c05e4b243a4cd7bef26"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40ff673635dd9da087ed5b3f9a4851cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1282632,
            "upload_time": "2024-05-06T13:27:00",
            "upload_time_iso_8601": "2024-05-06T13:27:00.838498Z",
            "url": "https://files.pythonhosted.org/packages/96/57/bb354853ee6d867c900d4149b277ad027df7ad530084caa7e3b29c2ee6d3/rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81281f37f2c547aadc74100569d271644a7becd1ab75b067897800049cad4364",
                "md5": "faf8aa44498478128e919087dec3d45e",
                "sha256": "2625f03b105328729f9450c8badda34d5243231eef6535f80064d57035738360"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "faf8aa44498478128e919087dec3d45e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 196831,
            "upload_time": "2024-05-06T13:27:03",
            "upload_time_iso_8601": "2024-05-06T13:27:03.071748Z",
            "url": "https://files.pythonhosted.org/packages/81/28/1f37f2c547aadc74100569d271644a7becd1ab75b067897800049cad4364/rpds_py-0.18.1-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e64913a9adc8f2e7dae30ab76f3d6a750807a297fc4c897178a19e33f9eac10e",
                "md5": "0854451e3eefc9db6ac6981003c8eb47",
                "sha256": "bf18932d0003c8c4d51a39f244231986ab23ee057d235a12b2684ea26a353590"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0854451e3eefc9db6ac6981003c8eb47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 208753,
            "upload_time": "2024-05-06T13:27:05",
            "upload_time_iso_8601": "2024-05-06T13:27:05.104693Z",
            "url": "https://files.pythonhosted.org/packages/e6/49/13a9adc8f2e7dae30ab76f3d6a750807a297fc4c897178a19e33f9eac10e/rpds_py-0.18.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9704966a1b2286d6af7ab00bf66ccd18cac38c59b0c2973be18975edb19c639f",
                "md5": "c3a82bfa35c883a4df5861d24b97046f",
                "sha256": "cbfbea39ba64f5e53ae2915de36f130588bba71245b418060ec3330ebf85678e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3a82bfa35c883a4df5861d24b97046f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 326661,
            "upload_time": "2024-05-06T13:27:07",
            "upload_time_iso_8601": "2024-05-06T13:27:07.762929Z",
            "url": "https://files.pythonhosted.org/packages/97/04/966a1b2286d6af7ab00bf66ccd18cac38c59b0c2973be18975edb19c639f/rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75e63a04f482d8c6d602d6d848ce18e6195510504fed6ff32928052321fcca72",
                "md5": "9682bbb9be84e8580204a7db83cb8617",
                "sha256": "a3d456ff2a6a4d2adcdf3c1c960a36f4fd2fec6e3b4902a42a384d17cf4e7a65"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9682bbb9be84e8580204a7db83cb8617",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 321065,
            "upload_time": "2024-05-06T13:27:10",
            "upload_time_iso_8601": "2024-05-06T13:27:10.021634Z",
            "url": "https://files.pythonhosted.org/packages/75/e6/3a04f482d8c6d602d6d848ce18e6195510504fed6ff32928052321fcca72/rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c096edfe0d2cb019aab199344d19a2c0e2e3514ffeb67a04236933630c8a4090",
                "md5": "2eb35c608f2bc0c687956b17cda29123",
                "sha256": "7700936ef9d006b7ef605dc53aa364da2de5a3aa65516a1f3ce73bf82ecfc7ae"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2eb35c608f2bc0c687956b17cda29123",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1114055,
            "upload_time": "2024-05-06T13:27:12",
            "upload_time_iso_8601": "2024-05-06T13:27:12.087399Z",
            "url": "https://files.pythonhosted.org/packages/c0/96/edfe0d2cb019aab199344d19a2c0e2e3514ffeb67a04236933630c8a4090/rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0548b578893a32290c9011e93e340264fdefa0df0f074d793a8c419e707fe346",
                "md5": "8809fcb74d5e72f1da0ae5b6f9b5ad37",
                "sha256": "51584acc5916212e1bf45edd17f3a6b05fe0cbb40482d25e619f824dccb679de"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8809fcb74d5e72f1da0ae5b6f9b5ad37",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1123145,
            "upload_time": "2024-05-06T13:27:14",
            "upload_time_iso_8601": "2024-05-06T13:27:14.901872Z",
            "url": "https://files.pythonhosted.org/packages/05/48/b578893a32290c9011e93e340264fdefa0df0f074d793a8c419e707fe346/rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a671f4e8ac7a833ff6f70e18f6d2496b1a1d3a08272c777624359d2aa785de45",
                "md5": "2636738ff8274345ccd28288109c58c9",
                "sha256": "942695a206a58d2575033ff1e42b12b2aece98d6003c6bc739fbf33d1773b12f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2636738ff8274345ccd28288109c58c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1144650,
            "upload_time": "2024-05-06T13:27:17",
            "upload_time_iso_8601": "2024-05-06T13:27:17.246341Z",
            "url": "https://files.pythonhosted.org/packages/a6/71/f4e8ac7a833ff6f70e18f6d2496b1a1d3a08272c777624359d2aa785de45/rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb6190bb60a78c7c5da7155fed66b6cc875b9b402108565a00057f45391f3dcc",
                "md5": "ba9f20a2f4e0b9f528820f50d4c295a8",
                "sha256": "b906b5f58892813e5ba5c6056d6a5ad08f358ba49f046d910ad992196ea61397"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ba9f20a2f4e0b9f528820f50d4c295a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1306828,
            "upload_time": "2024-05-06T13:27:20",
            "upload_time_iso_8601": "2024-05-06T13:27:20.405912Z",
            "url": "https://files.pythonhosted.org/packages/cb/61/90bb60a78c7c5da7155fed66b6cc875b9b402108565a00057f45391f3dcc/rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79f4e91e3d9c462387c08b833687c7095967461b785ac52e95eaa4d928a459d8",
                "md5": "5cf8d96bf719b62a063db3c146af3d15",
                "sha256": "f6f8e3fecca256fefc91bb6765a693d96692459d7d4c644660a9fff32e517843"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5cf8d96bf719b62a063db3c146af3d15",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1116549,
            "upload_time": "2024-05-06T13:27:23",
            "upload_time_iso_8601": "2024-05-06T13:27:23.307984Z",
            "url": "https://files.pythonhosted.org/packages/79/f4/e91e3d9c462387c08b833687c7095967461b785ac52e95eaa4d928a459d8/rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47c2c711866156543ada46d5977383235d4c7821bb27db108014f4895d18fc9c",
                "md5": "9197e9431d8614b9381d81aeb705978b",
                "sha256": "7732770412bab81c5a9f6d20aeb60ae943a9b36dcd990d876a773526468e7163"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9197e9431d8614b9381d81aeb705978b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1138719,
            "upload_time": "2024-05-06T13:27:25",
            "upload_time_iso_8601": "2024-05-06T13:27:25.790948Z",
            "url": "https://files.pythonhosted.org/packages/47/c2/c711866156543ada46d5977383235d4c7821bb27db108014f4895d18fc9c/rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a960cc3d345d125998ecbccb9ab394193243c66903d53b02beade693810563fa",
                "md5": "26ae5c4165740f4563b689deb07aff46",
                "sha256": "bd1105b50ede37461c1d51b9698c4f4be6e13e69a908ab7751e3807985fc0346"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "26ae5c4165740f4563b689deb07aff46",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1275986,
            "upload_time": "2024-05-06T13:27:29",
            "upload_time_iso_8601": "2024-05-06T13:27:29.278437Z",
            "url": "https://files.pythonhosted.org/packages/a9/60/cc3d345d125998ecbccb9ab394193243c66903d53b02beade693810563fa/rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9200426001ad8c36f1a9a76cc414489f3eab6750f34cf1fee5ec054dba8af07f",
                "md5": "6e7e57b883dca97de2226b5a9f9df64e",
                "sha256": "618916f5535784960f3ecf8111581f4ad31d347c3de66d02e728de460a46303c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6e7e57b883dca97de2226b5a9f9df64e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1306612,
            "upload_time": "2024-05-06T13:27:31",
            "upload_time_iso_8601": "2024-05-06T13:27:31.614007Z",
            "url": "https://files.pythonhosted.org/packages/92/00/426001ad8c36f1a9a76cc414489f3eab6750f34cf1fee5ec054dba8af07f/rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07e989e1f70ee6e32fd2c7f0829d9264b28683bcb4ddb54bcfff0fa4506bf629",
                "md5": "539ed4ab4ef1890c281ed4ce941fa61b",
                "sha256": "17c6d2155e2423f7e79e3bb18151c686d40db42d8645e7977442170c360194d4"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "539ed4ab4ef1890c281ed4ce941fa61b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1281640,
            "upload_time": "2024-05-06T13:27:33",
            "upload_time_iso_8601": "2024-05-06T13:27:33.916101Z",
            "url": "https://files.pythonhosted.org/packages/07/e9/89e1f70ee6e32fd2c7f0829d9264b28683bcb4ddb54bcfff0fa4506bf629/rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "629aa0dbf17f197d7d754ad694952691ca8f386c5f8b56c76c68c44848eb65eb",
                "md5": "da6824576c35478fa1c0713a2b5f65ab",
                "sha256": "6c4c4c3f878df21faf5fac86eda32671c27889e13570645a9eea0a1abdd50922"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da6824576c35478fa1c0713a2b5f65ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 326366,
            "upload_time": "2024-05-06T13:27:36",
            "upload_time_iso_8601": "2024-05-06T13:27:36.662148Z",
            "url": "https://files.pythonhosted.org/packages/62/9a/a0dbf17f197d7d754ad694952691ca8f386c5f8b56c76c68c44848eb65eb/rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0c35ce5bfcd2f2c0306b5ed68a5b237e51d62f8285378a392edfc0ee003afc3",
                "md5": "861349d18f88ac17552315506ca95d0e",
                "sha256": "fab6ce90574645a0d6c58890e9bcaac8d94dff54fb51c69e5522a7358b80ab64"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "861349d18f88ac17552315506ca95d0e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 320689,
            "upload_time": "2024-05-06T13:27:38",
            "upload_time_iso_8601": "2024-05-06T13:27:38.754098Z",
            "url": "https://files.pythonhosted.org/packages/c0/c3/5ce5bfcd2f2c0306b5ed68a5b237e51d62f8285378a392edfc0ee003afc3/rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "109e57141c5fadc242f5766e92d3b068cc1a7823a41f07c8da2b3fd112c3da4b",
                "md5": "a4de1e78ce76cf2f43d1011bf6251b37",
                "sha256": "531796fb842b53f2695e94dc338929e9f9dbf473b64710c28af5a160b2a8927d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a4de1e78ce76cf2f43d1011bf6251b37",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1113695,
            "upload_time": "2024-05-06T13:27:40",
            "upload_time_iso_8601": "2024-05-06T13:27:40.733038Z",
            "url": "https://files.pythonhosted.org/packages/10/9e/57141c5fadc242f5766e92d3b068cc1a7823a41f07c8da2b3fd112c3da4b/rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e5de3ac575c5d46ecb5defe5fd64ccf44fb3969bb916a87905e7eee2d34e215",
                "md5": "b93a69b2c598a125149aa46c46f7b39c",
                "sha256": "740884bc62a5e2bbb31e584f5d23b32320fd75d79f916f15a788d527a5e83644"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b93a69b2c598a125149aa46c46f7b39c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1123042,
            "upload_time": "2024-05-06T13:27:43",
            "upload_time_iso_8601": "2024-05-06T13:27:43.531560Z",
            "url": "https://files.pythonhosted.org/packages/3e/5d/e3ac575c5d46ecb5defe5fd64ccf44fb3969bb916a87905e7eee2d34e215/rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1dd3beaa8ee9254e8ac03fb1237d614ec7c6976766013ab9803831e93182967",
                "md5": "62b59381bad75389c594a24a811ca12e",
                "sha256": "998125738de0158f088aef3cb264a34251908dd2e5d9966774fdab7402edfab7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "62b59381bad75389c594a24a811ca12e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1144653,
            "upload_time": "2024-05-06T13:27:45",
            "upload_time_iso_8601": "2024-05-06T13:27:45.762562Z",
            "url": "https://files.pythonhosted.org/packages/e1/dd/3beaa8ee9254e8ac03fb1237d614ec7c6976766013ab9803831e93182967/rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75eab1fa07df655cc906ce90a575c4294a59e5b3441e713b4b2bcbf4600a02cc",
                "md5": "1ad09ef5e3805e27b1804ef01edc245c",
                "sha256": "e2be6e9dd4111d5b31ba3b74d17da54a8319d8168890fbaea4b9e5c3de630ae5"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1ad09ef5e3805e27b1804ef01edc245c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1307316,
            "upload_time": "2024-05-06T13:27:49",
            "upload_time_iso_8601": "2024-05-06T13:27:49.089995Z",
            "url": "https://files.pythonhosted.org/packages/75/ea/b1fa07df655cc906ce90a575c4294a59e5b3441e713b4b2bcbf4600a02cc/rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c92db09e882bb7aba2b46db986a1969e4baed131fb6463b1e74993582731559f",
                "md5": "abfa89ff757167e8c98b28be3999a901",
                "sha256": "d0cee71bc618cd93716f3c1bf56653740d2d13ddbd47673efa8bf41435a60daa"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abfa89ff757167e8c98b28be3999a901",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1116655,
            "upload_time": "2024-05-06T13:27:51",
            "upload_time_iso_8601": "2024-05-06T13:27:51.459170Z",
            "url": "https://files.pythonhosted.org/packages/c9/2d/b09e882bb7aba2b46db986a1969e4baed131fb6463b1e74993582731559f/rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b947cff0e0c4e0e25650ba45f6c6741dcf9d6f7e3ff90da51bc8a3f41deb8f9",
                "md5": "7c9958e28e68a266911a930e5fb5a80e",
                "sha256": "2c3caec4ec5cd1d18e5dd6ae5194d24ed12785212a90b37f5f7f06b8bedd7139"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7c9958e28e68a266911a930e5fb5a80e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1138731,
            "upload_time": "2024-05-06T13:27:53",
            "upload_time_iso_8601": "2024-05-06T13:27:53.717472Z",
            "url": "https://files.pythonhosted.org/packages/1b/94/7cff0e0c4e0e25650ba45f6c6741dcf9d6f7e3ff90da51bc8a3f41deb8f9/rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0a4b212a9e6944398b9e3630e908df80ab576aeda65c449e6489445fb0fb781",
                "md5": "17109ffa6c3feb59653301901fab888b",
                "sha256": "27bba383e8c5231cd559affe169ca0b96ec78d39909ffd817f28b166d7ddd4d8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "17109ffa6c3feb59653301901fab888b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1275917,
            "upload_time": "2024-05-06T13:27:56",
            "upload_time_iso_8601": "2024-05-06T13:27:56.028289Z",
            "url": "https://files.pythonhosted.org/packages/c0/a4/b212a9e6944398b9e3630e908df80ab576aeda65c449e6489445fb0fb781/rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1a932827105924c7d0982b2d3d41e36e03e48dedc5c5b835a9f6c1d363d3011",
                "md5": "c1caceca7887991a5e44c609ebc5d1a5",
                "sha256": "a888e8bdb45916234b99da2d859566f1e8a1d2275a801bb8e4a9644e3c7e7909"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c1caceca7887991a5e44c609ebc5d1a5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1304033,
            "upload_time": "2024-05-06T13:27:59",
            "upload_time_iso_8601": "2024-05-06T13:27:59.210288Z",
            "url": "https://files.pythonhosted.org/packages/e1/a9/32827105924c7d0982b2d3d41e36e03e48dedc5c5b835a9f6c1d363d3011/rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7372fb6028fb5a31912d1f407a161b79a833ff2d9870c8f65553b4c1afc81cb",
                "md5": "1de8f43a0577c93371c033905c24e5ab",
                "sha256": "6031b25fb1b06327b43d841f33842b383beba399884f8228a6bb3df3088485ff"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1de8f43a0577c93371c033905c24e5ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1281051,
            "upload_time": "2024-05-06T13:28:03",
            "upload_time_iso_8601": "2024-05-06T13:28:03.111283Z",
            "url": "https://files.pythonhosted.org/packages/a7/37/2fb6028fb5a31912d1f407a161b79a833ff2d9870c8f65553b4c1afc81cb/rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6d8d801361ec7c726f44016b57624a2193d09f25ab06fc25553ed58fbb4fee2",
                "md5": "654b8b33263fb5f9a57cfefceace21b3",
                "sha256": "48c2faaa8adfacefcbfdb5f2e2e7bdad081e5ace8d182e5f4ade971f128e6bb3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "654b8b33263fb5f9a57cfefceace21b3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 326635,
            "upload_time": "2024-05-06T13:28:06",
            "upload_time_iso_8601": "2024-05-06T13:28:06.475469Z",
            "url": "https://files.pythonhosted.org/packages/c6/d8/d801361ec7c726f44016b57624a2193d09f25ab06fc25553ed58fbb4fee2/rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "114b7897191652162ae0082258e04edd672bdf7258652c81192bfc360c7c74e3",
                "md5": "7428b915e042fbb9dd7577689ffa47cb",
                "sha256": "d85164315bd68c0806768dc6bb0429c6f95c354f87485ee3593c4f6b14def2bd"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7428b915e042fbb9dd7577689ffa47cb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 320934,
            "upload_time": "2024-05-06T13:28:08",
            "upload_time_iso_8601": "2024-05-06T13:28:08.887136Z",
            "url": "https://files.pythonhosted.org/packages/11/4b/7897191652162ae0082258e04edd672bdf7258652c81192bfc360c7c74e3/rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2fd804b736aede0317b08c4cc08a8d32b6ff9487e0e00758c02b93d3caa1a7f4",
                "md5": "bab77c4a388e139994d80cfc137db485",
                "sha256": "6afd80f6c79893cfc0574956f78a0add8c76e3696f2d6a15bca2c66c415cf2d4"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bab77c4a388e139994d80cfc137db485",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1113997,
            "upload_time": "2024-05-06T13:28:11",
            "upload_time_iso_8601": "2024-05-06T13:28:11.391785Z",
            "url": "https://files.pythonhosted.org/packages/2f/d8/04b736aede0317b08c4cc08a8d32b6ff9487e0e00758c02b93d3caa1a7f4/rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad2a061a5755e11f41e69e80dfa89bfcf6692305aa8d404bc4122aa432c8e134",
                "md5": "a8790e2d8e5b03be5cdd476b272e6aa0",
                "sha256": "fa242ac1ff583e4ec7771141606aafc92b361cd90a05c30d93e343a0c2d82a89"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a8790e2d8e5b03be5cdd476b272e6aa0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1123050,
            "upload_time": "2024-05-06T13:28:13",
            "upload_time_iso_8601": "2024-05-06T13:28:13.861075Z",
            "url": "https://files.pythonhosted.org/packages/ad/2a/061a5755e11f41e69e80dfa89bfcf6692305aa8d404bc4122aa432c8e134/rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30ad665552fe1f461c0fff496859c98d9404cea3da64bf7bfcbabe1f6c7659a5",
                "md5": "f9a081d37a30444a82159d2a3bb76d18",
                "sha256": "d21be4770ff4e08698e1e8e0bce06edb6ea0626e7c8f560bc08222880aca6a6f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f9a081d37a30444a82159d2a3bb76d18",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1144496,
            "upload_time": "2024-05-06T13:28:16",
            "upload_time_iso_8601": "2024-05-06T13:28:16.081516Z",
            "url": "https://files.pythonhosted.org/packages/30/ad/665552fe1f461c0fff496859c98d9404cea3da64bf7bfcbabe1f6c7659a5/rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71d303f88ed04220c5228eee01568b7dc8da23fd0727e5a24a7fba926627e466",
                "md5": "80dff2af6872def267393ef2e21c82d6",
                "sha256": "5c45a639e93a0c5d4b788b2613bd637468edd62f8f95ebc6fcc303d58ab3f0a8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "80dff2af6872def267393ef2e21c82d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1307686,
            "upload_time": "2024-05-06T13:28:19",
            "upload_time_iso_8601": "2024-05-06T13:28:19.359568Z",
            "url": "https://files.pythonhosted.org/packages/71/d3/03f88ed04220c5228eee01568b7dc8da23fd0727e5a24a7fba926627e466/rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b29509863640d095960a76ea753fcb551a1bcf1e5159162fb855695261f7110e",
                "md5": "5750f1fb88879b7043c985d59bc6027c",
                "sha256": "910e71711d1055b2768181efa0a17537b2622afeb0424116619817007f8a2b10"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5750f1fb88879b7043c985d59bc6027c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1116555,
            "upload_time": "2024-05-06T13:28:21",
            "upload_time_iso_8601": "2024-05-06T13:28:21.690630Z",
            "url": "https://files.pythonhosted.org/packages/b2/95/09863640d095960a76ea753fcb551a1bcf1e5159162fb855695261f7110e/rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42b3b0f4a8860d5786fcea4c591432841d9d89b7b1d96d3b22b3db20b47b7c03",
                "md5": "d8797cab74a08c0d8dbf58f3cda4b906",
                "sha256": "b9bb1f182a97880f6078283b3505a707057c42bf55d8fca604f70dedfdc0772a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d8797cab74a08c0d8dbf58f3cda4b906",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1138667,
            "upload_time": "2024-05-06T13:28:24",
            "upload_time_iso_8601": "2024-05-06T13:28:24.559501Z",
            "url": "https://files.pythonhosted.org/packages/42/b3/b0f4a8860d5786fcea4c591432841d9d89b7b1d96d3b22b3db20b47b7c03/rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f49e2b5f3e1123ce9bd055ec4003274ce2955040679958936d98a5c2a360ffa4",
                "md5": "20c0e5dd10fc9613e6140e5c3639a9a2",
                "sha256": "1d54f74f40b1f7aaa595a02ff42ef38ca654b1469bef7d52867da474243cc633"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20c0e5dd10fc9613e6140e5c3639a9a2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1276036,
            "upload_time": "2024-05-06T13:28:27",
            "upload_time_iso_8601": "2024-05-06T13:28:27.052871Z",
            "url": "https://files.pythonhosted.org/packages/f4/9e/2b5f3e1123ce9bd055ec4003274ce2955040679958936d98a5c2a360ffa4/rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c479029d75bfdc65d9c127b513e68ad555ab5d0150ade6b7e405448d56db220c",
                "md5": "eb3a7b1926181a899a1c6e8963cb52fc",
                "sha256": "8d2e182c9ee01135e11e9676e9a62dfad791a7a467738f06726872374a83db49"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "eb3a7b1926181a899a1c6e8963cb52fc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1306343,
            "upload_time": "2024-05-06T13:28:30",
            "upload_time_iso_8601": "2024-05-06T13:28:30.050713Z",
            "url": "https://files.pythonhosted.org/packages/c4/79/029d75bfdc65d9c127b513e68ad555ab5d0150ade6b7e405448d56db220c/rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bda4b22a925754f53ea26abe2edd1e4dbb2f43973e6aeade84aa1d39d61be426",
                "md5": "706d4c4ee56dd0b741350d6f95e9939e",
                "sha256": "636a15acc588f70fda1661234761f9ed9ad79ebed3f2125d44be0862708b666e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "706d4c4ee56dd0b741350d6f95e9939e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1281535,
            "upload_time": "2024-05-06T13:28:32",
            "upload_time_iso_8601": "2024-05-06T13:28:32.501642Z",
            "url": "https://files.pythonhosted.org/packages/bd/a4/b22a925754f53ea26abe2edd1e4dbb2f43973e6aeade84aa1d39d61be426/rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2daae7c404bdee1db7be09860dff423d022ffdce9269ec8e6532cce09ee7beea",
                "md5": "84e96b61634b622243e7b01c96908e0d",
                "sha256": "dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.1.tar.gz",
            "has_sig": false,
            "md5_digest": "84e96b61634b622243e7b01c96908e0d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 25388,
            "upload_time": "2024-05-06T13:28:34",
            "upload_time_iso_8601": "2024-05-06T13:28:34.606352Z",
            "url": "https://files.pythonhosted.org/packages/2d/aa/e7c404bdee1db7be09860dff423d022ffdce9269ec8e6532cce09ee7beea/rpds_py-0.18.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-06 13:28:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sponsors",
    "github_project": "Julian",
    "github_not_found": true,
    "lcname": "rpds-py"
}
        
Elapsed time: 0.26313s