rpds-py


Namerpds-py JSON
Version 0.18.0 PyPI version JSON
download
home_pageNone
SummaryPython bindings to Rust's persistent data structures (rpds)
upload_time2024-02-13 21:56:08
maintainerNone
docs_urlNone
authorJulian Berman
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": "Julian Berman",
    "author_email": "Julian+rpds@GrayVines.com",
    "download_url": "https://files.pythonhosted.org/packages/55/ba/ce7b9f0fc5323f20ffdf85f682e51bee8dc03e9b54503939ebb63d1d0d5e/rpds_py-0.18.0.tar.gz",
    "platform": null,
    "description": "===========\n``rpds.py``\n===========\n\n|PyPI| |Pythons| |CI|\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/rpds-py.svg\n  :alt: PyPI version\n  :target: https://pypi.org/project/rpds-py/\n\n.. |Pythons| image:: https://img.shields.io/pypi/pyversions/rpds-py.svg\n  :alt: Supported Python versions\n  :target: https://pypi.org/project/rpds-py/\n\n.. |CI| image:: https://github.com/crate-py/rpds/workflows/CI/badge.svg\n  :alt: Build status\n  :target: https://github.com/crate-py/rpds/actions?query=workflow%3ACI\n\n.. |ReadTheDocs| image:: https://readthedocs.org/projects/referencing/badge/?version=stable&style=flat\n   :alt: ReadTheDocs status\n   :target: https://referencing.readthedocs.io/en/stable/\n\n\nPython bindings to the `Rust rpds crate <https://docs.rs/rpds/>`_ for persistent data structures.\n\nWhat's here is quite minimal (in transparency, it was written initially to support replacing ``pyrsistent`` in the `referencing library <https://github.com/python-jsonschema/referencing>`_).\nIf you see something missing (which is very likely), a PR is definitely welcome to add it.\n\nInstallation\n------------\n\nThe distribution on PyPI is named ``rpds.py`` (equivalently ``rpds-py``), and thus can be installed via e.g.:\n\n.. code:: sh\n\n    $ pip install rpds-py\n\nNote that if you install ``rpds-py`` from source, you will need a Rust toolchain installed, as it is a build-time dependency.\nAn example of how to do so in a ``Dockerfile`` can be found `here <https://github.com/bowtie-json-schema/bowtie/blob/e77fd93598cb6e7dc1b8b1f53c00e5aa410c201a/implementations/python-jsonschema/Dockerfile#L1-L8>`_.\n\nIf you believe you are on a common platform which should have wheels built (i.e. and not need to compile from source), feel free to file an issue or pull request modifying the GitHub action used here to build wheels via ``maturin``.\n\nUsage\n-----\n\nMethods in general are named similarly to their ``rpds`` counterparts (rather than ``pyrsistent``\\ 's conventions, though probably a full drop-in ``pyrsistent``\\ -compatible wrapper module is a good addition at some point).\n\n.. code:: python\n\n    >>> from rpds import HashTrieMap, HashTrieSet, List\n\n    >>> m = HashTrieMap({\"foo\": \"bar\", \"baz\": \"quux\"})\n    >>> m.insert(\"spam\", 37) == HashTrieMap({\"foo\": \"bar\", \"baz\": \"quux\", \"spam\": 37})\n    True\n    >>> m.remove(\"foo\") == HashTrieMap({\"baz\": \"quux\"})\n    True\n\n    >>> s = HashTrieSet({\"foo\", \"bar\", \"baz\", \"quux\"})\n    >>> s.insert(\"spam\") == HashTrieSet({\"foo\", \"bar\", \"baz\", \"quux\", \"spam\"})\n    True\n    >>> s.remove(\"foo\") == HashTrieSet({\"bar\", \"baz\", \"quux\"})\n    True\n\n    >>> L = List([1, 3, 5])\n    >>> L.push_front(-1) == List([-1, 1, 3, 5])\n    True\n    >>> L.rest == List([3, 5])\n    True\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python bindings to Rust's persistent data structures (rpds)",
    "version": "0.18.0",
    "project_urls": {
        "Documentation": "https://rpds.readthedocs.io/",
        "Funding": "https://github.com/sponsors/Julian",
        "Homepage": "https://github.com/crate-py/rpds",
        "Issues": "https://github.com/crate-py/rpds/issues/",
        "Source": "https://github.com/crate-py/rpds",
        "Tidelift": "https://tidelift.com/subscription/pkg/pypi-rpds-py?utm_source=pypi-rpds-py&utm_medium=referral&utm_campaign=pypi-link"
    },
    "split_keywords": [
        "data structures",
        "rust",
        "persistent"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96b6e1221bd711c54a2fc511a4d081fa1216163951863685b9d6a7c5bac731d7",
                "md5": "cad6d56f789a1aef768aaeddec125bf7",
                "sha256": "5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cad6d56f789a1aef768aaeddec125bf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 335678,
            "upload_time": "2024-02-13T21:51:38",
            "upload_time_iso_8601": "2024-02-13T21:51:38.223096Z",
            "url": "https://files.pythonhosted.org/packages/96/b6/e1221bd711c54a2fc511a4d081fa1216163951863685b9d6a7c5bac731d7/rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12630a2cc48e3814833af5407fca1720e472afbe1e325f34f5e21dc6d5ce3d14",
                "md5": "22f7881ef69f58b42dea902e2a39a2bf",
                "sha256": "c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "22f7881ef69f58b42dea902e2a39a2bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 330655,
            "upload_time": "2024-02-13T21:51:41",
            "upload_time_iso_8601": "2024-02-13T21:51:41.262662Z",
            "url": "https://files.pythonhosted.org/packages/12/63/0a2cc48e3814833af5407fca1720e472afbe1e325f34f5e21dc6d5ce3d14/rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10b6484653421834adb92fcc2fd70bdb683b6fbe29088c4549b84b8d07d6e0f0",
                "md5": "6f24fb8f4c2b86d78aa7467ee894e954",
                "sha256": "01e36a39af54a30f28b73096dd39b6802eddd04c90dbe161c1b8dbe22353189f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6f24fb8f4c2b86d78aa7467ee894e954",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1103896,
            "upload_time": "2024-02-13T21:51:43",
            "upload_time_iso_8601": "2024-02-13T21:51:43.237738Z",
            "url": "https://files.pythonhosted.org/packages/10/b6/484653421834adb92fcc2fd70bdb683b6fbe29088c4549b84b8d07d6e0f0/rpds_py-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0face2340c6198af16ca8e112d74ff59ade2f6969d947f1a2233a558c04deb04",
                "md5": "9de0c39b4143dae29dbb3c29595c8fd8",
                "sha256": "d62dec4976954a23d7f91f2f4530852b0c7608116c257833922a896101336c51"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9de0c39b4143dae29dbb3c29595c8fd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1120771,
            "upload_time": "2024-02-13T21:51:46",
            "upload_time_iso_8601": "2024-02-13T21:51:46.007761Z",
            "url": "https://files.pythonhosted.org/packages/0f/ac/e2340c6198af16ca8e112d74ff59ade2f6969d947f1a2233a558c04deb04/rpds_py-0.18.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6cdeb9183465b010bb98501d642deccbe986e57a2afb2ec0820a9d540ed8a61",
                "md5": "5cef54bae23e4445756cabfbd8a168b6",
                "sha256": "dd18772815d5f008fa03d2b9a681ae38d5ae9f0e599f7dda233c439fcaa00d40"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5cef54bae23e4445756cabfbd8a168b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1219438,
            "upload_time": "2024-02-13T21:51:48",
            "upload_time_iso_8601": "2024-02-13T21:51:48.364065Z",
            "url": "https://files.pythonhosted.org/packages/d6/cd/eb9183465b010bb98501d642deccbe986e57a2afb2ec0820a9d540ed8a61/rpds_py-0.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "439f607b5845e47f89defc34356810e35e1138ae2b90f40a6a47a01fdd7980ad",
                "md5": "753b89084778877ceb5758259cdad0cc",
                "sha256": "923d39efa3cfb7279a0327e337a7958bff00cc447fd07a25cddb0a1cc9a6d2da"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "753b89084778877ceb5758259cdad0cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1298942,
            "upload_time": "2024-02-13T21:51:51",
            "upload_time_iso_8601": "2024-02-13T21:51:51.356905Z",
            "url": "https://files.pythonhosted.org/packages/43/9f/607b5845e47f89defc34356810e35e1138ae2b90f40a6a47a01fdd7980ad/rpds_py-0.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15f5769fc90b3af55e6288ce683539ffd68b93dbdf1a5d86050f063828e5911e",
                "md5": "6ed539984d5cd7bf5e4bead2ad89a0cb",
                "sha256": "39514da80f971362f9267c600b6d459bfbbc549cffc2cef8e47474fddc9b45b1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ed539984d5cd7bf5e4bead2ad89a0cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1109780,
            "upload_time": "2024-02-13T21:51:53",
            "upload_time_iso_8601": "2024-02-13T21:51:53.752925Z",
            "url": "https://files.pythonhosted.org/packages/15/f5/769fc90b3af55e6288ce683539ffd68b93dbdf1a5d86050f063828e5911e/rpds_py-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c5fbe7486ff817536a47a65b637a0e6da384810332448559f5b64b67acae3ff",
                "md5": "034edb72a4e7c1faf6871d5af4b6ff8c",
                "sha256": "a34d557a42aa28bd5c48a023c570219ba2593bcbbb8dc1b98d8cf5d529ab1434"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "034edb72a4e7c1faf6871d5af4b6ff8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1140034,
            "upload_time": "2024-02-13T21:51:56",
            "upload_time_iso_8601": "2024-02-13T21:51:56.761456Z",
            "url": "https://files.pythonhosted.org/packages/2c/5f/be7486ff817536a47a65b637a0e6da384810332448559f5b64b67acae3ff/rpds_py-0.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28a0ac6f12205f69347a86d3d9635b319484d5e16d8b07e52400129fe7d1f67a",
                "md5": "1b257e84af165cf80830b841d108ad9d",
                "sha256": "93df1de2f7f7239dc9cc5a4a12408ee1598725036bd2dedadc14d94525192fc3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b257e84af165cf80830b841d108ad9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1355909,
            "upload_time": "2024-02-13T21:51:58",
            "upload_time_iso_8601": "2024-02-13T21:51:58.997085Z",
            "url": "https://files.pythonhosted.org/packages/28/a0/ac6f12205f69347a86d3d9635b319484d5e16d8b07e52400129fe7d1f67a/rpds_py-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c8351638425e2a448ff83f8aec3eb77a9e7ddafb2e00abcf5cc953656a4385b",
                "md5": "7e61ec2f3f04af746e18401cb301ac65",
                "sha256": "34b18ba135c687f4dac449aa5157d36e2cbb7c03cbea4ddbd88604e076aa836e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7e61ec2f3f04af746e18401cb301ac65",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1380198,
            "upload_time": "2024-02-13T21:52:01",
            "upload_time_iso_8601": "2024-02-13T21:52:01.611077Z",
            "url": "https://files.pythonhosted.org/packages/3c/83/51638425e2a448ff83f8aec3eb77a9e7ddafb2e00abcf5cc953656a4385b/rpds_py-0.18.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d9999de0bee47b6d4f5ab9935b8711a62900ba458247b6f3da1b86fe0534a26",
                "md5": "5b9df7462f5f2d6edcbdd7206483892f",
                "sha256": "c0b5dcf9193625afd8ecc92312d6ed78781c46ecbf39af9ad4681fc9f464af88"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b9df7462f5f2d6edcbdd7206483892f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1361588,
            "upload_time": "2024-02-13T21:52:04",
            "upload_time_iso_8601": "2024-02-13T21:52:04.482590Z",
            "url": "https://files.pythonhosted.org/packages/8d/99/99de0bee47b6d4f5ab9935b8711a62900ba458247b6f3da1b86fe0534a26/rpds_py-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9187c74bd03f917c07e80c47a77c0f33c6bbe3fba3de3d51b82fb5bd1768211f",
                "md5": "255020e233bc3fe8425926a8c586f78b",
                "sha256": "c4325ff0442a12113a6379af66978c3fe562f846763287ef66bdc1d57925d337"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "255020e233bc3fe8425926a8c586f78b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 195074,
            "upload_time": "2024-02-13T21:52:06",
            "upload_time_iso_8601": "2024-02-13T21:52:06.487472Z",
            "url": "https://files.pythonhosted.org/packages/91/87/c74bd03f917c07e80c47a77c0f33c6bbe3fba3de3d51b82fb5bd1768211f/rpds_py-0.18.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f17abab0fc0ec544b89aa3de13fd9267721154a76a783279104c358e58341e2",
                "md5": "3e73ad279453c62a6c41f75f9452d0a5",
                "sha256": "7223a2a5fe0d217e60a60cdae28d6949140dde9c3bcc714063c5b463065e3d66"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3e73ad279453c62a6c41f75f9452d0a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 206733,
            "upload_time": "2024-02-13T21:52:08",
            "upload_time_iso_8601": "2024-02-13T21:52:08.797173Z",
            "url": "https://files.pythonhosted.org/packages/3f/17/abab0fc0ec544b89aa3de13fd9267721154a76a783279104c358e58341e2/rpds_py-0.18.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78603a1cd42addbaac4d160d60a25c62e45d4dcb815eda6a70bbdd0993584328",
                "md5": "d8ab2759150ff4f109fd7aaecbf35820",
                "sha256": "3a96e0c6a41dcdba3a0a581bbf6c44bb863f27c541547fb4b9711fd8cf0ffad4"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8ab2759150ff4f109fd7aaecbf35820",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 335756,
            "upload_time": "2024-02-13T21:52:10",
            "upload_time_iso_8601": "2024-02-13T21:52:10.683492Z",
            "url": "https://files.pythonhosted.org/packages/78/60/3a1cd42addbaac4d160d60a25c62e45d4dcb815eda6a70bbdd0993584328/rpds_py-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c55e0e9d41935934ff839fde917cab1449de02ccf9d84c02521949add9705844",
                "md5": "a52c9895f6b3d08c00eafbf272d3702b",
                "sha256": "30f43887bbae0d49113cbaab729a112251a940e9b274536613097ab8b4899cf6"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a52c9895f6b3d08c00eafbf272d3702b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 330762,
            "upload_time": "2024-02-13T21:52:13",
            "upload_time_iso_8601": "2024-02-13T21:52:13.225372Z",
            "url": "https://files.pythonhosted.org/packages/c5/5e/0e9d41935934ff839fde917cab1449de02ccf9d84c02521949add9705844/rpds_py-0.18.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a3ed2ef968eed02cfd9494d5bac0906bce830c4eb2cd27658303d3884e82e27",
                "md5": "33e6063354782233d6f9420f32d830b2",
                "sha256": "fcb25daa9219b4cf3a0ab24b0eb9a5cc8949ed4dc72acb8fa16b7e1681aa3c58"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "33e6063354782233d6f9420f32d830b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1103985,
            "upload_time": "2024-02-13T21:52:15",
            "upload_time_iso_8601": "2024-02-13T21:52:15.132795Z",
            "url": "https://files.pythonhosted.org/packages/2a/3e/d2ef968eed02cfd9494d5bac0906bce830c4eb2cd27658303d3884e82e27/rpds_py-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a801d0f9e511bd747232ec160a6c29a2f2eaffe60c07f6234c223b428e582bb6",
                "md5": "28c4aacccb37c7eaa1fd790e0198248c",
                "sha256": "d68c93e381010662ab873fea609bf6c0f428b6d0bb00f2c6939782e0818d37bf"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "28c4aacccb37c7eaa1fd790e0198248c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1120803,
            "upload_time": "2024-02-13T21:52:17",
            "upload_time_iso_8601": "2024-02-13T21:52:17.480189Z",
            "url": "https://files.pythonhosted.org/packages/a8/01/d0f9e511bd747232ec160a6c29a2f2eaffe60c07f6234c223b428e582bb6/rpds_py-0.18.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58ce9bcf99f100aa0f34f4b9e583c8436f4a66e82bd4e700bd29bc6a9a5947b4",
                "md5": "bd40ea49941d2940f6aa46b0ea4d8435",
                "sha256": "b34b7aa8b261c1dbf7720b5d6f01f38243e9b9daf7e6b8bc1fd4657000062f2c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bd40ea49941d2940f6aa46b0ea4d8435",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1219501,
            "upload_time": "2024-02-13T21:52:20",
            "upload_time_iso_8601": "2024-02-13T21:52:20.623857Z",
            "url": "https://files.pythonhosted.org/packages/58/ce/9bcf99f100aa0f34f4b9e583c8436f4a66e82bd4e700bd29bc6a9a5947b4/rpds_py-0.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c76fdfcb758809839e5aa28a2d77ed083e4583631c52bd4f4969c4f45c9aff1",
                "md5": "9b082ca03a007f85a2ba7ffbf1f94a1e",
                "sha256": "2e6d75ab12b0bbab7215e5d40f1e5b738aa539598db27ef83b2ec46747df90e1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9b082ca03a007f85a2ba7ffbf1f94a1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1298418,
            "upload_time": "2024-02-13T21:52:23",
            "upload_time_iso_8601": "2024-02-13T21:52:23.230507Z",
            "url": "https://files.pythonhosted.org/packages/7c/76/fdfcb758809839e5aa28a2d77ed083e4583631c52bd4f4969c4f45c9aff1/rpds_py-0.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "816aaa2e389852e48f77b7ce086d60628d855745a520be89c3868b90657b2fd2",
                "md5": "cff1b1ee19ef8a2d2abb44fb09f18469",
                "sha256": "0b8612cd233543a3781bc659c731b9d607de65890085098986dfd573fc2befe5"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cff1b1ee19ef8a2d2abb44fb09f18469",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1109978,
            "upload_time": "2024-02-13T21:52:25",
            "upload_time_iso_8601": "2024-02-13T21:52:25.419892Z",
            "url": "https://files.pythonhosted.org/packages/81/6a/aa2e389852e48f77b7ce086d60628d855745a520be89c3868b90657b2fd2/rpds_py-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1952323c23fcd31539424bba89cf7d2baef21b624e04ba1b3068e52364523426",
                "md5": "099c3432b6c36e7756128bae8abbb71b",
                "sha256": "aec493917dd45e3c69d00a8874e7cbed844efd935595ef78a0f25f14312e33c6"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "099c3432b6c36e7756128bae8abbb71b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1140128,
            "upload_time": "2024-02-13T21:52:27",
            "upload_time_iso_8601": "2024-02-13T21:52:27.812812Z",
            "url": "https://files.pythonhosted.org/packages/19/52/323c23fcd31539424bba89cf7d2baef21b624e04ba1b3068e52364523426/rpds_py-0.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f9c0d39db19b61e78cf9e5e33d811a79352243c515aaa3bc5197eab050d7652",
                "md5": "1c08826130e166c05343be8028df9ca7",
                "sha256": "661d25cbffaf8cc42e971dd570d87cb29a665f49f4abe1f9e76be9a5182c4688"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c08826130e166c05343be8028df9ca7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1356181,
            "upload_time": "2024-02-13T21:52:30",
            "upload_time_iso_8601": "2024-02-13T21:52:30.061723Z",
            "url": "https://files.pythonhosted.org/packages/3f/9c/0d39db19b61e78cf9e5e33d811a79352243c515aaa3bc5197eab050d7652/rpds_py-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5deecdc2351f2858a4985776b94402ea06afee028d4d69f5d6df66e6fecb9c8",
                "md5": "94f1c907ba9cefd00fea148e92acedba",
                "sha256": "1df3659d26f539ac74fb3b0c481cdf9d725386e3552c6fa2974f4d33d78e544b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "94f1c907ba9cefd00fea148e92acedba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1380254,
            "upload_time": "2024-02-13T21:52:33",
            "upload_time_iso_8601": "2024-02-13T21:52:33.033959Z",
            "url": "https://files.pythonhosted.org/packages/d5/de/ecdc2351f2858a4985776b94402ea06afee028d4d69f5d6df66e6fecb9c8/rpds_py-0.18.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34cc57873b4a0f9787bab44e9cf196cfba92781b2354490ebc11a8fd0edd7c86",
                "md5": "da53943b70e8f3d1d7d7287b904d6a14",
                "sha256": "a1ce3ba137ed54f83e56fb983a5859a27d43a40188ba798993812fed73c70836"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da53943b70e8f3d1d7d7287b904d6a14",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1361642,
            "upload_time": "2024-02-13T21:52:35",
            "upload_time_iso_8601": "2024-02-13T21:52:35.482821Z",
            "url": "https://files.pythonhosted.org/packages/34/cc/57873b4a0f9787bab44e9cf196cfba92781b2354490ebc11a8fd0edd7c86/rpds_py-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5dfa9fbc98a7d75f37767952a405025acc0f02dbd708072a0375d62c826f6947",
                "md5": "941ef1eed8aacf074ad213a5fda84fcb",
                "sha256": "69e64831e22a6b377772e7fb337533c365085b31619005802a79242fee620bc1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "941ef1eed8aacf074ad213a5fda84fcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 195062,
            "upload_time": "2024-02-13T21:52:38",
            "upload_time_iso_8601": "2024-02-13T21:52:38.171841Z",
            "url": "https://files.pythonhosted.org/packages/5d/fa/9fbc98a7d75f37767952a405025acc0f02dbd708072a0375d62c826f6947/rpds_py-0.18.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8de68280c51afdb241111dec873dd7d457986adfd9fd5225494eee0c4a3b9a3",
                "md5": "d0ec81e7dca011287874784b941e1e66",
                "sha256": "998e33ad22dc7ec7e030b3df701c43630b5bc0d8fbc2267653577e3fec279afa"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d0ec81e7dca011287874784b941e1e66",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 206744,
            "upload_time": "2024-02-13T21:52:40",
            "upload_time_iso_8601": "2024-02-13T21:52:40.189503Z",
            "url": "https://files.pythonhosted.org/packages/a8/de/68280c51afdb241111dec873dd7d457986adfd9fd5225494eee0c4a3b9a3/rpds_py-0.18.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09b645690f5d3f8c551bb462e063a2f336d72c8884ed26aa19beb53a374d3854",
                "md5": "5d45c9a8dab0ee9b3a2d2330da11cb8e",
                "sha256": "7f2facbd386dd60cbbf1a794181e6aa0bd429bd78bfdf775436020172e2a23f0"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d45c9a8dab0ee9b3a2d2330da11cb8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 338820,
            "upload_time": "2024-02-13T21:52:42",
            "upload_time_iso_8601": "2024-02-13T21:52:42.159910Z",
            "url": "https://files.pythonhosted.org/packages/09/b6/45690f5d3f8c551bb462e063a2f336d72c8884ed26aa19beb53a374d3854/rpds_py-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a589bfc53b266df92f0515e72fd16e4890dc6b56fc3bfc216b3a2a729c866b5",
                "md5": "541e6e2b044075eccbce61dcb07b54bf",
                "sha256": "1d9a5be316c15ffb2b3c405c4ff14448c36b4435be062a7f578ccd8b01f0c4d8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "541e6e2b044075eccbce61dcb07b54bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 332988,
            "upload_time": "2024-02-13T21:52:44",
            "upload_time_iso_8601": "2024-02-13T21:52:44.678602Z",
            "url": "https://files.pythonhosted.org/packages/7a/58/9bfc53b266df92f0515e72fd16e4890dc6b56fc3bfc216b3a2a729c866b5/rpds_py-0.18.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a572fcfd462cc53876ac4acef69dbf4fb941da971440049ca72051da54ea60d",
                "md5": "8b5407e7ab4c0aceea98e9d6169e6cfa",
                "sha256": "cd5bf1af8efe569654bbef5a3e0a56eca45f87cfcffab31dd8dde70da5982475"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8b5407e7ab4c0aceea98e9d6169e6cfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1106717,
            "upload_time": "2024-02-13T21:52:46",
            "upload_time_iso_8601": "2024-02-13T21:52:46.972478Z",
            "url": "https://files.pythonhosted.org/packages/5a/57/2fcfd462cc53876ac4acef69dbf4fb941da971440049ca72051da54ea60d/rpds_py-0.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a37e37298d351e0b0ee6136a0663a0836c7dc22acbf4554835244aa40d9e5d43",
                "md5": "0fce5a6046f2a08620022fefaea476da",
                "sha256": "5417558f6887e9b6b65b4527232553c139b57ec42c64570569b155262ac0754f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0fce5a6046f2a08620022fefaea476da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1120259,
            "upload_time": "2024-02-13T21:52:50",
            "upload_time_iso_8601": "2024-02-13T21:52:50.370850Z",
            "url": "https://files.pythonhosted.org/packages/a3/7e/37298d351e0b0ee6136a0663a0836c7dc22acbf4554835244aa40d9e5d43/rpds_py-0.18.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c926285661286e0c3fe398082de9b3009cd25198f776484269f61d29f60ecbfb",
                "md5": "a547184a9dbd170331e061805fb3fb79",
                "sha256": "56a737287efecafc16f6d067c2ea0117abadcd078d58721f967952db329a3e5c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a547184a9dbd170331e061805fb3fb79",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1219992,
            "upload_time": "2024-02-13T21:52:52",
            "upload_time_iso_8601": "2024-02-13T21:52:52.785758Z",
            "url": "https://files.pythonhosted.org/packages/c9/26/285661286e0c3fe398082de9b3009cd25198f776484269f61d29f60ecbfb/rpds_py-0.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a8bd446775cffcb0c07ea7183cc85e0ffd02bb25c68ce5bb248bf03ee5a2192",
                "md5": "1cb8813ec90e37f7badd82b2275f9fde",
                "sha256": "8f03bccbd8586e9dd37219bce4d4e0d3ab492e6b3b533e973fa08a112cb2ffc9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1cb8813ec90e37f7badd82b2275f9fde",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1276119,
            "upload_time": "2024-02-13T21:52:54",
            "upload_time_iso_8601": "2024-02-13T21:52:54.962577Z",
            "url": "https://files.pythonhosted.org/packages/9a/8b/d446775cffcb0c07ea7183cc85e0ffd02bb25c68ce5bb248bf03ee5a2192/rpds_py-0.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3962211a1ca4b4e259e222169074ec0fa41f0ee18665dfc68988a139dc7e6e8",
                "md5": "e3fab9a21700e2f27cf39517bc17c1b4",
                "sha256": "4457a94da0d5c53dc4b3e4de1158bdab077db23c53232f37a3cb7afdb053a4e3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3fab9a21700e2f27cf39517bc17c1b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1115487,
            "upload_time": "2024-02-13T21:52:57",
            "upload_time_iso_8601": "2024-02-13T21:52:57.657537Z",
            "url": "https://files.pythonhosted.org/packages/c3/96/2211a1ca4b4e259e222169074ec0fa41f0ee18665dfc68988a139dc7e6e8/rpds_py-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "297159074d37725cee2140cb9c3404fbfa70b2dcf037f2dcce3b7a4db3967f18",
                "md5": "7ffb83f9cd20974c40a37aa83330ae9d",
                "sha256": "0ab39c1ba9023914297dd88ec3b3b3c3f33671baeb6acf82ad7ce883f6e8e157"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7ffb83f9cd20974c40a37aa83330ae9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1141402,
            "upload_time": "2024-02-13T21:52:59",
            "upload_time_iso_8601": "2024-02-13T21:52:59.969647Z",
            "url": "https://files.pythonhosted.org/packages/29/71/59074d37725cee2140cb9c3404fbfa70b2dcf037f2dcce3b7a4db3967f18/rpds_py-0.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9d9355890b2273f3cbfb7666dfac80c6ac59ad8f97a7d6d4f24c444bed504ea",
                "md5": "3d02b126628075571a3f23a3399996c8",
                "sha256": "9d54553c1136b50fd12cc17e5b11ad07374c316df307e4cfd6441bea5fb68496"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d02b126628075571a3f23a3399996c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1357339,
            "upload_time": "2024-02-13T21:53:02",
            "upload_time_iso_8601": "2024-02-13T21:53:02.852683Z",
            "url": "https://files.pythonhosted.org/packages/f9/d9/355890b2273f3cbfb7666dfac80c6ac59ad8f97a7d6d4f24c444bed504ea/rpds_py-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de67330d6f74a9ab37cf1597d5f7fb40437346b00dce15dc14c31aeb96762c56",
                "md5": "e9de8e8e76a2d6d6a24293f00f3ec88b",
                "sha256": "0af039631b6de0397ab2ba16eaf2872e9f8fca391b44d3d8cac317860a700a3f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e9de8e8e76a2d6d6a24293f00f3ec88b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1381314,
            "upload_time": "2024-02-13T21:53:05",
            "upload_time_iso_8601": "2024-02-13T21:53:05.995055Z",
            "url": "https://files.pythonhosted.org/packages/de/67/330d6f74a9ab37cf1597d5f7fb40437346b00dce15dc14c31aeb96762c56/rpds_py-0.18.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41786be52bb734db3774c6093848774b4dd4d5866bc32bb208f2d335a6c9861b",
                "md5": "2b26c1a07bbaa026c12ebed01a0ea707",
                "sha256": "84ffab12db93b5f6bad84c712c92060a2d321b35c3c9960b43d08d0f639d60d7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b26c1a07bbaa026c12ebed01a0ea707",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1364328,
            "upload_time": "2024-02-13T21:53:08",
            "upload_time_iso_8601": "2024-02-13T21:53:08.156223Z",
            "url": "https://files.pythonhosted.org/packages/41/78/6be52bb734db3774c6093848774b4dd4d5866bc32bb208f2d335a6c9861b/rpds_py-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55963e9646719bc6a719951f32bb03069caaa873536ad6429b21b3a4059d2008",
                "md5": "b6bf1df4f6169e5528ed22b394803594",
                "sha256": "685537e07897f173abcf67258bee3c05c374fa6fff89d4c7e42fb391b0605e98"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b6bf1df4f6169e5528ed22b394803594",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 195011,
            "upload_time": "2024-02-13T21:53:11",
            "upload_time_iso_8601": "2024-02-13T21:53:11.052050Z",
            "url": "https://files.pythonhosted.org/packages/55/96/3e9646719bc6a719951f32bb03069caaa873536ad6429b21b3a4059d2008/rpds_py-0.18.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "148ce69f5636f4ab6ee0855aef3b16e6c97f8b636e9e04fa5a4bcc75126acb13",
                "md5": "fcb3fca98f8b0b5997c850316a135665",
                "sha256": "e003b002ec72c8d5a3e3da2989c7d6065b47d9eaa70cd8808b5384fbb970f4ec"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fcb3fca98f8b0b5997c850316a135665",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 206344,
            "upload_time": "2024-02-13T21:53:13",
            "upload_time_iso_8601": "2024-02-13T21:53:13.815071Z",
            "url": "https://files.pythonhosted.org/packages/14/8c/e69f5636f4ab6ee0855aef3b16e6c97f8b636e9e04fa5a4bcc75126acb13/rpds_py-0.18.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7176f9d4e3196ffe5b19245efc4ce9cfac591b58689bfb06b2542b5da61f5152",
                "md5": "0d106b8b8560ec452b744124338d5d4b",
                "sha256": "08f9ad53c3f31dfb4baa00da22f1e862900f45908383c062c27628754af2e88e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d106b8b8560ec452b744124338d5d4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 335567,
            "upload_time": "2024-02-13T21:53:16",
            "upload_time_iso_8601": "2024-02-13T21:53:16.375521Z",
            "url": "https://files.pythonhosted.org/packages/71/76/f9d4e3196ffe5b19245efc4ce9cfac591b58689bfb06b2542b5da61f5152/rpds_py-0.18.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76884e453f978608fe1067b000b9ffb387dffec15aa6e61ae2ae0681ff773852",
                "md5": "beb35ebd33a151c760faf73ef78a2b08",
                "sha256": "c0013fe6b46aa496a6749c77e00a3eb07952832ad6166bd481c74bda0dcb6d58"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "beb35ebd33a151c760faf73ef78a2b08",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 330755,
            "upload_time": "2024-02-13T21:53:19",
            "upload_time_iso_8601": "2024-02-13T21:53:19.244488Z",
            "url": "https://files.pythonhosted.org/packages/76/88/4e453f978608fe1067b000b9ffb387dffec15aa6e61ae2ae0681ff773852/rpds_py-0.18.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fe8cf6035ea1fdedd5bc117ff81c6c3915b7936447387ee761ff903db700f07",
                "md5": "becfaab16ebc8b18bbf40d1d2aa5846b",
                "sha256": "e32a92116d4f2a80b629778280103d2a510a5b3f6314ceccd6e38006b5e92dcb"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "becfaab16ebc8b18bbf40d1d2aa5846b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1104050,
            "upload_time": "2024-02-13T21:53:21",
            "upload_time_iso_8601": "2024-02-13T21:53:21.978057Z",
            "url": "https://files.pythonhosted.org/packages/4f/e8/cf6035ea1fdedd5bc117ff81c6c3915b7936447387ee761ff903db700f07/rpds_py-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be0f80ce308b59969369690ee1933a263ff7537fd1229985ad491631dc73338b",
                "md5": "f0ffce48d0e7881edf1c33c59cec773e",
                "sha256": "e541ec6f2ec456934fd279a3120f856cd0aedd209fc3852eca563f81738f6861"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f0ffce48d0e7881edf1c33c59cec773e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1119536,
            "upload_time": "2024-02-13T21:53:24",
            "upload_time_iso_8601": "2024-02-13T21:53:24.154764Z",
            "url": "https://files.pythonhosted.org/packages/be/0f/80ce308b59969369690ee1933a263ff7537fd1229985ad491631dc73338b/rpds_py-0.18.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c1199b604c2b5acf6b3b13d214fb4f26c5529b7c0c0839f584d8ef19572774d",
                "md5": "edab7793bd99b7346e7b7ef0e92fcd8e",
                "sha256": "bed88b9a458e354014d662d47e7a5baafd7ff81c780fd91584a10d6ec842cb73"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "edab7793bd99b7346e7b7ef0e92fcd8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1218539,
            "upload_time": "2024-02-13T21:53:26",
            "upload_time_iso_8601": "2024-02-13T21:53:26.586036Z",
            "url": "https://files.pythonhosted.org/packages/5c/11/99b604c2b5acf6b3b13d214fb4f26c5529b7c0c0839f584d8ef19572774d/rpds_py-0.18.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0fd83d204c45608795ed0c9d1531c6e21626d4b54d11dd7b1537b1a1301b0a7",
                "md5": "c5f6dfc6eb641748fe42d51d6d162b27",
                "sha256": "2644e47de560eb7bd55c20fc59f6daa04682655c58d08185a9b95c1970fa1e07"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c5f6dfc6eb641748fe42d51d6d162b27",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1297788,
            "upload_time": "2024-02-13T21:53:29",
            "upload_time_iso_8601": "2024-02-13T21:53:29.016659Z",
            "url": "https://files.pythonhosted.org/packages/d0/fd/83d204c45608795ed0c9d1531c6e21626d4b54d11dd7b1537b1a1301b0a7/rpds_py-0.18.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f74846fbb24679e5b4703f4754a01b588606f8ffb0917d1b742f701b4e7c799e",
                "md5": "ed7e331cb1b583bb57802748dcac3473",
                "sha256": "8e8916ae4c720529e18afa0b879473049e95949bf97042e938530e072fde061d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed7e331cb1b583bb57802748dcac3473",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1109673,
            "upload_time": "2024-02-13T21:53:31",
            "upload_time_iso_8601": "2024-02-13T21:53:31.430071Z",
            "url": "https://files.pythonhosted.org/packages/f7/48/46fbb24679e5b4703f4754a01b588606f8ffb0917d1b742f701b4e7c799e/rpds_py-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "151760eb41e918d44a7caa12ff660e552cf8ca7f34ad8af286d34a3a0d41c230",
                "md5": "99ce8572f71a3fe368ce3201be9aab01",
                "sha256": "465a3eb5659338cf2a9243e50ad9b2296fa15061736d6e26240e713522b6235c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "99ce8572f71a3fe368ce3201be9aab01",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1140379,
            "upload_time": "2024-02-13T21:53:33",
            "upload_time_iso_8601": "2024-02-13T21:53:33.657325Z",
            "url": "https://files.pythonhosted.org/packages/15/17/60eb41e918d44a7caa12ff660e552cf8ca7f34ad8af286d34a3a0d41c230/rpds_py-0.18.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8ce40a358cb8038031002d0ecb49d7f37185eccbfb412414f256203b20a3d09",
                "md5": "207f24fa0cdd7493f010278bd48d97e1",
                "sha256": "ea7d4a99f3b38c37eac212dbd6ec42b7a5ec51e2c74b5d3223e43c811609e65f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "207f24fa0cdd7493f010278bd48d97e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1355257,
            "upload_time": "2024-02-13T21:53:36",
            "upload_time_iso_8601": "2024-02-13T21:53:36.065843Z",
            "url": "https://files.pythonhosted.org/packages/e8/ce/40a358cb8038031002d0ecb49d7f37185eccbfb412414f256203b20a3d09/rpds_py-0.18.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9260f499afc2d716b0d18f03e8162d7446999a8f9b6c55e100a5fa106b7a0d8f",
                "md5": "d034ee9da5be2e1097d02258cc12f43a",
                "sha256": "67071a6171e92b6da534b8ae326505f7c18022c6f19072a81dcf40db2638767c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d034ee9da5be2e1097d02258cc12f43a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1379977,
            "upload_time": "2024-02-13T21:53:39",
            "upload_time_iso_8601": "2024-02-13T21:53:39.129008Z",
            "url": "https://files.pythonhosted.org/packages/92/60/f499afc2d716b0d18f03e8162d7446999a8f9b6c55e100a5fa106b7a0d8f/rpds_py-0.18.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbc7520c3de47456c2fb67ae0b56a0d8a21a8a11bdb54d9a5ea29cc3e3763ee3",
                "md5": "674ff599d2f51f367863ed2facf97cc1",
                "sha256": "41ef53e7c58aa4ef281da975f62c258950f54b76ec8e45941e93a3d1d8580594"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "674ff599d2f51f367863ed2facf97cc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1361119,
            "upload_time": "2024-02-13T21:53:41",
            "upload_time_iso_8601": "2024-02-13T21:53:41.551183Z",
            "url": "https://files.pythonhosted.org/packages/bb/c7/520c3de47456c2fb67ae0b56a0d8a21a8a11bdb54d9a5ea29cc3e3763ee3/rpds_py-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02768284152896cf069343c448050af67bce9aea4d3834d328bcb35995745c4c",
                "md5": "f4302a12290f024bd332dce04a03c3b6",
                "sha256": "fdea4952db2793c4ad0bdccd27c1d8fdd1423a92f04598bc39425bcc2b8ee46e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f4302a12290f024bd332dce04a03c3b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 195821,
            "upload_time": "2024-02-13T21:53:43",
            "upload_time_iso_8601": "2024-02-13T21:53:43.700407Z",
            "url": "https://files.pythonhosted.org/packages/02/76/8284152896cf069343c448050af67bce9aea4d3834d328bcb35995745c4c/rpds_py-0.18.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14c72830cfd05e80e2a8c9f9e521830d15def8a4747aca3299eb96430e71851e",
                "md5": "c7856a78e260a5d48a90393debd869e5",
                "sha256": "7cd863afe7336c62ec78d7d1349a2f34c007a3cc6c2369d667c65aeec412a5b1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c7856a78e260a5d48a90393debd869e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 206748,
            "upload_time": "2024-02-13T21:53:46",
            "upload_time_iso_8601": "2024-02-13T21:53:46.231069Z",
            "url": "https://files.pythonhosted.org/packages/14/c7/2830cfd05e80e2a8c9f9e521830d15def8a4747aca3299eb96430e71851e/rpds_py-0.18.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "587a56cff95e24beb3cf1cb06fe41f60403694bf068f0dd3e8d99d2b47624f6c",
                "md5": "6dc99f971c3e0e87a39ff40510a5112e",
                "sha256": "5307def11a35f5ae4581a0b658b0af8178c65c530e94893345bebf41cc139d33"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6dc99f971c3e0e87a39ff40510a5112e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 336109,
            "upload_time": "2024-02-13T21:53:48",
            "upload_time_iso_8601": "2024-02-13T21:53:48.362378Z",
            "url": "https://files.pythonhosted.org/packages/58/7a/56cff95e24beb3cf1cb06fe41f60403694bf068f0dd3e8d99d2b47624f6c/rpds_py-0.18.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc824cc5a780f298a92ec5bfb1d7af33d16f07fe689b31a4dfc49f5ede267e88",
                "md5": "4a98ee2477e573bcd86c4d8d03c1fd9d",
                "sha256": "77f195baa60a54ef9d2de16fbbfd3ff8b04edc0c0140a761b56c267ac11aa467"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a98ee2477e573bcd86c4d8d03c1fd9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 330993,
            "upload_time": "2024-02-13T21:53:50",
            "upload_time_iso_8601": "2024-02-13T21:53:50.635953Z",
            "url": "https://files.pythonhosted.org/packages/fc/82/4cc5a780f298a92ec5bfb1d7af33d16f07fe689b31a4dfc49f5ede267e88/rpds_py-0.18.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e83f9b8c68d284b1a89186e73db5973c015f6f2ccdcd397e84ac472dc9ffe5d7",
                "md5": "19dd2d50a4564dd50ca1fbbbba82035f",
                "sha256": "39f5441553f1c2aed4de4377178ad8ff8f9d733723d6c66d983d75341de265ab"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "19dd2d50a4564dd50ca1fbbbba82035f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1103983,
            "upload_time": "2024-02-13T21:53:53",
            "upload_time_iso_8601": "2024-02-13T21:53:53.128676Z",
            "url": "https://files.pythonhosted.org/packages/e8/3f/9b8c68d284b1a89186e73db5973c015f6f2ccdcd397e84ac472dc9ffe5d7/rpds_py-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0ef428404a55c076f71a07b7b9a28301b4e3560d6482f28c5165416b71b04cf",
                "md5": "3d45434b756087ea06d3c091c09c9572",
                "sha256": "9a00312dea9310d4cb7dbd7787e722d2e86a95c2db92fbd7d0155f97127bcb40"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3d45434b756087ea06d3c091c09c9572",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1119923,
            "upload_time": "2024-02-13T21:53:55",
            "upload_time_iso_8601": "2024-02-13T21:53:55.582987Z",
            "url": "https://files.pythonhosted.org/packages/e0/ef/428404a55c076f71a07b7b9a28301b4e3560d6482f28c5165416b71b04cf/rpds_py-0.18.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "727212a8762cfae2add76779fe920dcaf39c6519e5294906213ebbd9ffb2c566",
                "md5": "ddf6420905046b9faea112653207694d",
                "sha256": "8f2fc11e8fe034ee3c34d316d0ad8808f45bc3b9ce5857ff29d513f3ff2923a1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ddf6420905046b9faea112653207694d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1218677,
            "upload_time": "2024-02-13T21:53:57",
            "upload_time_iso_8601": "2024-02-13T21:53:57.891226Z",
            "url": "https://files.pythonhosted.org/packages/72/72/12a8762cfae2add76779fe920dcaf39c6519e5294906213ebbd9ffb2c566/rpds_py-0.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "396504c5b72ab2042464cd158b7774f8e9cacf955ebc7037c7354a9de21d99fa",
                "md5": "23c720bcbfff71e6ebcf191462592942",
                "sha256": "586f8204935b9ec884500498ccc91aa869fc652c40c093bd9e1471fbcc25c022"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "23c720bcbfff71e6ebcf191462592942",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1298002,
            "upload_time": "2024-02-13T21:54:00",
            "upload_time_iso_8601": "2024-02-13T21:54:00.849682Z",
            "url": "https://files.pythonhosted.org/packages/39/65/04c5b72ab2042464cd158b7774f8e9cacf955ebc7037c7354a9de21d99fa/rpds_py-0.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdea92231b62681961812e9fbd8ef9be7137856784406bf6a384976bb7b46472",
                "md5": "47482b9d21997e01365774cc50b9b661",
                "sha256": "ddc2f4dfd396c7bfa18e6ce371cba60e4cf9d2e5cdb71376aa2da264605b60b9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47482b9d21997e01365774cc50b9b661",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1110179,
            "upload_time": "2024-02-13T21:54:03",
            "upload_time_iso_8601": "2024-02-13T21:54:03.413758Z",
            "url": "https://files.pythonhosted.org/packages/fd/ea/92231b62681961812e9fbd8ef9be7137856784406bf6a384976bb7b46472/rpds_py-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97cc7090e0aae550efdf5f0f13dce6e2eac81c3714f494e49bcdb433aed59df5",
                "md5": "7a1255f096947d2b1e66021364ca83d4",
                "sha256": "5ddcba87675b6d509139d1b521e0c8250e967e63b5909a7e8f8944d0f90ff36f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7a1255f096947d2b1e66021364ca83d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1140282,
            "upload_time": "2024-02-13T21:54:06",
            "upload_time_iso_8601": "2024-02-13T21:54:06.465397Z",
            "url": "https://files.pythonhosted.org/packages/97/cc/7090e0aae550efdf5f0f13dce6e2eac81c3714f494e49bcdb433aed59df5/rpds_py-0.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d206d6b068dccf4e780f79f507895ee7bc1a4a032b6c43e091bfd8046909a887",
                "md5": "5ee705668739b0d02ddbe7534e51c317",
                "sha256": "7bd339195d84439cbe5771546fe8a4e8a7a045417d8f9de9a368c434e42a721e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5ee705668739b0d02ddbe7534e51c317",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1356177,
            "upload_time": "2024-02-13T21:54:08",
            "upload_time_iso_8601": "2024-02-13T21:54:08.896887Z",
            "url": "https://files.pythonhosted.org/packages/d2/06/d6b068dccf4e780f79f507895ee7bc1a4a032b6c43e091bfd8046909a887/rpds_py-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5b1c2705fddb2e9d6cb8f741bf000aa6747db727aa608a8552dc35682e7d7d8",
                "md5": "2b8ca508706fc6972cc2a7bcb1d7bc61",
                "sha256": "d7c36232a90d4755b720fbd76739d8891732b18cf240a9c645d75f00639a9024"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2b8ca508706fc6972cc2a7bcb1d7bc61",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1380192,
            "upload_time": "2024-02-13T21:54:11",
            "upload_time_iso_8601": "2024-02-13T21:54:11.882214Z",
            "url": "https://files.pythonhosted.org/packages/b5/b1/c2705fddb2e9d6cb8f741bf000aa6747db727aa608a8552dc35682e7d7d8/rpds_py-0.18.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4544a9d3eacd704e4d4f75c18d84c146f7d4b67204ed4dafea16e65fe4aa5111",
                "md5": "fe3c758a962a26d314a0326cacdd986c",
                "sha256": "6b0817e34942b2ca527b0e9298373e7cc75f429e8da2055607f4931fded23e20"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe3c758a962a26d314a0326cacdd986c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1361829,
            "upload_time": "2024-02-13T21:54:14",
            "upload_time_iso_8601": "2024-02-13T21:54:14.777060Z",
            "url": "https://files.pythonhosted.org/packages/45/44/a9d3eacd704e4d4f75c18d84c146f7d4b67204ed4dafea16e65fe4aa5111/rpds_py-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f82784e2e6bcb1f6e0cc012a7e90fa292ee9e0c31502f68d791212ed172d2ea",
                "md5": "a48dfd12e7b4d13e780aee27df178b89",
                "sha256": "99f70b740dc04d09e6b2699b675874367885217a2e9f782bdf5395632ac663b7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a48dfd12e7b4d13e780aee27df178b89",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 195054,
            "upload_time": "2024-02-13T21:54:17",
            "upload_time_iso_8601": "2024-02-13T21:54:17.070873Z",
            "url": "https://files.pythonhosted.org/packages/9f/82/784e2e6bcb1f6e0cc012a7e90fa292ee9e0c31502f68d791212ed172d2ea/rpds_py-0.18.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a062c896cec9434e09fb933f3cadd5c699e9cea49ab8934d694b6634650748db",
                "md5": "b5fd8bba3b4f4dca349a189d8ee0c3bd",
                "sha256": "6ef687afab047554a2d366e112dd187b62d261d49eb79b77e386f94644363294"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5fd8bba3b4f4dca349a189d8ee0c3bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 207047,
            "upload_time": "2024-02-13T21:54:19",
            "upload_time_iso_8601": "2024-02-13T21:54:19.186514Z",
            "url": "https://files.pythonhosted.org/packages/a0/62/c896cec9434e09fb933f3cadd5c699e9cea49ab8934d694b6634650748db/rpds_py-0.18.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "271b4df26f757a6e5e1679d57b06738a95d51ec4b47ddda507675e81806ef216",
                "md5": "1d93c824a537f77de98cce7f5de18124",
                "sha256": "ad36cfb355e24f1bd37cac88c112cd7730873f20fb0bdaf8ba59eedf8216079f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d93c824a537f77de98cce7f5de18124",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 335117,
            "upload_time": "2024-02-13T21:54:21",
            "upload_time_iso_8601": "2024-02-13T21:54:21.341636Z",
            "url": "https://files.pythonhosted.org/packages/27/1b/4df26f757a6e5e1679d57b06738a95d51ec4b47ddda507675e81806ef216/rpds_py-0.18.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a6bd87a6c69a9a7101527c04527b555da364148021601c707512f15007d17a8",
                "md5": "cc2d7ff463764fc7e62e6492f5dddf8c",
                "sha256": "36b3ee798c58ace201289024b52788161e1ea133e4ac93fba7d49da5fec0ef9e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc2d7ff463764fc7e62e6492f5dddf8c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 329396,
            "upload_time": "2024-02-13T21:54:23",
            "upload_time_iso_8601": "2024-02-13T21:54:23.260602Z",
            "url": "https://files.pythonhosted.org/packages/1a/6b/d87a6c69a9a7101527c04527b555da364148021601c707512f15007d17a8/rpds_py-0.18.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7f982a9162f5247b5426a958640f89f79b7414ad4a262265bbdfe71f9f797bb",
                "md5": "7034459ac57317e706d7c1fa78902295",
                "sha256": "f8a2f084546cc59ea99fda8e070be2fd140c3092dc11524a71aa8f0f3d5a55ca"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7034459ac57317e706d7c1fa78902295",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1102704,
            "upload_time": "2024-02-13T21:54:25",
            "upload_time_iso_8601": "2024-02-13T21:54:25.850681Z",
            "url": "https://files.pythonhosted.org/packages/e7/f9/82a9162f5247b5426a958640f89f79b7414ad4a262265bbdfe71f9f797bb/rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70da13fe2151edb815f8a253d46f3f8703605364ba4d05478a70be4e25341d9a",
                "md5": "654c682aac52777c606f7540c5d3b57b",
                "sha256": "e4461d0f003a0aa9be2bdd1b798a041f177189c1a0f7619fe8c95ad08d9a45d7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "654c682aac52777c606f7540c5d3b57b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1118300,
            "upload_time": "2024-02-13T21:54:28",
            "upload_time_iso_8601": "2024-02-13T21:54:28.111401Z",
            "url": "https://files.pythonhosted.org/packages/70/da/13fe2151edb815f8a253d46f3f8703605364ba4d05478a70be4e25341d9a/rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b29e042a82b3a47128d32f65998f17763a7675283cfa98b4b34f4ffdee3e80f4",
                "md5": "11a5291eaf8fb306f2f2b86b829e9ad3",
                "sha256": "8db715ebe3bb7d86d77ac1826f7d67ec11a70dbd2376b7cc214199360517b641"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "11a5291eaf8fb306f2f2b86b829e9ad3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1218025,
            "upload_time": "2024-02-13T21:54:30",
            "upload_time_iso_8601": "2024-02-13T21:54:30.868792Z",
            "url": "https://files.pythonhosted.org/packages/b2/9e/042a82b3a47128d32f65998f17763a7675283cfa98b4b34f4ffdee3e80f4/rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "646b41f687d9e1a507d798436eafa56b36e76f96c86b5d62d5ea09cec3633991",
                "md5": "a07c99c256966b937b2e0bfbf4c9057c",
                "sha256": "793968759cd0d96cac1e367afd70c235867831983f876a53389ad869b043c948"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a07c99c256966b937b2e0bfbf4c9057c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1295986,
            "upload_time": "2024-02-13T21:54:34",
            "upload_time_iso_8601": "2024-02-13T21:54:34.272335Z",
            "url": "https://files.pythonhosted.org/packages/64/6b/41f687d9e1a507d798436eafa56b36e76f96c86b5d62d5ea09cec3633991/rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68a6bc4552f1247994e835475a8df23cf551534859ae93696a6fee52c0f910be",
                "md5": "3b7258a0ce506dd313c50f548b4d2425",
                "sha256": "66e6a3af5a75363d2c9a48b07cb27c4ea542938b1a2e93b15a503cdfa8490795"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b7258a0ce506dd313c50f548b4d2425",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1108333,
            "upload_time": "2024-02-13T21:54:37",
            "upload_time_iso_8601": "2024-02-13T21:54:37.646559Z",
            "url": "https://files.pythonhosted.org/packages/68/a6/bc4552f1247994e835475a8df23cf551534859ae93696a6fee52c0f910be/rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00dac355f1c9bc86d1a571e7ed4147780c3e48d5749f8d515bd2819c7935b798",
                "md5": "3bc0affa8ed99918959b372b07fa8301",
                "sha256": "6ef0befbb5d79cf32d0266f5cff01545602344eda89480e1dd88aca964260b18"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3bc0affa8ed99918959b372b07fa8301",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1139057,
            "upload_time": "2024-02-13T21:54:40",
            "upload_time_iso_8601": "2024-02-13T21:54:40.217922Z",
            "url": "https://files.pythonhosted.org/packages/00/da/c355f1c9bc86d1a571e7ed4147780c3e48d5749f8d515bd2819c7935b798/rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b627cf42efc6306869de057b2b48d80dac78514e758fdf81a431a39e9eba77d7",
                "md5": "3887da990ea4f100c4e97ca48e7142b8",
                "sha256": "1d4acf42190d449d5e89654d5c1ed3a4f17925eec71f05e2a41414689cda02d1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3887da990ea4f100c4e97ca48e7142b8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1354764,
            "upload_time": "2024-02-13T21:54:42",
            "upload_time_iso_8601": "2024-02-13T21:54:42.687463Z",
            "url": "https://files.pythonhosted.org/packages/b6/27/cf42efc6306869de057b2b48d80dac78514e758fdf81a431a39e9eba77d7/rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dceb7f1e1851fd746c0a06396cbb3f24fbe00a6b8d0dea20344eacc27da4e2d5",
                "md5": "1d477d13ad42eca3ab6f02eed4712040",
                "sha256": "a5f446dd5055667aabaee78487f2b5ab72e244f9bc0b2ffebfeec79051679984"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1d477d13ad42eca3ab6f02eed4712040",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1378961,
            "upload_time": "2024-02-13T21:54:45",
            "upload_time_iso_8601": "2024-02-13T21:54:45.624160Z",
            "url": "https://files.pythonhosted.org/packages/dc/eb/7f1e1851fd746c0a06396cbb3f24fbe00a6b8d0dea20344eacc27da4e2d5/rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eda31511ec88c45b26c6408f45706da2f27ba4d6de74d97a423564f2833caabc",
                "md5": "53e69ea8ae4c027f40e28631f25ef372",
                "sha256": "9dbbeb27f4e70bfd9eec1be5477517365afe05a9b2c441a0b21929ee61048124"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53e69ea8ae4c027f40e28631f25ef372",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1360206,
            "upload_time": "2024-02-13T21:54:48",
            "upload_time_iso_8601": "2024-02-13T21:54:48.151982Z",
            "url": "https://files.pythonhosted.org/packages/ed/a3/1511ec88c45b26c6408f45706da2f27ba4d6de74d97a423564f2833caabc/rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47c949dd3cfac01bbfa8cb34c6b86deda304c76bace37cb7a320cb6b08f4acaf",
                "md5": "bb5c9affa8fb5400f07b24f3b5153eac",
                "sha256": "22806714311a69fd0af9b35b7be97c18a0fc2826e6827dbb3a8c94eac6cf7eeb"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb5c9affa8fb5400f07b24f3b5153eac",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 335259,
            "upload_time": "2024-02-13T21:54:50",
            "upload_time_iso_8601": "2024-02-13T21:54:50.363513Z",
            "url": "https://files.pythonhosted.org/packages/47/c9/49dd3cfac01bbfa8cb34c6b86deda304c76bace37cb7a320cb6b08f4acaf/rpds_py-0.18.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec879f5aa5150d69222a9ac2adce9fbc32e53a9a789a00972cc187b885954afd",
                "md5": "1e7850de91d8406e0fea847a68ccd17b",
                "sha256": "b34ae4636dfc4e76a438ab826a0d1eed2589ca7d9a1b2d5bb546978ac6485461"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e7850de91d8406e0fea847a68ccd17b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 329678,
            "upload_time": "2024-02-13T21:54:53",
            "upload_time_iso_8601": "2024-02-13T21:54:53.579140Z",
            "url": "https://files.pythonhosted.org/packages/ec/87/9f5aa5150d69222a9ac2adce9fbc32e53a9a789a00972cc187b885954afd/rpds_py-0.18.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2d5088f0f3aa3a345b421d4a36599919831d53416deba5506e6ca06bc19d11a",
                "md5": "6ce0288b5f79c44164b2dc9c6ecb3035",
                "sha256": "8c8370641f1a7f0e0669ddccca22f1da893cef7628396431eb445d46d893e5cd"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6ce0288b5f79c44164b2dc9c6ecb3035",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1102826,
            "upload_time": "2024-02-13T21:54:56",
            "upload_time_iso_8601": "2024-02-13T21:54:56.022500Z",
            "url": "https://files.pythonhosted.org/packages/e2/d5/088f0f3aa3a345b421d4a36599919831d53416deba5506e6ca06bc19d11a/rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55f591c47880df3fdfc0ff7fe72177bd1f1e76d8f0021467cd0c167826b67003",
                "md5": "63317b9f6e11860f9933dd65eb2cd7ce",
                "sha256": "c8362467a0fdeccd47935f22c256bec5e6abe543bf0d66e3d3d57a8fb5731863"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "63317b9f6e11860f9933dd65eb2cd7ce",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1118787,
            "upload_time": "2024-02-13T21:54:58",
            "upload_time_iso_8601": "2024-02-13T21:54:58.968422Z",
            "url": "https://files.pythonhosted.org/packages/55/f5/91c47880df3fdfc0ff7fe72177bd1f1e76d8f0021467cd0c167826b67003/rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ceb45e3f35e15bf9580d518e64d97a916b02c71d268d3b553163ddd2ac3b1ec",
                "md5": "c6cf3764988fb6e15911ddfbed954d66",
                "sha256": "11a8c85ef4a07a7638180bf04fe189d12757c696eb41f310d2426895356dcf05"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c6cf3764988fb6e15911ddfbed954d66",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1216887,
            "upload_time": "2024-02-13T21:55:01",
            "upload_time_iso_8601": "2024-02-13T21:55:01.969693Z",
            "url": "https://files.pythonhosted.org/packages/7c/eb/45e3f35e15bf9580d518e64d97a916b02c71d268d3b553163ddd2ac3b1ec/rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c2dab9896f53464581d32e58593770cacf5d401ac2fe18183342a2e4b79d286",
                "md5": "7c2273e40b15da4b984941c9d76dd5bc",
                "sha256": "b316144e85316da2723f9d8dc75bada12fa58489a527091fa1d5a612643d1a0e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7c2273e40b15da4b984941c9d76dd5bc",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1295481,
            "upload_time": "2024-02-13T21:55:06",
            "upload_time_iso_8601": "2024-02-13T21:55:06.001748Z",
            "url": "https://files.pythonhosted.org/packages/7c/2d/ab9896f53464581d32e58593770cacf5d401ac2fe18183342a2e4b79d286/rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0eab1d346208b30cccffcc86e9ba6df67a0a052938dd1aa590cd92b48bb9bdd6",
                "md5": "084a2e4a7d5f02f766f394d797a26468",
                "sha256": "cf1ea2e34868f6fbf070e1af291c8180480310173de0b0c43fc38a02929fc0e3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "084a2e4a7d5f02f766f394d797a26468",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1108038,
            "upload_time": "2024-02-13T21:55:10",
            "upload_time_iso_8601": "2024-02-13T21:55:10.436327Z",
            "url": "https://files.pythonhosted.org/packages/0e/ab/1d346208b30cccffcc86e9ba6df67a0a052938dd1aa590cd92b48bb9bdd6/rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07a77396320a10cb7357451a02a3fea46869ecccca7f693f50d9671a4c5e5f17",
                "md5": "e40e63dc18a069426d49e8c23fc734c6",
                "sha256": "e546e768d08ad55b20b11dbb78a745151acbd938f8f00d0cfbabe8b0199b9880"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e40e63dc18a069426d49e8c23fc734c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1140527,
            "upload_time": "2024-02-13T21:55:14",
            "upload_time_iso_8601": "2024-02-13T21:55:14.935328Z",
            "url": "https://files.pythonhosted.org/packages/07/a7/7396320a10cb7357451a02a3fea46869ecccca7f693f50d9671a4c5e5f17/rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9972a016993cc8a9fe79f7f432d3df7a7850dbbd593dc5bf4a851f81a852f589",
                "md5": "94162576caa553035376cfbe1f67dc8e",
                "sha256": "4901165d170a5fde6f589acb90a6b33629ad1ec976d4529e769c6f3d885e3e80"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "94162576caa553035376cfbe1f67dc8e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1354609,
            "upload_time": "2024-02-13T21:55:18",
            "upload_time_iso_8601": "2024-02-13T21:55:18.258078Z",
            "url": "https://files.pythonhosted.org/packages/99/72/a016993cc8a9fe79f7f432d3df7a7850dbbd593dc5bf4a851f81a852f589/rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c2a1f0c00546f26ac68f56b831b0f87d86eda6e9ecbbda036bad2ace00e0eaa",
                "md5": "6b0d89c8ea72d8be4c49ec0238422427",
                "sha256": "618a3d6cae6ef8ec88bb76dd80b83cfe415ad4f1d942ca2a903bf6b6ff97a2da"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6b0d89c8ea72d8be4c49ec0238422427",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1380497,
            "upload_time": "2024-02-13T21:55:22",
            "upload_time_iso_8601": "2024-02-13T21:55:22.579059Z",
            "url": "https://files.pythonhosted.org/packages/2c/2a/1f0c00546f26ac68f56b831b0f87d86eda6e9ecbbda036bad2ace00e0eaa/rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a1a02d26a9a2c30331e709aaf00999132d2cbedae3fab07083de7c1da831ffa",
                "md5": "6754a63824a6573ff68380926ec99880",
                "sha256": "ed4eb745efbff0a8e9587d22a84be94a5eb7d2d99c02dacf7bd0911713ed14dd"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6754a63824a6573ff68380926ec99880",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1360238,
            "upload_time": "2024-02-13T21:55:25",
            "upload_time_iso_8601": "2024-02-13T21:55:25.197914Z",
            "url": "https://files.pythonhosted.org/packages/8a/1a/02d26a9a2c30331e709aaf00999132d2cbedae3fab07083de7c1da831ffa/rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4cc95e4043ca012358ea303e0fcd78dc731b8f612c8c26c6a97fb631786f6b6",
                "md5": "3c2640a9692588e4b8972d66b600ba8d",
                "sha256": "6c81e5f372cd0dc5dc4809553d34f832f60a46034a5f187756d9b90586c2c307"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c2640a9692588e4b8972d66b600ba8d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 335126,
            "upload_time": "2024-02-13T21:55:29",
            "upload_time_iso_8601": "2024-02-13T21:55:29.042131Z",
            "url": "https://files.pythonhosted.org/packages/a4/cc/95e4043ca012358ea303e0fcd78dc731b8f612c8c26c6a97fb631786f6b6/rpds_py-0.18.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5a1a0c85770f26a371d83141802b4aa8e3bf674c4baa67c60146a500b395918",
                "md5": "c49cce29207bd438fafe267381fa712c",
                "sha256": "43fbac5f22e25bee1d482c97474f930a353542855f05c1161fd804c9dc74a09d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c49cce29207bd438fafe267381fa712c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 329405,
            "upload_time": "2024-02-13T21:55:32",
            "upload_time_iso_8601": "2024-02-13T21:55:32.685705Z",
            "url": "https://files.pythonhosted.org/packages/e5/a1/a0c85770f26a371d83141802b4aa8e3bf674c4baa67c60146a500b395918/rpds_py-0.18.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a51be88653c0df5fa2f83987d2f60b19833f257db24adb7d74fb617d39a9c05c",
                "md5": "4af61d6492d14c5e61829a4cfa5cbb28",
                "sha256": "6d7faa6f14017c0b1e69f5e2c357b998731ea75a442ab3841c0dbbbfe902d2c4"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4af61d6492d14c5e61829a4cfa5cbb28",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1102888,
            "upload_time": "2024-02-13T21:55:37",
            "upload_time_iso_8601": "2024-02-13T21:55:37.155392Z",
            "url": "https://files.pythonhosted.org/packages/a5/1b/e88653c0df5fa2f83987d2f60b19833f257db24adb7d74fb617d39a9c05c/rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df1a7725e825e9a8f327866f2cb94eeb52d496c906c57048378dcf13af1935f1",
                "md5": "0cdfa3b97b00def4b171ba7e34fa4212",
                "sha256": "08231ac30a842bd04daabc4d71fddd7e6d26189406d5a69535638e4dcb88fe76"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0cdfa3b97b00def4b171ba7e34fa4212",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1118188,
            "upload_time": "2024-02-13T21:55:40",
            "upload_time_iso_8601": "2024-02-13T21:55:40.478489Z",
            "url": "https://files.pythonhosted.org/packages/df/1a/7725e825e9a8f327866f2cb94eeb52d496c906c57048378dcf13af1935f1/rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75befa90becba2709599ef0e2625f99cf9fe38d5d88aaed9021250cee4049117",
                "md5": "3fa39b8d1f398f4c092278562a7cd873",
                "sha256": "044a3e61a7c2dafacae99d1e722cc2d4c05280790ec5a05031b3876809d89a5c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3fa39b8d1f398f4c092278562a7cd873",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1217764,
            "upload_time": "2024-02-13T21:55:43",
            "upload_time_iso_8601": "2024-02-13T21:55:43.602621Z",
            "url": "https://files.pythonhosted.org/packages/75/be/fa90becba2709599ef0e2625f99cf9fe38d5d88aaed9021250cee4049117/rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf9bd803a9faa8898b08dd95378b5dbfedc641cf359e06686834954d9a594043",
                "md5": "5f8b6e01124c7140f8583efb35953f64",
                "sha256": "3f26b5bd1079acdb0c7a5645e350fe54d16b17bfc5e71f371c449383d3342e17"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5f8b6e01124c7140f8583efb35953f64",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1296078,
            "upload_time": "2024-02-13T21:55:46",
            "upload_time_iso_8601": "2024-02-13T21:55:46.335503Z",
            "url": "https://files.pythonhosted.org/packages/cf/9b/d803a9faa8898b08dd95378b5dbfedc641cf359e06686834954d9a594043/rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cafc472a1beadb3e4251e26aba5697b3f2872782093213939a0e265b208526e0",
                "md5": "25d69825c6330cf553811341ec5e0542",
                "sha256": "482103aed1dfe2f3b71a58eff35ba105289b8d862551ea576bd15479aba01f66"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25d69825c6330cf553811341ec5e0542",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1108266,
            "upload_time": "2024-02-13T21:55:48",
            "upload_time_iso_8601": "2024-02-13T21:55:48.903714Z",
            "url": "https://files.pythonhosted.org/packages/ca/fc/472a1beadb3e4251e26aba5697b3f2872782093213939a0e265b208526e0/rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7091cc511769dd5f0eaa7a9f1cb30bd0298d041f75cfddc9b1ddcff897edf2e",
                "md5": "8fd1749d4b5ed694fa1f3c92e75bea00",
                "sha256": "1374f4129f9bcca53a1bba0bb86bf78325a0374577cf7e9e4cd046b1e6f20e24"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8fd1749d4b5ed694fa1f3c92e75bea00",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1139004,
            "upload_time": "2024-02-13T21:55:51",
            "upload_time_iso_8601": "2024-02-13T21:55:51.293935Z",
            "url": "https://files.pythonhosted.org/packages/a7/09/1cc511769dd5f0eaa7a9f1cb30bd0298d041f75cfddc9b1ddcff897edf2e/rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0a4e8c8ed24f0e6cf71f3344c9ade6e80097c8e57daafa61cd967126f5449ee",
                "md5": "636b9f93c2c69f5628b650f8665569e6",
                "sha256": "635dc434ff724b178cb192c70016cc0ad25a275228f749ee0daf0eddbc8183b1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "636b9f93c2c69f5628b650f8665569e6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1354895,
            "upload_time": "2024-02-13T21:55:55",
            "upload_time_iso_8601": "2024-02-13T21:55:55.324353Z",
            "url": "https://files.pythonhosted.org/packages/f0/a4/e8c8ed24f0e6cf71f3344c9ade6e80097c8e57daafa61cd967126f5449ee/rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "483454f3d317206bad47ac774141c0beee8964718b52da43bb71c046a5be851f",
                "md5": "00cfc10e282c8da4b9aa627c451bc51e",
                "sha256": "bc362ee4e314870a70f4ae88772d72d877246537d9f8cb8f7eacf10884862432"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "00cfc10e282c8da4b9aa627c451bc51e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1378864,
            "upload_time": "2024-02-13T21:55:59",
            "upload_time_iso_8601": "2024-02-13T21:55:59.229634Z",
            "url": "https://files.pythonhosted.org/packages/48/34/54f3d317206bad47ac774141c0beee8964718b52da43bb71c046a5be851f/rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce76009087cdbe3e4819b356d31474a7ad4dc6ceb2ad8ed14e447162bce4c0fd",
                "md5": "dca2460d3f8cccc72d87fd2492d0b8fc",
                "sha256": "4832d7d380477521a8c1644bbab6588dfedea5e30a7d967b5fb75977c45fd77f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dca2460d3f8cccc72d87fd2492d0b8fc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1360111,
            "upload_time": "2024-02-13T21:56:05",
            "upload_time_iso_8601": "2024-02-13T21:56:05.479623Z",
            "url": "https://files.pythonhosted.org/packages/ce/76/009087cdbe3e4819b356d31474a7ad4dc6ceb2ad8ed14e447162bce4c0fd/rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55bace7b9f0fc5323f20ffdf85f682e51bee8dc03e9b54503939ebb63d1d0d5e",
                "md5": "9b89571c21cfc749b09fb6ddb964238e",
                "sha256": "42821446ee7a76f5d9f71f9e33a4fb2ffd724bb3e7f93386150b61a43115788d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.18.0.tar.gz",
            "has_sig": false,
            "md5_digest": "9b89571c21cfc749b09fb6ddb964238e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 25313,
            "upload_time": "2024-02-13T21:56:08",
            "upload_time_iso_8601": "2024-02-13T21:56:08.401940Z",
            "url": "https://files.pythonhosted.org/packages/55/ba/ce7b9f0fc5323f20ffdf85f682e51bee8dc03e9b54503939ebb63d1d0d5e/rpds_py-0.18.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-13 21:56:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sponsors",
    "github_project": "Julian",
    "github_not_found": true,
    "lcname": "rpds-py"
}
        
Elapsed time: 0.18463s