multidict


Namemultidict JSON
Version 6.0.5 PyPI version JSON
download
home_pagehttps://github.com/aio-libs/multidict
Summarymultidict implementation
upload_time2024-02-01 20:46:01
maintainer
docs_urlNone
authorAndrew Svetlov
requires_python>=3.7
licenseApache 2
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            =========
multidict
=========

.. image:: https://github.com/aio-libs/multidict/workflows/CI/badge.svg
   :target: https://github.com/aio-libs/multidict/actions?query=workflow%3ACI
   :alt: GitHub status for master branch

.. image:: https://codecov.io/gh/aio-libs/multidict/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/aio-libs/multidict
   :alt: Coverage metrics

.. image:: https://img.shields.io/pypi/v/multidict.svg
   :target: https://pypi.org/project/multidict
   :alt: PyPI

.. image:: https://readthedocs.org/projects/multidict/badge/?version=latest
   :target: http://multidict.aio-libs.org/en/latest/?badge=latest
   :alt: Documentation

.. image:: https://img.shields.io/pypi/pyversions/multidict.svg
   :target: https://pypi.org/project/multidict
   :alt: Python versions

.. image:: https://badges.gitter.im/Join%20Chat.svg
   :target: https://gitter.im/aio-libs/Lobby
   :alt: Chat on Gitter

Multidict is dict-like collection of *key-value pairs* where key
might occur more than once in the container.

Introduction
------------

*HTTP Headers* and *URL query string* require specific data structure:
*multidict*. It behaves mostly like a regular ``dict`` but it may have
several *values* for the same *key* and *preserves insertion ordering*.

The *key* is ``str`` (or ``istr`` for case-insensitive dictionaries).

``multidict`` has four multidict classes:
``MultiDict``, ``MultiDictProxy``, ``CIMultiDict``
and ``CIMultiDictProxy``.

Immutable proxies (``MultiDictProxy`` and
``CIMultiDictProxy``) provide a dynamic view for the
proxied multidict, the view reflects underlying collection changes. They
implement the ``collections.abc.Mapping`` interface.

Regular mutable (``MultiDict`` and ``CIMultiDict``) classes
implement ``collections.abc.MutableMapping`` and allows them to change
their own content.


*Case insensitive* (``CIMultiDict`` and
``CIMultiDictProxy``) assume the *keys* are case
insensitive, e.g.::

   >>> dct = CIMultiDict(key='val')
   >>> 'Key' in dct
   True
   >>> dct['Key']
   'val'

*Keys* should be ``str`` or ``istr`` instances.

The library has optional C Extensions for speed.


License
-------

Apache 2

Library Installation
--------------------

.. code-block:: bash

   $ pip install multidict

The library is Python 3 only!

PyPI contains binary wheels for Linux, Windows and MacOS.  If you want to install
``multidict`` on another operating system (or *Alpine Linux* inside a Docker) the
tarball will be used to compile the library from source.  It requires a C compiler and
Python headers to be installed.

To skip the compilation, please use the `MULTIDICT_NO_EXTENSIONS` environment variable,
e.g.:

.. code-block:: bash

   $ MULTIDICT_NO_EXTENSIONS=1 pip install multidict

Please note, the pure Python (uncompiled) version is about 20-50 times slower depending on
the usage scenario!!!



Changelog
---------
See `RTD page <http://multidict.aio-libs.org/en/latest/changes>`_.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/aio-libs/multidict",
    "name": "multidict",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Andrew Svetlov",
    "author_email": "andrew.svetlov@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/f9/79/722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836/multidict-6.0.5.tar.gz",
    "platform": null,
    "description": "=========\nmultidict\n=========\n\n.. image:: https://github.com/aio-libs/multidict/workflows/CI/badge.svg\n   :target: https://github.com/aio-libs/multidict/actions?query=workflow%3ACI\n   :alt: GitHub status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/multidict/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/aio-libs/multidict\n   :alt: Coverage metrics\n\n.. image:: https://img.shields.io/pypi/v/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: PyPI\n\n.. image:: https://readthedocs.org/projects/multidict/badge/?version=latest\n   :target: http://multidict.aio-libs.org/en/latest/?badge=latest\n   :alt: Documentation\n\n.. image:: https://img.shields.io/pypi/pyversions/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: Python versions\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n   :target: https://gitter.im/aio-libs/Lobby\n   :alt: Chat on Gitter\n\nMultidict is dict-like collection of *key-value pairs* where key\nmight occur more than once in the container.\n\nIntroduction\n------------\n\n*HTTP Headers* and *URL query string* require specific data structure:\n*multidict*. It behaves mostly like a regular ``dict`` but it may have\nseveral *values* for the same *key* and *preserves insertion ordering*.\n\nThe *key* is ``str`` (or ``istr`` for case-insensitive dictionaries).\n\n``multidict`` has four multidict classes:\n``MultiDict``, ``MultiDictProxy``, ``CIMultiDict``\nand ``CIMultiDictProxy``.\n\nImmutable proxies (``MultiDictProxy`` and\n``CIMultiDictProxy``) provide a dynamic view for the\nproxied multidict, the view reflects underlying collection changes. They\nimplement the ``collections.abc.Mapping`` interface.\n\nRegular mutable (``MultiDict`` and ``CIMultiDict``) classes\nimplement ``collections.abc.MutableMapping`` and allows them to change\ntheir own content.\n\n\n*Case insensitive* (``CIMultiDict`` and\n``CIMultiDictProxy``) assume the *keys* are case\ninsensitive, e.g.::\n\n   >>> dct = CIMultiDict(key='val')\n   >>> 'Key' in dct\n   True\n   >>> dct['Key']\n   'val'\n\n*Keys* should be ``str`` or ``istr`` instances.\n\nThe library has optional C Extensions for speed.\n\n\nLicense\n-------\n\nApache 2\n\nLibrary Installation\n--------------------\n\n.. code-block:: bash\n\n   $ pip install multidict\n\nThe library is Python 3 only!\n\nPyPI contains binary wheels for Linux, Windows and MacOS.  If you want to install\n``multidict`` on another operating system (or *Alpine Linux* inside a Docker) the\ntarball will be used to compile the library from source.  It requires a C compiler and\nPython headers to be installed.\n\nTo skip the compilation, please use the `MULTIDICT_NO_EXTENSIONS` environment variable,\ne.g.:\n\n.. code-block:: bash\n\n   $ MULTIDICT_NO_EXTENSIONS=1 pip install multidict\n\nPlease note, the pure Python (uncompiled) version is about 20-50 times slower depending on\nthe usage scenario!!!\n\n\n\nChangelog\n---------\nSee `RTD page <http://multidict.aio-libs.org/en/latest/changes>`_.\n",
    "bugtrack_url": null,
    "license": "Apache 2",
    "summary": "multidict implementation",
    "version": "6.0.5",
    "project_urls": {
        "CI: GitHub": "https://github.com/aio-libs/multidict/actions",
        "Chat: Gitter": "https://gitter.im/aio-libs/Lobby",
        "Coverage: codecov": "https://codecov.io/github/aio-libs/multidict",
        "Docs: RTD": "https://multidict.aio-libs.org",
        "GitHub: issues": "https://github.com/aio-libs/multidict/issues",
        "GitHub: repo": "https://github.com/aio-libs/multidict",
        "Homepage": "https://github.com/aio-libs/multidict"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b73648097b96135017ed1b806c5ea27b6cdc2ed3a6861c5372b793563206c586",
                "md5": "c917a2fb6a6821b8d5455b1ab14c49c7",
                "sha256": "228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c917a2fb6a6821b8d5455b1ab14c49c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 50955,
            "upload_time": "2024-02-01T20:43:20",
            "upload_time_iso_8601": "2024-02-01T20:43:20.237744Z",
            "url": "https://files.pythonhosted.org/packages/b7/36/48097b96135017ed1b806c5ea27b6cdc2ed3a6861c5372b793563206c586/multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d948037440edb5d4a1c65e002925b2f24071d6c27754e6f4734f63037e3169d6",
                "md5": "da55d1fa256bc95d766fbb368e31f2c5",
                "sha256": "896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da55d1fa256bc95d766fbb368e31f2c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30361,
            "upload_time": "2024-02-01T20:43:22",
            "upload_time_iso_8601": "2024-02-01T20:43:22.428220Z",
            "url": "https://files.pythonhosted.org/packages/d9/48/037440edb5d4a1c65e002925b2f24071d6c27754e6f4734f63037e3169d6/multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4ebd8e7693c9064554a1585698d1902839440c6c695b0f53c9a8be5d9d4a3b8",
                "md5": "a7e6bc83cd34e0400923eab0c2211f4b",
                "sha256": "411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a7e6bc83cd34e0400923eab0c2211f4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30508,
            "upload_time": "2024-02-01T20:43:24",
            "upload_time_iso_8601": "2024-02-01T20:43:24.451863Z",
            "url": "https://files.pythonhosted.org/packages/a4/eb/d8e7693c9064554a1585698d1902839440c6c695b0f53c9a8be5d9d4a3b8/multidict-6.0.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f37dfe7648d4b2f200f8854066ce6e56bf51889abfaf859814c62160dd0e32a9",
                "md5": "4c9290f67efbdf069438a7679d8702dc",
                "sha256": "1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c9290f67efbdf069438a7679d8702dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 126318,
            "upload_time": "2024-02-01T20:43:26",
            "upload_time_iso_8601": "2024-02-01T20:43:26.251481Z",
            "url": "https://files.pythonhosted.org/packages/f3/7d/fe7648d4b2f200f8854066ce6e56bf51889abfaf859814c62160dd0e32a9/multidict-6.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dea0230b6faa9a5bc10650fd50afcc4a86e6c37af2fe05bc679b74d79253732",
                "md5": "30188cad9b03be62a6c9e5620a639214",
                "sha256": "215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "30188cad9b03be62a6c9e5620a639214",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 133998,
            "upload_time": "2024-02-01T20:43:27",
            "upload_time_iso_8601": "2024-02-01T20:43:27.694222Z",
            "url": "https://files.pythonhosted.org/packages/8d/ea/0230b6faa9a5bc10650fd50afcc4a86e6c37af2fe05bc679b74d79253732/multidict-6.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "366dd2f982fb485175727a193b4900b5f929d461e7aa87d6fb5a91a377fcc9c0",
                "md5": "d96a0d11b83f252fe0630dfa9968cc19",
                "sha256": "7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d96a0d11b83f252fe0630dfa9968cc19",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 129150,
            "upload_time": "2024-02-01T20:43:29",
            "upload_time_iso_8601": "2024-02-01T20:43:29.330224Z",
            "url": "https://files.pythonhosted.org/packages/36/6d/d2f982fb485175727a193b4900b5f929d461e7aa87d6fb5a91a377fcc9c0/multidict-6.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33622c9085e571318d51212a6914566fe41dd0e33d7f268f7e2f23dcd3f06c56",
                "md5": "9f34e88bbdfb4ee6cf9a1da98ce91c39",
                "sha256": "21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f34e88bbdfb4ee6cf9a1da98ce91c39",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 124266,
            "upload_time": "2024-02-01T20:43:31",
            "upload_time_iso_8601": "2024-02-01T20:43:31.331411Z",
            "url": "https://files.pythonhosted.org/packages/33/62/2c9085e571318d51212a6914566fe41dd0e33d7f268f7e2f23dcd3f06c56/multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cee288cdfeaf03eab3498f688a19b62ca704d371cd904cb74b682541ca7b20a7",
                "md5": "511b8a9564744f305775660e3824e5e4",
                "sha256": "3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "511b8a9564744f305775660e3824e5e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 116637,
            "upload_time": "2024-02-01T20:43:32",
            "upload_time_iso_8601": "2024-02-01T20:43:32.831818Z",
            "url": "https://files.pythonhosted.org/packages/ce/e2/88cdfeaf03eab3498f688a19b62ca704d371cd904cb74b682541ca7b20a7/multidict-6.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "124d99dfc36872dcc53956879f5da80a6505bbd29214cce90ce792a86e15fddf",
                "md5": "38850035cfaeff8fde5d6647595423f9",
                "sha256": "6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "38850035cfaeff8fde5d6647595423f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 155908,
            "upload_time": "2024-02-01T20:43:34",
            "upload_time_iso_8601": "2024-02-01T20:43:34.275971Z",
            "url": "https://files.pythonhosted.org/packages/12/4d/99dfc36872dcc53956879f5da80a6505bbd29214cce90ce792a86e15fddf/multidict-6.0.5-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c25c1e76b2c742cb9e0248d1e8c4ed420817879230c833fa27d890b5fd22290b",
                "md5": "ceeaa9f12a0213b0d2f6f24d5e19cba2",
                "sha256": "220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ceeaa9f12a0213b0d2f6f24d5e19cba2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 147111,
            "upload_time": "2024-02-01T20:43:36",
            "upload_time_iso_8601": "2024-02-01T20:43:36.501065Z",
            "url": "https://files.pythonhosted.org/packages/c2/5c/1e76b2c742cb9e0248d1e8c4ed420817879230c833fa27d890b5fd22290b/multidict-6.0.5-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc849579004267e1cc5968ef2ef8718dab9d8950d99354d85b739dd67b09c273",
                "md5": "222955be85777ee2b5505152c405b25e",
                "sha256": "766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "222955be85777ee2b5505152c405b25e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 160502,
            "upload_time": "2024-02-01T20:43:38",
            "upload_time_iso_8601": "2024-02-01T20:43:38.761719Z",
            "url": "https://files.pythonhosted.org/packages/bc/84/9579004267e1cc5968ef2ef8718dab9d8950d99354d85b739dd67b09c273/multidict-6.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11b7bef33e84e3722bc42531af020d7ae8c31235ce8846bacaa852b6484cf868",
                "md5": "5e8feee0db23f2d3745c27db0e0b063d",
                "sha256": "fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "5e8feee0db23f2d3745c27db0e0b063d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 156587,
            "upload_time": "2024-02-01T20:43:40",
            "upload_time_iso_8601": "2024-02-01T20:43:40.345142Z",
            "url": "https://files.pythonhosted.org/packages/11/b7/bef33e84e3722bc42531af020d7ae8c31235ce8846bacaa852b6484cf868/multidict-6.0.5-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26cef745a2d6104e56f7fa0d7d0756bb9ed27b771dd7b8d9d7348cd7f0f7b9de",
                "md5": "effef0bbd5a0971411a59ccb53e2658d",
                "sha256": "c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "effef0bbd5a0971411a59ccb53e2658d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 151948,
            "upload_time": "2024-02-01T20:43:42",
            "upload_time_iso_8601": "2024-02-01T20:43:42.309800Z",
            "url": "https://files.pythonhosted.org/packages/26/ce/f745a2d6104e56f7fa0d7d0756bb9ed27b771dd7b8d9d7348cd7f0f7b9de/multidict-6.0.5-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f150714da64281d2b2b3b4068e84f115e1ef3bd3ed3715b39503ff3c59e8d30d",
                "md5": "99ab8313c6688ef81eabf1a10fd3e60b",
                "sha256": "7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "99ab8313c6688ef81eabf1a10fd3e60b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 25734,
            "upload_time": "2024-02-01T20:43:43",
            "upload_time_iso_8601": "2024-02-01T20:43:43.796918Z",
            "url": "https://files.pythonhosted.org/packages/f1/50/714da64281d2b2b3b4068e84f115e1ef3bd3ed3715b39503ff3c59e8d30d/multidict-6.0.5-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef3dba0dc18e96c5d83731c54129819d5892389e180f54ebb045c6124b2e8b87",
                "md5": "c97b53cbfe5f923d664de7d245754bd2",
                "sha256": "99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c97b53cbfe5f923d664de7d245754bd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 28182,
            "upload_time": "2024-02-01T20:43:45",
            "upload_time_iso_8601": "2024-02-01T20:43:45.478938Z",
            "url": "https://files.pythonhosted.org/packages/ef/3d/ba0dc18e96c5d83731c54129819d5892389e180f54ebb045c6124b2e8b87/multidict-6.0.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fdab10ea65b850b54f44a6479177c6987f456bc2d38f8dc73009b78afcf0ede",
                "md5": "954639e913cc93c7e1b6f9bffc25762d",
                "sha256": "f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "954639e913cc93c7e1b6f9bffc25762d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 50815,
            "upload_time": "2024-02-01T20:43:46",
            "upload_time_iso_8601": "2024-02-01T20:43:46.755420Z",
            "url": "https://files.pythonhosted.org/packages/5f/da/b10ea65b850b54f44a6479177c6987f456bc2d38f8dc73009b78afcf0ede/multidict-6.0.5-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21db3403263f158b0bc7b0d4653766d71cb39498973f2042eead27b2e9758782",
                "md5": "a76d68cc9ba0b909fc4e7a4b218d9212",
                "sha256": "53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a76d68cc9ba0b909fc4e7a4b218d9212",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30269,
            "upload_time": "2024-02-01T20:43:48",
            "upload_time_iso_8601": "2024-02-01T20:43:48.390126Z",
            "url": "https://files.pythonhosted.org/packages/21/db/3403263f158b0bc7b0d4653766d71cb39498973f2042eead27b2e9758782/multidict-6.0.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02c1b15ecceb6ffa5081ed2ed450aea58d65b0e0358001f2b426705f9f41f4c2",
                "md5": "22358564f187120442264dca56e99020",
                "sha256": "612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "22358564f187120442264dca56e99020",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30500,
            "upload_time": "2024-02-01T20:43:49",
            "upload_time_iso_8601": "2024-02-01T20:43:49.671468Z",
            "url": "https://files.pythonhosted.org/packages/02/c1/b15ecceb6ffa5081ed2ed450aea58d65b0e0358001f2b426705f9f41f4c2/multidict-6.0.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fe17fdd0f39565df3af87d6c2903fb66a7d529fbd0a8a066045d7a5b6ad1145",
                "md5": "3a41d7219623c8f354d178f8c5c1357b",
                "sha256": "7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a41d7219623c8f354d178f8c5c1357b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 130751,
            "upload_time": "2024-02-01T20:43:51",
            "upload_time_iso_8601": "2024-02-01T20:43:51.238027Z",
            "url": "https://files.pythonhosted.org/packages/3f/e1/7fdd0f39565df3af87d6c2903fb66a7d529fbd0a8a066045d7a5b6ad1145/multidict-6.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76bc9f593f9e38c6c09bbf0344b56ad67dd53c69167937c2edadee9719a5e17d",
                "md5": "d721473470b17e5bab859405f6ff5016",
                "sha256": "de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d721473470b17e5bab859405f6ff5016",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 138185,
            "upload_time": "2024-02-01T20:43:52",
            "upload_time_iso_8601": "2024-02-01T20:43:52.780335Z",
            "url": "https://files.pythonhosted.org/packages/76/bc/9f593f9e38c6c09bbf0344b56ad67dd53c69167937c2edadee9719a5e17d/multidict-6.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2832d7799a208701d537b92705f46c777ded812a6dc139c18d8ed599908f6b1c",
                "md5": "47ba84dfbb6927df2416b93e7027d312",
                "sha256": "04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "47ba84dfbb6927df2416b93e7027d312",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 133585,
            "upload_time": "2024-02-01T20:43:55",
            "upload_time_iso_8601": "2024-02-01T20:43:55.089691Z",
            "url": "https://files.pythonhosted.org/packages/28/32/d7799a208701d537b92705f46c777ded812a6dc139c18d8ed599908f6b1c/multidict-6.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52ecbe54a3ad110f386d5bd7a9a42a4ff36b3cd723ebe597f41073a73ffa16b8",
                "md5": "b14f296bf5238e77136441bc7bc8c649",
                "sha256": "85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b14f296bf5238e77136441bc7bc8c649",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 128684,
            "upload_time": "2024-02-01T20:43:57",
            "upload_time_iso_8601": "2024-02-01T20:43:57.078358Z",
            "url": "https://files.pythonhosted.org/packages/52/ec/be54a3ad110f386d5bd7a9a42a4ff36b3cd723ebe597f41073a73ffa16b8/multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36e1a680eabeb71e25d4733276d917658dfa1cd3a99b1223625dbc247d266c98",
                "md5": "30af503265d6191932f69164ed2bf6ad",
                "sha256": "425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "30af503265d6191932f69164ed2bf6ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 120994,
            "upload_time": "2024-02-01T20:43:58",
            "upload_time_iso_8601": "2024-02-01T20:43:58.481247Z",
            "url": "https://files.pythonhosted.org/packages/36/e1/a680eabeb71e25d4733276d917658dfa1cd3a99b1223625dbc247d266c98/multidict-6.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef0808f4f44a8a43ea4cee13aa9cdbbf4a639af8db49310a0637ca389c4cf817",
                "md5": "1f8c04a702e603f2b404cc8ec4c229ec",
                "sha256": "d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1f8c04a702e603f2b404cc8ec4c229ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 159689,
            "upload_time": "2024-02-01T20:43:59",
            "upload_time_iso_8601": "2024-02-01T20:43:59.979561Z",
            "url": "https://files.pythonhosted.org/packages/ef/08/08f4f44a8a43ea4cee13aa9cdbbf4a639af8db49310a0637ca389c4cf817/multidict-6.0.5-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aaa946cdb4cb40bbd4b732169413f56b04a6553460b22bd914f9729c9ba63761",
                "md5": "44f278db93f2bbf78f4672df279ebc8f",
                "sha256": "7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "44f278db93f2bbf78f4672df279ebc8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 150611,
            "upload_time": "2024-02-01T20:44:02",
            "upload_time_iso_8601": "2024-02-01T20:44:02.214095Z",
            "url": "https://files.pythonhosted.org/packages/aa/a9/46cdb4cb40bbd4b732169413f56b04a6553460b22bd914f9729c9ba63761/multidict-6.0.5-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e93235668bb3e6ab2f12f4e4f7f4000f72f714882a94f904d4c3633fbd036753",
                "md5": "9fac5acc6ca79235a0cc859788b8056c",
                "sha256": "e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9fac5acc6ca79235a0cc859788b8056c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 164444,
            "upload_time": "2024-02-01T20:44:03",
            "upload_time_iso_8601": "2024-02-01T20:44:03.752418Z",
            "url": "https://files.pythonhosted.org/packages/e9/32/35668bb3e6ab2f12f4e4f7f4000f72f714882a94f904d4c3633fbd036753/multidict-6.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa10f1388a91552af732d8ec48dab928abc209e732767e9e8f92d24c3544353c",
                "md5": "58ef85849fe27b5eae7850b2d0baacd8",
                "sha256": "29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "58ef85849fe27b5eae7850b2d0baacd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 160158,
            "upload_time": "2024-02-01T20:44:05",
            "upload_time_iso_8601": "2024-02-01T20:44:05.288570Z",
            "url": "https://files.pythonhosted.org/packages/fa/10/f1388a91552af732d8ec48dab928abc209e732767e9e8f92d24c3544353c/multidict-6.0.5-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14c3f602601f1819983e018156e728e57b3f19726cb424b543667faab82f6939",
                "md5": "050c7b18fd1167a60ae1fd2173f2f97e",
                "sha256": "e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "050c7b18fd1167a60ae1fd2173f2f97e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 156072,
            "upload_time": "2024-02-01T20:44:07",
            "upload_time_iso_8601": "2024-02-01T20:44:07.073593Z",
            "url": "https://files.pythonhosted.org/packages/14/c3/f602601f1819983e018156e728e57b3f19726cb424b543667faab82f6939/multidict-6.0.5-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82a60290af8487326108c0d03d14f8a0b8b1001d71e4494df5f96ab0c88c0b88",
                "md5": "a2a98f4df6a12cf3cd3758b15a3b0e87",
                "sha256": "2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "a2a98f4df6a12cf3cd3758b15a3b0e87",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 25731,
            "upload_time": "2024-02-01T20:44:09",
            "upload_time_iso_8601": "2024-02-01T20:44:09.120336Z",
            "url": "https://files.pythonhosted.org/packages/82/a6/0290af8487326108c0d03d14f8a0b8b1001d71e4494df5f96ab0c88c0b88/multidict-6.0.5-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88aaea217cb18325aa05cb3e3111c19715f1e97c50a4a900cbc20e54648de5f5",
                "md5": "c03d341d54661984ddd137afbbfcd407",
                "sha256": "2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c03d341d54661984ddd137afbbfcd407",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28176,
            "upload_time": "2024-02-01T20:44:10",
            "upload_time_iso_8601": "2024-02-01T20:44:10.595556Z",
            "url": "https://files.pythonhosted.org/packages/88/aa/ea217cb18325aa05cb3e3111c19715f1e97c50a4a900cbc20e54648de5f5/multidict-6.0.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "909c7fda9c0defa09538c97b1f195394be82a1f53238536f70b32eb5399dfd4e",
                "md5": "5a486fbaf075ef19d25d932d65bada8a",
                "sha256": "51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5a486fbaf075ef19d25d932d65bada8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 49575,
            "upload_time": "2024-02-01T20:44:11",
            "upload_time_iso_8601": "2024-02-01T20:44:11.928824Z",
            "url": "https://files.pythonhosted.org/packages/90/9c/7fda9c0defa09538c97b1f195394be82a1f53238536f70b32eb5399dfd4e/multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be21d6ca80dd1b9b2c5605ff7475699a8ff5dc6ea958cd71fb2ff234afc13d79",
                "md5": "512ac380e79428fc44d6a91fe1bc30ee",
                "sha256": "cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "512ac380e79428fc44d6a91fe1bc30ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 29638,
            "upload_time": "2024-02-01T20:44:14",
            "upload_time_iso_8601": "2024-02-01T20:44:14.173174Z",
            "url": "https://files.pythonhosted.org/packages/be/21/d6ca80dd1b9b2c5605ff7475699a8ff5dc6ea958cd71fb2ff234afc13d79/multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c189565f32c19d186168731e859692dfbc0e98f66a1dcf9e14d69c02a78b75a",
                "md5": "ae4f36b8f90ae21d7a2df5ea5553ad2e",
                "sha256": "2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ae4f36b8f90ae21d7a2df5ea5553ad2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 29874,
            "upload_time": "2024-02-01T20:44:15",
            "upload_time_iso_8601": "2024-02-01T20:44:15.768128Z",
            "url": "https://files.pythonhosted.org/packages/9c/18/9565f32c19d186168731e859692dfbc0e98f66a1dcf9e14d69c02a78b75a/multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e4e3815190e73e6ef101b5681c174c541bf972a1b064e926e56eea78d06e858",
                "md5": "dca72843224c25a11f3cdb5293e402db",
                "sha256": "ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dca72843224c25a11f3cdb5293e402db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 129914,
            "upload_time": "2024-02-01T20:44:17",
            "upload_time_iso_8601": "2024-02-01T20:44:17.303378Z",
            "url": "https://files.pythonhosted.org/packages/4e/4e/3815190e73e6ef101b5681c174c541bf972a1b064e926e56eea78d06e858/multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c08bb47f886457e2259aefc10044e45c8a1b62f0c27228557e17775869d0341",
                "md5": "774a4b1b7b5a4bccc684bfd7b3a23d6f",
                "sha256": "79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "774a4b1b7b5a4bccc684bfd7b3a23d6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 134589,
            "upload_time": "2024-02-01T20:44:18",
            "upload_time_iso_8601": "2024-02-01T20:44:18.950646Z",
            "url": "https://files.pythonhosted.org/packages/0c/08/bb47f886457e2259aefc10044e45c8a1b62f0c27228557e17775869d0341/multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d52f952f79b5f0795cf4e34852fc5cf4dfda6166f63c06c798361215b69c131d",
                "md5": "111b2e5bb0684b78260b4e862e9cbd6d",
                "sha256": "e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "111b2e5bb0684b78260b4e862e9cbd6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 133259,
            "upload_time": "2024-02-01T20:44:20",
            "upload_time_iso_8601": "2024-02-01T20:44:20.603502Z",
            "url": "https://files.pythonhosted.org/packages/d5/2f/952f79b5f0795cf4e34852fc5cf4dfda6166f63c06c798361215b69c131d/multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "241faf976383b0b772dd351210af5b60ff9927e3abb2f4a103e93da19a957da0",
                "md5": "31826dc9ea3d0ae052ef3f4fa0469191",
                "sha256": "d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31826dc9ea3d0ae052ef3f4fa0469191",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 130779,
            "upload_time": "2024-02-01T20:44:22",
            "upload_time_iso_8601": "2024-02-01T20:44:22.200670Z",
            "url": "https://files.pythonhosted.org/packages/24/1f/af976383b0b772dd351210af5b60ff9927e3abb2f4a103e93da19a957da0/multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcb1b0a7744be00b0f5045c7ed4e4a6b8ee6bde4672b2c620474712299df5979",
                "md5": "1a64897994947ef053a861dfcefb0827",
                "sha256": "76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1a64897994947ef053a861dfcefb0827",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 120125,
            "upload_time": "2024-02-01T20:44:23",
            "upload_time_iso_8601": "2024-02-01T20:44:23.803728Z",
            "url": "https://files.pythonhosted.org/packages/fc/b1/b0a7744be00b0f5045c7ed4e4a6b8ee6bde4672b2c620474712299df5979/multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0bf2a1d667acf11231cdf0b97a6cd9f30e7a5cf847037b5cf6da44884284bd0",
                "md5": "2e5a16c10fff198b0f1cbe8236052fe6",
                "sha256": "79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2e5a16c10fff198b0f1cbe8236052fe6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 167095,
            "upload_time": "2024-02-01T20:44:25",
            "upload_time_iso_8601": "2024-02-01T20:44:25.679250Z",
            "url": "https://files.pythonhosted.org/packages/d0/bf/2a1d667acf11231cdf0b97a6cd9f30e7a5cf847037b5cf6da44884284bd0/multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ee8ad6ee74b1a2050d3bc78f566dabcc14c8bf89cbe87eecec866c011479815",
                "md5": "2ecb59c29397afc07d8f0b392a4c8253",
                "sha256": "92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2ecb59c29397afc07d8f0b392a4c8253",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 155823,
            "upload_time": "2024-02-01T20:44:27",
            "upload_time_iso_8601": "2024-02-01T20:44:27.148530Z",
            "url": "https://files.pythonhosted.org/packages/5e/e8/ad6ee74b1a2050d3bc78f566dabcc14c8bf89cbe87eecec866c011479815/multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "457c06926bb91752c52abca3edbfefac1ea90d9d1bc00c84d0658c137589b920",
                "md5": "8ee8b721ace1229705360c7e7593a5db",
                "sha256": "fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8ee8b721ace1229705360c7e7593a5db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 170233,
            "upload_time": "2024-02-01T20:44:28",
            "upload_time_iso_8601": "2024-02-01T20:44:28.663377Z",
            "url": "https://files.pythonhosted.org/packages/45/7c/06926bb91752c52abca3edbfefac1ea90d9d1bc00c84d0658c137589b920/multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c293dd36cf6b9c5abba8b97bba84eb499a168ba59c3faec8829327b3887d123",
                "md5": "0593689d7210cd466713c559d8131ee8",
                "sha256": "14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "0593689d7210cd466713c559d8131ee8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 169035,
            "upload_time": "2024-02-01T20:44:30",
            "upload_time_iso_8601": "2024-02-01T20:44:30.738776Z",
            "url": "https://files.pythonhosted.org/packages/3c/29/3dd36cf6b9c5abba8b97bba84eb499a168ba59c3faec8829327b3887d123/multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60479a0f43470c70bbf6e148311f78ef5a3d4996b0226b6d295bdd50fdcfe387",
                "md5": "0cf9a785786aa99479aa5e74580f5ebf",
                "sha256": "435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cf9a785786aa99479aa5e74580f5ebf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 166229,
            "upload_time": "2024-02-01T20:44:32",
            "upload_time_iso_8601": "2024-02-01T20:44:32.222484Z",
            "url": "https://files.pythonhosted.org/packages/60/47/9a0f43470c70bbf6e148311f78ef5a3d4996b0226b6d295bdd50fdcfe387/multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d23c1b7ae7a0b8a3e08225284ef3ecbcf014b292a3ee821bc4ed2185fd4ce7d",
                "md5": "4ea0288c62a919bce80aaca54bf70b94",
                "sha256": "9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4ea0288c62a919bce80aaca54bf70b94",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 25840,
            "upload_time": "2024-02-01T20:44:35",
            "upload_time_iso_8601": "2024-02-01T20:44:35.583084Z",
            "url": "https://files.pythonhosted.org/packages/1d/23/c1b7ae7a0b8a3e08225284ef3ecbcf014b292a3ee821bc4ed2185fd4ce7d/multidict-6.0.5-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a6866fceb758ad7a88993940dbdf3ac59911ba9dc46d7798bf6c8652f89f853",
                "md5": "ba299ba635cbef6c74189620c90deb4d",
                "sha256": "01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ba299ba635cbef6c74189620c90deb4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 27905,
            "upload_time": "2024-02-01T20:44:36",
            "upload_time_iso_8601": "2024-02-01T20:44:36.883082Z",
            "url": "https://files.pythonhosted.org/packages/4a/68/66fceb758ad7a88993940dbdf3ac59911ba9dc46d7798bf6c8652f89f853/multidict-6.0.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21d28faec69b04237385c760d0c481ba032e46cdecb6bf47bdbf672a60f19d75",
                "md5": "ae83122de2cc77782b3a51c75e393bc0",
                "sha256": "19fe01cea168585ba0f678cad6f58133db2aa14eccaf22f88e4a6dccadfad8b3"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae83122de2cc77782b3a51c75e393bc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 28541,
            "upload_time": "2024-02-01T20:44:38",
            "upload_time_iso_8601": "2024-02-01T20:44:38.399511Z",
            "url": "https://files.pythonhosted.org/packages/21/d2/8faec69b04237385c760d0c481ba032e46cdecb6bf47bdbf672a60f19d75/multidict-6.0.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0fa517294e7f7a1d070a03a16bd28f10997d4b90846ca52f390833365d15048",
                "md5": "a4ff2cedf27e080bf741fa7bbfa6a562",
                "sha256": "6bf7a982604375a8d49b6cc1b781c1747f243d91b81035a9b43a2126c04766f5"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a4ff2cedf27e080bf741fa7bbfa6a562",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 101199,
            "upload_time": "2024-02-01T20:44:40",
            "upload_time_iso_8601": "2024-02-01T20:44:40.565691Z",
            "url": "https://files.pythonhosted.org/packages/e0/fa/517294e7f7a1d070a03a16bd28f10997d4b90846ca52f390833365d15048/multidict-6.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "934bfc9f393fbae0e9ebd7728b06a79f60325f6307ee4fc433cfa39995f307ee",
                "md5": "5030cba321049b5a1f5e23c68248ff25",
                "sha256": "107c0cdefe028703fb5dafe640a409cb146d44a6ae201e55b35a4af8e95457dd"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5030cba321049b5a1f5e23c68248ff25",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 105644,
            "upload_time": "2024-02-01T20:44:42",
            "upload_time_iso_8601": "2024-02-01T20:44:42.024434Z",
            "url": "https://files.pythonhosted.org/packages/93/4b/fc9f393fbae0e9ebd7728b06a79f60325f6307ee4fc433cfa39995f307ee/multidict-6.0.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abf76d5f45c0cc8bcb2e510a8c17c51c74b42c2dcd6636bd048217d4336c342f",
                "md5": "a5d73505e8a0f3b2ff78a72e529fd2d0",
                "sha256": "403c0911cd5d5791605808b942c88a8155c2592e05332d2bf78f18697a5fa15e"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a5d73505e8a0f3b2ff78a72e529fd2d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 102379,
            "upload_time": "2024-02-01T20:44:43",
            "upload_time_iso_8601": "2024-02-01T20:44:43.734950Z",
            "url": "https://files.pythonhosted.org/packages/ab/f7/6d5f45c0cc8bcb2e510a8c17c51c74b42c2dcd6636bd048217d4336c342f/multidict-6.0.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0af0b256648385dfda067688570b10e7b90eacd3711c26635763560cbad0a447",
                "md5": "ebc84d1acb39d7efdbdad2683b249664",
                "sha256": "aeaf541ddbad8311a87dd695ed9642401131ea39ad7bc8cf3ef3967fd093b626"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebc84d1acb39d7efdbdad2683b249664",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 99846,
            "upload_time": "2024-02-01T20:44:45",
            "upload_time_iso_8601": "2024-02-01T20:44:45.199628Z",
            "url": "https://files.pythonhosted.org/packages/0a/f0/b256648385dfda067688570b10e7b90eacd3711c26635763560cbad0a447/multidict-6.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "413416237d404dc204a90c94d5974ae8aaaa6dd4604b6ff808883262a5759c0d",
                "md5": "d67d0bb9a6ac96567cd9fe07fe67d7b7",
                "sha256": "e4972624066095e52b569e02b5ca97dbd7a7ddd4294bf4e7247d52635630dd83"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d67d0bb9a6ac96567cd9fe07fe67d7b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 92908,
            "upload_time": "2024-02-01T20:44:46",
            "upload_time_iso_8601": "2024-02-01T20:44:46.633707Z",
            "url": "https://files.pythonhosted.org/packages/41/34/16237d404dc204a90c94d5974ae8aaaa6dd4604b6ff808883262a5759c0d/multidict-6.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6234829b3a0857ae46e502cb9c6699541107aa2d077501004c1148909465b6c7",
                "md5": "8a839f608cfe285494ac08c9952fe1c1",
                "sha256": "d946b0a9eb8aaa590df1fe082cee553ceab173e6cb5b03239716338629c50c7a"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a839f608cfe285494ac08c9952fe1c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 138546,
            "upload_time": "2024-02-01T20:44:48",
            "upload_time_iso_8601": "2024-02-01T20:44:48.451049Z",
            "url": "https://files.pythonhosted.org/packages/62/34/829b3a0857ae46e502cb9c6699541107aa2d077501004c1148909465b6c7/multidict-6.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "332eb37eaa5541d29847dfdfb6dbe3ac514d31dab186c78b0156cdb585616b13",
                "md5": "d1e0da0dbd03ced5058df867caa69619",
                "sha256": "b55358304d7a73d7bdf5de62494aaf70bd33015831ffd98bc498b433dfe5b10c"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d1e0da0dbd03ced5058df867caa69619",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 128775,
            "upload_time": "2024-02-01T20:44:50",
            "upload_time_iso_8601": "2024-02-01T20:44:50.191792Z",
            "url": "https://files.pythonhosted.org/packages/33/2e/b37eaa5541d29847dfdfb6dbe3ac514d31dab186c78b0156cdb585616b13/multidict-6.0.5-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b9708c6a79ef52b2764ae9f7abb7463e7e1e6ddcb17125494654f00cb343380",
                "md5": "dba2c382aff398d614a13a721b90ce15",
                "sha256": "a3145cb08d8625b2d3fee1b2d596a8766352979c9bffe5d7833e0503d0f0b5e5"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dba2c382aff398d614a13a721b90ce15",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 141346,
            "upload_time": "2024-02-01T20:44:51",
            "upload_time_iso_8601": "2024-02-01T20:44:51.855223Z",
            "url": "https://files.pythonhosted.org/packages/6b/97/08c6a79ef52b2764ae9f7abb7463e7e1e6ddcb17125494654f00cb343380/multidict-6.0.5-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc3a308c8bcdffe345cf4e2682543311a67aabb3c85492ce896d0a07d5105443",
                "md5": "8f12072f4d99886170252e1c1200159b",
                "sha256": "d65f25da8e248202bd47445cec78e0025c0fe7582b23ec69c3b27a640dd7a8e3"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "8f12072f4d99886170252e1c1200159b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 134203,
            "upload_time": "2024-02-01T20:44:53",
            "upload_time_iso_8601": "2024-02-01T20:44:53.407794Z",
            "url": "https://files.pythonhosted.org/packages/fc/3a/308c8bcdffe345cf4e2682543311a67aabb3c85492ce896d0a07d5105443/multidict-6.0.5-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb1cbc0d59aeb216f3fce21333632f72843bf2dfd5d045e32a13615477cd7d7c",
                "md5": "7a96e08d844fb9f21ebb900fc5cceab4",
                "sha256": "c9bf56195c6bbd293340ea82eafd0071cb3d450c703d2c93afb89f93b8386ccc"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a96e08d844fb9f21ebb900fc5cceab4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 135421,
            "upload_time": "2024-02-01T20:44:54",
            "upload_time_iso_8601": "2024-02-01T20:44:54.857728Z",
            "url": "https://files.pythonhosted.org/packages/eb/1c/bc0d59aeb216f3fce21333632f72843bf2dfd5d045e32a13615477cd7d7c/multidict-6.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8aeb0e7cdfb513b297cf46c9b229f1bff082ed8497d0c800d640c697111cef4",
                "md5": "28ab1f5dcbaea3ed51520881db02e763",
                "sha256": "69db76c09796b313331bb7048229e3bee7928eb62bab5e071e9f7fcc4879caee"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "28ab1f5dcbaea3ed51520881db02e763",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 24337,
            "upload_time": "2024-02-01T20:44:56",
            "upload_time_iso_8601": "2024-02-01T20:44:56.581681Z",
            "url": "https://files.pythonhosted.org/packages/e8/ae/b0e7cdfb513b297cf46c9b229f1bff082ed8497d0c800d640c697111cef4/multidict-6.0.5-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66f9f016a8963b4784a4a013c0c0dac717add7146bb47d51e93a23b8205dfdce",
                "md5": "a6860444c7ed2aa6a2b38f1e2da0a5d8",
                "sha256": "fce28b3c8a81b6b36dfac9feb1de115bab619b3c13905b419ec71d03a3fc1423"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a6860444c7ed2aa6a2b38f1e2da0a5d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 26637,
            "upload_time": "2024-02-01T20:44:58",
            "upload_time_iso_8601": "2024-02-01T20:44:58.170744Z",
            "url": "https://files.pythonhosted.org/packages/66/f9/f016a8963b4784a4a013c0c0dac717add7146bb47d51e93a23b8205dfdce/multidict-6.0.5-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2822641816aa81288a2ead7b982e3805ef8bc494619f574b72edf271bc3a8af",
                "md5": "90da0fc12b2f528e948c8b7221ebb5e1",
                "sha256": "76f067f5121dcecf0d63a67f29080b26c43c71a98b10c701b0677e4a065fbd54"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "90da0fc12b2f528e948c8b7221ebb5e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 50607,
            "upload_time": "2024-02-01T20:44:59",
            "upload_time_iso_8601": "2024-02-01T20:44:59.569041Z",
            "url": "https://files.pythonhosted.org/packages/a2/82/2641816aa81288a2ead7b982e3805ef8bc494619f574b72edf271bc3a8af/multidict-6.0.5-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c1397f4a2e0e26b7c6e2469de03f1efc255ce2f984a537c301d957762a23eba",
                "md5": "6c0653bd2fe11da88fb9021c8e41edb4",
                "sha256": "b82cc8ace10ab5bd93235dfaab2021c70637005e1ac787031f4d1da63d493c1d"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c0653bd2fe11da88fb9021c8e41edb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 30209,
            "upload_time": "2024-02-01T20:45:01",
            "upload_time_iso_8601": "2024-02-01T20:45:01.462967Z",
            "url": "https://files.pythonhosted.org/packages/6c/13/97f4a2e0e26b7c6e2469de03f1efc255ce2f984a537c301d957762a23eba/multidict-6.0.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b0ac5a12e908f32ec3844772a8a52322594bfc7ea5786ffdfd4efc70eead079",
                "md5": "7721be24df62569084974cf8029a4f1a",
                "sha256": "5cb241881eefd96b46f89b1a056187ea8e9ba14ab88ba632e68d7a2ecb7aadf7"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7721be24df62569084974cf8029a4f1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 30343,
            "upload_time": "2024-02-01T20:45:03",
            "upload_time_iso_8601": "2024-02-01T20:45:03.419572Z",
            "url": "https://files.pythonhosted.org/packages/7b/0a/c5a12e908f32ec3844772a8a52322594bfc7ea5786ffdfd4efc70eead079/multidict-6.0.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7db6fd8dd4a1ce1d129a1870143133f449b769ae236e9435ed8d74a8d45acb8e",
                "md5": "7d9852ad0cc946adb0e0e6a92db5bea6",
                "sha256": "e8e94e6912639a02ce173341ff62cc1201232ab86b8a8fcc05572741a5dc7d93"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7d9852ad0cc946adb0e0e6a92db5bea6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 130659,
            "upload_time": "2024-02-01T20:45:05",
            "upload_time_iso_8601": "2024-02-01T20:45:05.408263Z",
            "url": "https://files.pythonhosted.org/packages/7d/b6/fd8dd4a1ce1d129a1870143133f449b769ae236e9435ed8d74a8d45acb8e/multidict-6.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a43d753dbaa498d42e8e292889cc9a9def30b32631573ae86c9911889977049",
                "md5": "2f18529cdfb78e60b64e96824ca0122d",
                "sha256": "09a892e4a9fb47331da06948690ae38eaa2426de97b4ccbfafbdcbe5c8f37ff8"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2f18529cdfb78e60b64e96824ca0122d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 136375,
            "upload_time": "2024-02-01T20:45:07",
            "upload_time_iso_8601": "2024-02-01T20:45:07.640554Z",
            "url": "https://files.pythonhosted.org/packages/6a/43/d753dbaa498d42e8e292889cc9a9def30b32631573ae86c9911889977049/multidict-6.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e84e51130700c255597ac8e15ceac2e492117ffad44c75610381652b7d2e96a1",
                "md5": "0d572218c4c780a629c731f3e20275b8",
                "sha256": "55205d03e8a598cfc688c71ca8ea5f66447164efff8869517f175ea632c7cb7b"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0d572218c4c780a629c731f3e20275b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 131294,
            "upload_time": "2024-02-01T20:45:09",
            "upload_time_iso_8601": "2024-02-01T20:45:09.967480Z",
            "url": "https://files.pythonhosted.org/packages/e8/4e/51130700c255597ac8e15ceac2e492117ffad44c75610381652b7d2e96a1/multidict-6.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61a3c307d4af64e695d13e8587d3f996a51b134156c0e8e2e26f4135bb2bf517",
                "md5": "fbf88e782c2243677359657d5455b760",
                "sha256": "37b15024f864916b4951adb95d3a80c9431299080341ab9544ed148091b53f50"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbf88e782c2243677359657d5455b760",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 129342,
            "upload_time": "2024-02-01T20:45:11",
            "upload_time_iso_8601": "2024-02-01T20:45:11.807270Z",
            "url": "https://files.pythonhosted.org/packages/61/a3/c307d4af64e695d13e8587d3f996a51b134156c0e8e2e26f4135bb2bf517/multidict-6.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc040dcb48358f8217ae6839075287ce5d4be124e68d4ef7696b23e3f0981b51",
                "md5": "60ed2624117532bd0d1e025656ef3c15",
                "sha256": "f2a1dee728b52b33eebff5072817176c172050d44d67befd681609b4746e1c2e"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "60ed2624117532bd0d1e025656ef3c15",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 121538,
            "upload_time": "2024-02-01T20:45:13",
            "upload_time_iso_8601": "2024-02-01T20:45:13.422181Z",
            "url": "https://files.pythonhosted.org/packages/dc/04/0dcb48358f8217ae6839075287ce5d4be124e68d4ef7696b23e3f0981b51/multidict-6.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fde28b98715478dc4a3cdf0230886680f33f4eacbc2ab2a4c1604b027e9540eb",
                "md5": "d345d5bffae982f36f629e4783fbf54b",
                "sha256": "edd08e6f2f1a390bf137080507e44ccc086353c8e98c657e666c017718561b89"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d345d5bffae982f36f629e4783fbf54b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 160932,
            "upload_time": "2024-02-01T20:45:15",
            "upload_time_iso_8601": "2024-02-01T20:45:15.566651Z",
            "url": "https://files.pythonhosted.org/packages/fd/e2/8b98715478dc4a3cdf0230886680f33f4eacbc2ab2a4c1604b027e9540eb/multidict-6.0.5-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7723f696c93d03f19f8fbefe82e8f415dea8c574fa58ffdb4bc04ebafbd4a05",
                "md5": "201ef69ce4e24c159ed94be8af68aab9",
                "sha256": "60d698e8179a42ec85172d12f50b1668254628425a6bd611aba022257cac1386"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "201ef69ce4e24c159ed94be8af68aab9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 151332,
            "upload_time": "2024-02-01T20:45:17",
            "upload_time_iso_8601": "2024-02-01T20:45:17.809756Z",
            "url": "https://files.pythonhosted.org/packages/c7/72/3f696c93d03f19f8fbefe82e8f415dea8c574fa58ffdb4bc04ebafbd4a05/multidict-6.0.5-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03a6b13e10db5357695645748fae401c94674f612e04e2262c99032ddc638864",
                "md5": "2c42c43b4ab0febfbde4f4313a80604a",
                "sha256": "3d25f19500588cbc47dc19081d78131c32637c25804df8414463ec908631e453"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2c42c43b4ab0febfbde4f4313a80604a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 165893,
            "upload_time": "2024-02-01T20:45:19",
            "upload_time_iso_8601": "2024-02-01T20:45:19.608681Z",
            "url": "https://files.pythonhosted.org/packages/03/a6/b13e10db5357695645748fae401c94674f612e04e2262c99032ddc638864/multidict-6.0.5-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebda519f691131f42a25555a903cd6d150285b530786a0d10751ff286aa0e326",
                "md5": "2be16fd61c76fcb03721d3a572ce8881",
                "sha256": "4cc0ef8b962ac7a5e62b9e826bd0cd5040e7d401bc45a6835910ed699037a461"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "2be16fd61c76fcb03721d3a572ce8881",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 161519,
            "upload_time": "2024-02-01T20:45:21",
            "upload_time_iso_8601": "2024-02-01T20:45:21.847060Z",
            "url": "https://files.pythonhosted.org/packages/eb/da/519f691131f42a25555a903cd6d150285b530786a0d10751ff286aa0e326/multidict-6.0.5-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a852d0162c949f7ce7876498d854cba8ce3ae45b1e2212e7a80e0d6ef602a19",
                "md5": "c9dc17898793ab0657a67a9bda3465e5",
                "sha256": "eca2e9d0cc5a889850e9bbd68e98314ada174ff6ccd1129500103df7a94a7a44"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9dc17898793ab0657a67a9bda3465e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 156612,
            "upload_time": "2024-02-01T20:45:23",
            "upload_time_iso_8601": "2024-02-01T20:45:23.499855Z",
            "url": "https://files.pythonhosted.org/packages/3a/85/2d0162c949f7ce7876498d854cba8ce3ae45b1e2212e7a80e0d6ef602a19/multidict-6.0.5-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce7b7f68ee7e21cf8a7e43fbea41508f9cc0698c497ea54525a5a5a99b4574ef",
                "md5": "fde10be856245b2058a5b2f16c1c61e5",
                "sha256": "4a6a4f196f08c58c59e0b8ef8ec441d12aee4125a7d4f4fef000ccb22f8d7241"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "fde10be856245b2058a5b2f16c1c61e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 25640,
            "upload_time": "2024-02-01T20:45:25",
            "upload_time_iso_8601": "2024-02-01T20:45:25.302892Z",
            "url": "https://files.pythonhosted.org/packages/ce/7b/7f68ee7e21cf8a7e43fbea41508f9cc0698c497ea54525a5a5a99b4574ef/multidict-6.0.5-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7d626f82e3f45802a826c8220af7305ca3b06ad8f25ef2fcdbf1899c7bc01d3",
                "md5": "0fd790d133b4cb7eb7922f3f27f4cbff",
                "sha256": "0275e35209c27a3f7951e1ce7aaf93ce0d163b28948444bec61dd7badc6d3f8c"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0fd790d133b4cb7eb7922f3f27f4cbff",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 28138,
            "upload_time": "2024-02-01T20:45:26",
            "upload_time_iso_8601": "2024-02-01T20:45:26.864210Z",
            "url": "https://files.pythonhosted.org/packages/f7/d6/26f82e3f45802a826c8220af7305ca3b06ad8f25ef2fcdbf1899c7bc01d3/multidict-6.0.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c67cc8f4445389c0bbc5ea85d1e737233c257f314d0f836a6644e097a5ef512f",
                "md5": "6347a3995c3c73ea340d6092fd2bc891",
                "sha256": "e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "6347a3995c3c73ea340d6092fd2bc891",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 50828,
            "upload_time": "2024-02-01T20:45:28",
            "upload_time_iso_8601": "2024-02-01T20:45:28.632491Z",
            "url": "https://files.pythonhosted.org/packages/c6/7c/c8f4445389c0bbc5ea85d1e737233c257f314d0f836a6644e097a5ef512f/multidict-6.0.5-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d5cc364a77b37f580cc28da4194b77ed04286c7631933d3e64fdae40f1972e2",
                "md5": "2d69b32a4c8a0c712ffd83786762fb5b",
                "sha256": "1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d69b32a4c8a0c712ffd83786762fb5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30315,
            "upload_time": "2024-02-01T20:45:30",
            "upload_time_iso_8601": "2024-02-01T20:45:30.610773Z",
            "url": "https://files.pythonhosted.org/packages/7d/5c/c364a77b37f580cc28da4194b77ed04286c7631933d3e64fdae40f1972e2/multidict-6.0.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a25f4b60a34dde70c475f4dcaeb4796c256db80d2e03198052d0c3cee5d5fbb",
                "md5": "c7ba26fbbdae95a6a6692daf2cd0d9e4",
                "sha256": "ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c7ba26fbbdae95a6a6692daf2cd0d9e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30451,
            "upload_time": "2024-02-01T20:45:32",
            "upload_time_iso_8601": "2024-02-01T20:45:32.366171Z",
            "url": "https://files.pythonhosted.org/packages/1a/25/f4b60a34dde70c475f4dcaeb4796c256db80d2e03198052d0c3cee5d5fbb/multidict-6.0.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0102ff646c471e84af25fe8111985ffb8ec85a3f6e1ade8643bfcfcc0f4d2b1",
                "md5": "300099144f0e49fb8417f878c8b84a1d",
                "sha256": "cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "300099144f0e49fb8417f878c8b84a1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 125880,
            "upload_time": "2024-02-01T20:45:33",
            "upload_time_iso_8601": "2024-02-01T20:45:33.804069Z",
            "url": "https://files.pythonhosted.org/packages/d0/10/2ff646c471e84af25fe8111985ffb8ec85a3f6e1ade8643bfcfcc0f4d2b1/multidict-6.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9eea4775297550dfb127641bd335d00d6d896e4ba5cf0216f78654e5ad6ac80",
                "md5": "2709749cb302fa655dcc5817708467f3",
                "sha256": "5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2709749cb302fa655dcc5817708467f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 133606,
            "upload_time": "2024-02-01T20:45:35",
            "upload_time_iso_8601": "2024-02-01T20:45:35.994229Z",
            "url": "https://files.pythonhosted.org/packages/c9/ee/a4775297550dfb127641bd335d00d6d896e4ba5cf0216f78654e5ad6ac80/multidict-6.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7de995746d0c7c40bb0f43fc5424b7d7cf783e8638ce67f05fa677fff9ad76bb",
                "md5": "cdbea342c1e3cf5fadc20c30a3fda0cb",
                "sha256": "dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "cdbea342c1e3cf5fadc20c30a3fda0cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 128720,
            "upload_time": "2024-02-01T20:45:37",
            "upload_time_iso_8601": "2024-02-01T20:45:37.648221Z",
            "url": "https://files.pythonhosted.org/packages/7d/e9/95746d0c7c40bb0f43fc5424b7d7cf783e8638ce67f05fa677fff9ad76bb/multidict-6.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39a91f8d42c8103bcb1da6bb719f1bc018594b5acc8eae56b3fec4720ebee225",
                "md5": "95752cd800c6f9718daf612fbf3bd420",
                "sha256": "c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95752cd800c6f9718daf612fbf3bd420",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 123750,
            "upload_time": "2024-02-01T20:45:39",
            "upload_time_iso_8601": "2024-02-01T20:45:39.477390Z",
            "url": "https://files.pythonhosted.org/packages/39/a9/1f8d42c8103bcb1da6bb719f1bc018594b5acc8eae56b3fec4720ebee225/multidict-6.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5f8c8abbe7c425497d8bf997b1fffd9650ca175325ff397fadc9d63ae5dc027",
                "md5": "de41f376bd02e2687c0c5bd327de4f6c",
                "sha256": "141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "de41f376bd02e2687c0c5bd327de4f6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 116213,
            "upload_time": "2024-02-01T20:45:41",
            "upload_time_iso_8601": "2024-02-01T20:45:41.061601Z",
            "url": "https://files.pythonhosted.org/packages/b5/f8/c8abbe7c425497d8bf997b1fffd9650ca175325ff397fadc9d63ae5dc027/multidict-6.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2bb242664de860cd1201f4d207f0bd2011c1a730877e1dbffbe5d6ec4089e2d",
                "md5": "d8b0a270fc355e85741039ffafa3f74d",
                "sha256": "7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d8b0a270fc355e85741039ffafa3f74d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 155410,
            "upload_time": "2024-02-01T20:45:42",
            "upload_time_iso_8601": "2024-02-01T20:45:42.785171Z",
            "url": "https://files.pythonhosted.org/packages/c2/bb/242664de860cd1201f4d207f0bd2011c1a730877e1dbffbe5d6ec4089e2d/multidict-6.0.5-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f65b35d20c85b8ccd0c9afc47b8dd46e028b6650ad9660a4b6ad191301d220f5",
                "md5": "6d173aec7bdad44927c7751781ba982a",
                "sha256": "6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6d173aec7bdad44927c7751781ba982a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 146668,
            "upload_time": "2024-02-01T20:45:45",
            "upload_time_iso_8601": "2024-02-01T20:45:45.444975Z",
            "url": "https://files.pythonhosted.org/packages/f6/5b/35d20c85b8ccd0c9afc47b8dd46e028b6650ad9660a4b6ad191301d220f5/multidict-6.0.5-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b526e984685d048f6728807c3fd9b8a6e3e3d51a06a4d6665d6e0102115455d",
                "md5": "0a58c0f743fa4a1ad62e2282ed4e2d8e",
                "sha256": "cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0a58c0f743fa4a1ad62e2282ed4e2d8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 160140,
            "upload_time": "2024-02-01T20:45:47",
            "upload_time_iso_8601": "2024-02-01T20:45:47.656527Z",
            "url": "https://files.pythonhosted.org/packages/1b/52/6e984685d048f6728807c3fd9b8a6e3e3d51a06a4d6665d6e0102115455d/multidict-6.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76c03aa6238557ed1d235be70d9c3f86d63a835c421b76073b8ce06bf32725e8",
                "md5": "dd30e852d69eaa4d8a63fc98aecd98b2",
                "sha256": "e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "dd30e852d69eaa4d8a63fc98aecd98b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 156185,
            "upload_time": "2024-02-01T20:45:49",
            "upload_time_iso_8601": "2024-02-01T20:45:49.231340Z",
            "url": "https://files.pythonhosted.org/packages/76/c0/3aa6238557ed1d235be70d9c3f86d63a835c421b76073b8ce06bf32725e8/multidict-6.0.5-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "858202ed81023b5812582bf7c46e8e2868ffd6a29f8c313af1dd76e82e243c39",
                "md5": "1b098970fb025552770d18b52f9818b4",
                "sha256": "ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b098970fb025552770d18b52f9818b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 151518,
            "upload_time": "2024-02-01T20:45:52",
            "upload_time_iso_8601": "2024-02-01T20:45:52.272843Z",
            "url": "https://files.pythonhosted.org/packages/85/82/02ed81023b5812582bf7c46e8e2868ffd6a29f8c313af1dd76e82e243c39/multidict-6.0.5-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d800fd6eef9830046c063939cbf119c101898cbb611ea20301ae911b74caca19",
                "md5": "457ee1727833dc69e534ebcbc51c49e2",
                "sha256": "04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "457ee1727833dc69e534ebcbc51c49e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 25732,
            "upload_time": "2024-02-01T20:45:54",
            "upload_time_iso_8601": "2024-02-01T20:45:54.958583Z",
            "url": "https://files.pythonhosted.org/packages/d8/00/fd6eef9830046c063939cbf119c101898cbb611ea20301ae911b74caca19/multidict-6.0.5-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58a34d2c1b4d1859c89d9ce48a4ae410ee019485e324e484b0160afdba8cc42b",
                "md5": "d8c339a146abf1c02aaa738b184dc734",
                "sha256": "d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d8c339a146abf1c02aaa738b184dc734",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 28181,
            "upload_time": "2024-02-01T20:45:56",
            "upload_time_iso_8601": "2024-02-01T20:45:56.968039Z",
            "url": "https://files.pythonhosted.org/packages/58/a3/4d2c1b4d1859c89d9ce48a4ae410ee019485e324e484b0160afdba8cc42b/multidict-6.0.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "faa217e1e23c6be0a916219c5292f509360c345b5fa6beeb50d743203c27532c",
                "md5": "20135f8920e4ae112d0b08feb2027238",
                "sha256": "0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "20135f8920e4ae112d0b08feb2027238",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 9729,
            "upload_time": "2024-02-01T20:45:59",
            "upload_time_iso_8601": "2024-02-01T20:45:59.309531Z",
            "url": "https://files.pythonhosted.org/packages/fa/a2/17e1e23c6be0a916219c5292f509360c345b5fa6beeb50d743203c27532c/multidict-6.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f979722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836",
                "md5": "abcf9bf19365d06aa784de07da02115d",
                "sha256": "f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da"
            },
            "downloads": -1,
            "filename": "multidict-6.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "abcf9bf19365d06aa784de07da02115d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 59867,
            "upload_time": "2024-02-01T20:46:01",
            "upload_time_iso_8601": "2024-02-01T20:46:01.455081Z",
            "url": "https://files.pythonhosted.org/packages/f9/79/722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836/multidict-6.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-01 20:46:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aio-libs",
    "github_project": "multidict",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "multidict"
}
        
Elapsed time: 0.18016s