=========
multidict
=========
.. image:: https://github.com/aio-libs/multidict/actions/workflows/ci-cd.yml/badge.svg
:target: https://github.com/aio-libs/multidict/actions
: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: https://multidict.aio-libs.org
:alt: Read The Docs build status badge
.. image:: https://img.shields.io/pypi/pyversions/multidict.svg
:target: https://pypi.org/project/multidict
:alt: Python versions
.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
:target: https://matrix.to/#/%23aio-libs:matrix.org
:alt: Matrix Room — #aio-libs:matrix.org
.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
:target: https://matrix.to/#/%23aio-libs-space:matrix.org
:alt: Matrix Space — #aio-libs-space:matrix.org
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": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Andrew Svetlov",
"author_email": "andrew.svetlov@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/d6/be/504b89a5e9ca731cd47487e91c469064f8ae5af93b7259758dcfc2b9c848/multidict-6.1.0.tar.gz",
"platform": null,
"description": "=========\nmultidict\n=========\n\n.. image:: https://github.com/aio-libs/multidict/actions/workflows/ci-cd.yml/badge.svg\n :target: https://github.com/aio-libs/multidict/actions\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: https://multidict.aio-libs.org\n :alt: Read The Docs build status badge\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://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n :target: https://matrix.to/#/%23aio-libs:matrix.org\n :alt: Matrix Room \u2014 #aio-libs:matrix.org\n\n.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n :target: https://matrix.to/#/%23aio-libs-space:matrix.org\n :alt: Matrix Space \u2014 #aio-libs-space:matrix.org\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.1.0",
"project_urls": {
"CI: GitHub": "https://github.com/aio-libs/multidict/actions",
"Chat: Matrix": "https://matrix.to/#/#aio-libs:matrix.org",
"Chat: Matrix Space": "https://matrix.to/#/#aio-libs-space:matrix.org",
"Code of Conduct": "https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md",
"Coverage: codecov": "https://codecov.io/github/aio-libs/multidict",
"Docs: Changelog": "https://multidict.aio-libs.org/en/latest/changes/",
"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": "2968259dee7fd14cf56a17c554125e534f6274c2860159692a414d0b402b9a6d",
"md5": "e7f400d41a3760ce0eecc1c06ea8a48a",
"sha256": "3380252550e372e8511d49481bd836264c009adb826b23fefcc5dd3c69692f60"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "e7f400d41a3760ce0eecc1c06ea8a48a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 48628,
"upload_time": "2024-09-09T23:47:18",
"upload_time_iso_8601": "2024-09-09T23:47:18.278028Z",
"url": "https://files.pythonhosted.org/packages/29/68/259dee7fd14cf56a17c554125e534f6274c2860159692a414d0b402b9a6d/multidict-6.1.0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "507953ba256069fe5386a4a9e80d4e12857ced9de295baf3e20c68cdda746e04",
"md5": "89a64774f13eef4146145b1ea3c60d41",
"sha256": "99f826cbf970077383d7de805c0681799491cb939c25450b9b5b3ced03ca99f1"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "89a64774f13eef4146145b1ea3c60d41",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 29327,
"upload_time": "2024-09-09T23:47:20",
"upload_time_iso_8601": "2024-09-09T23:47:20.224955Z",
"url": "https://files.pythonhosted.org/packages/50/79/53ba256069fe5386a4a9e80d4e12857ced9de295baf3e20c68cdda746e04/multidict-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff1071f1379b05b196dae749b5ac062e87273e3f11634f447ebac12a571d90ae",
"md5": "380a39099dac54fe3a7e2bf08e5b18c4",
"sha256": "a114d03b938376557927ab23f1e950827c3b893ccb94b62fd95d430fd0e5cf53"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "380a39099dac54fe3a7e2bf08e5b18c4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 29689,
"upload_time": "2024-09-09T23:47:21",
"upload_time_iso_8601": "2024-09-09T23:47:21.667385Z",
"url": "https://files.pythonhosted.org/packages/ff/10/71f1379b05b196dae749b5ac062e87273e3f11634f447ebac12a571d90ae/multidict-6.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "714570bac4f87438ded36ad4793793c0095de6572d433d98575a5752629ef549",
"md5": "81e2d73a73220d2b7454bc8922f7d94e",
"sha256": "b1c416351ee6271b2f49b56ad7f308072f6f44b37118d69c2cad94f3fa8a40d5"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "81e2d73a73220d2b7454bc8922f7d94e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 126639,
"upload_time": "2024-09-09T23:47:23",
"upload_time_iso_8601": "2024-09-09T23:47:23.333719Z",
"url": "https://files.pythonhosted.org/packages/71/45/70bac4f87438ded36ad4793793c0095de6572d433d98575a5752629ef549/multidict-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80cf17f35b3b9509b4959303c05379c4bfb0d7dd05c3306039fc79cf035bbac0",
"md5": "05788f6eafc858c0af36516b80aed381",
"sha256": "6b5d83030255983181005e6cfbac1617ce9746b219bc2aad52201ad121226581"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "05788f6eafc858c0af36516b80aed381",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 134315,
"upload_time": "2024-09-09T23:47:24",
"upload_time_iso_8601": "2024-09-09T23:47:24.990821Z",
"url": "https://files.pythonhosted.org/packages/80/cf/17f35b3b9509b4959303c05379c4bfb0d7dd05c3306039fc79cf035bbac0/multidict-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef1f652d70ab5effb33c031510a3503d4d6efc5ec93153562f1ee0acdc895a57",
"md5": "81348b4426c91c2ffdb1a8fc9488fc42",
"sha256": "3e97b5e938051226dc025ec80980c285b053ffb1e25a3db2a3aa3bc046bf7f56"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "81348b4426c91c2ffdb1a8fc9488fc42",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 129471,
"upload_time": "2024-09-09T23:47:26",
"upload_time_iso_8601": "2024-09-09T23:47:26.305306Z",
"url": "https://files.pythonhosted.org/packages/ef/1f/652d70ab5effb33c031510a3503d4d6efc5ec93153562f1ee0acdc895a57/multidict-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6642dd6c4c681688c0165dea3975a6a4eab4944ea30f35000f8b8af1df3148c",
"md5": "0df105286bfbf483da7991ff7a3a5f79",
"sha256": "d618649d4e70ac6efcbba75be98b26ef5078faad23592f9b51ca492953012429"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0df105286bfbf483da7991ff7a3a5f79",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 124585,
"upload_time": "2024-09-09T23:47:27",
"upload_time_iso_8601": "2024-09-09T23:47:27.958349Z",
"url": "https://files.pythonhosted.org/packages/a6/64/2dd6c4c681688c0165dea3975a6a4eab4944ea30f35000f8b8af1df3148c/multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8756e6ee5459894c7e554b57ba88f7257dc3c3d2d379cb15baaa1e265b8c6165",
"md5": "4b2756aa93ff8f4e23b4c0eed503458b",
"sha256": "10524ebd769727ac77ef2278390fb0068d83f3acb7773792a5080f2b0abf7748"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4b2756aa93ff8f4e23b4c0eed503458b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 116957,
"upload_time": "2024-09-09T23:47:29",
"upload_time_iso_8601": "2024-09-09T23:47:29.376450Z",
"url": "https://files.pythonhosted.org/packages/87/56/e6ee5459894c7e554b57ba88f7257dc3c3d2d379cb15baaa1e265b8c6165/multidict-6.1.0-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": "369e616ce5e8d375c24b84f14fc263c7ef1d8d5e8ef529dbc0f1df8ce71bb5b8",
"md5": "5ec26cb692aadb71daa1aef8bec4f585",
"sha256": "ff3827aef427c89a25cc96ded1759271a93603aba9fb977a6d264648ebf989db"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5ec26cb692aadb71daa1aef8bec4f585",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 128609,
"upload_time": "2024-09-09T23:47:31",
"upload_time_iso_8601": "2024-09-09T23:47:31.038199Z",
"url": "https://files.pythonhosted.org/packages/36/9e/616ce5e8d375c24b84f14fc263c7ef1d8d5e8ef529dbc0f1df8ce71bb5b8/multidict-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c4f4783e48a38495d000f2124020dc96bacc806a4340345211b1ab6175a6cb4",
"md5": "a0768eb580163a65aea3aac7cd4e8832",
"sha256": "06809f4f0f7ab7ea2cabf9caca7d79c22c0758b58a71f9d32943ae13c7ace056"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a0768eb580163a65aea3aac7cd4e8832",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 123016,
"upload_time": "2024-09-09T23:47:32",
"upload_time_iso_8601": "2024-09-09T23:47:32.470703Z",
"url": "https://files.pythonhosted.org/packages/8c/4f/4783e48a38495d000f2124020dc96bacc806a4340345211b1ab6175a6cb4/multidict-6.1.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3eb34950551ab8fc39862ba5e9907dc821f896aa829b4524b4deefd3e12945ab",
"md5": "a7b6e5fdbd93eb0d2be6faa16a02234b",
"sha256": "f179dee3b863ab1c59580ff60f9d99f632f34ccb38bf67a33ec6b3ecadd0fd76"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "a7b6e5fdbd93eb0d2be6faa16a02234b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 133542,
"upload_time": "2024-09-09T23:47:34",
"upload_time_iso_8601": "2024-09-09T23:47:34.103306Z",
"url": "https://files.pythonhosted.org/packages/3e/b3/4950551ab8fc39862ba5e9907dc821f896aa829b4524b4deefd3e12945ab/multidict-6.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "964df0ce6ac9914168a2a71df117935bb1f1781916acdecbb43285e225b484b8",
"md5": "10e06604a1ecdd4751b9a4db890d72aa",
"sha256": "aaed8b0562be4a0876ee3b6946f6869b7bcdb571a5d1496683505944e268b160"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "10e06604a1ecdd4751b9a4db890d72aa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 130163,
"upload_time": "2024-09-09T23:47:35",
"upload_time_iso_8601": "2024-09-09T23:47:35.716743Z",
"url": "https://files.pythonhosted.org/packages/96/4d/f0ce6ac9914168a2a71df117935bb1f1781916acdecbb43285e225b484b8/multidict-6.1.0-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be7217c9f67e7542a49dd252c5ae50248607dfb780bcc03035907dafefb067e3",
"md5": "39ecc717f431a04bdb92dc5ec30fd3da",
"sha256": "3c8b88a2ccf5493b6c8da9076fb151ba106960a2df90c2633f342f120751a9e7"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "39ecc717f431a04bdb92dc5ec30fd3da",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 126832,
"upload_time": "2024-09-09T23:47:37",
"upload_time_iso_8601": "2024-09-09T23:47:37.116001Z",
"url": "https://files.pythonhosted.org/packages/be/72/17c9f67e7542a49dd252c5ae50248607dfb780bcc03035907dafefb067e3/multidict-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "719f72d719e248cbd755c8736c6d14780533a1606ffb3fbb0fbd77da9f0372da",
"md5": "bb4627921deb012ce4924e3d266c6f04",
"sha256": "4a9cb68166a34117d6646c0023c7b759bf197bee5ad4272f420a0141d7eb03a0"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "bb4627921deb012ce4924e3d266c6f04",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 26402,
"upload_time": "2024-09-09T23:47:38",
"upload_time_iso_8601": "2024-09-09T23:47:38.863228Z",
"url": "https://files.pythonhosted.org/packages/71/9f/72d719e248cbd755c8736c6d14780533a1606ffb3fbb0fbd77da9f0372da/multidict-6.1.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "045ad88cd5d00a184e1ddffc82aa2e6e915164a6d2641ed3606e766b5d2f275a",
"md5": "8bd1224982a2ae79657072edaa339279",
"sha256": "20b9b5fbe0b88d0bdef2012ef7dee867f874b72528cf1d08f1d59b0e3850129d"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "8bd1224982a2ae79657072edaa339279",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 28800,
"upload_time": "2024-09-09T23:47:40",
"upload_time_iso_8601": "2024-09-09T23:47:40.056972Z",
"url": "https://files.pythonhosted.org/packages/04/5a/d88cd5d00a184e1ddffc82aa2e6e915164a6d2641ed3606e766b5d2f275a/multidict-6.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9313df3505a46d0cd08428e4c8169a196131d1b0c4b515c3649829258843dde6",
"md5": "2cf89b1f2bf8f8a9c8061c84c3f52afa",
"sha256": "3efe2c2cb5763f2f1b275ad2bf7a287d3f7ebbef35648a9726e3b69284a4f3d6"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "2cf89b1f2bf8f8a9c8061c84c3f52afa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 48570,
"upload_time": "2024-09-09T23:47:41",
"upload_time_iso_8601": "2024-09-09T23:47:41.360617Z",
"url": "https://files.pythonhosted.org/packages/93/13/df3505a46d0cd08428e4c8169a196131d1b0c4b515c3649829258843dde6/multidict-6.1.0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f0e1a215908bfae1343cdb72f805366592bdd60487b4232d039c437fe8f5013d",
"md5": "d4307ccf57c8c10ffd9c01bbc5bd145f",
"sha256": "c7053d3b0353a8b9de430a4f4b4268ac9a4fb3481af37dfe49825bf45ca24156"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d4307ccf57c8c10ffd9c01bbc5bd145f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 29316,
"upload_time": "2024-09-09T23:47:42",
"upload_time_iso_8601": "2024-09-09T23:47:42.612640Z",
"url": "https://files.pythonhosted.org/packages/f0/e1/a215908bfae1343cdb72f805366592bdd60487b4232d039c437fe8f5013d/multidict-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "700f6dc70ddf5d442702ed74f298d69977f904960b82368532c88e854b79f72b",
"md5": "dabb58ca324081a082697280f4124e19",
"sha256": "27e5fc84ccef8dfaabb09d82b7d179c7cf1a3fbc8a966f8274fcb4ab2eb4cadb"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dabb58ca324081a082697280f4124e19",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 29640,
"upload_time": "2024-09-09T23:47:44",
"upload_time_iso_8601": "2024-09-09T23:47:44.028704Z",
"url": "https://files.pythonhosted.org/packages/70/0f/6dc70ddf5d442702ed74f298d69977f904960b82368532c88e854b79f72b/multidict-6.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d86d9c87b73a13d1cdea30b321ef4b3824449866bd7f7127eceed066ccb9b9ff",
"md5": "eda8caa3a155956ee0ae198d13eeae0f",
"sha256": "0e2b90b43e696f25c62656389d32236e049568b39320e2735d51f08fd362761b"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "eda8caa3a155956ee0ae198d13eeae0f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 131067,
"upload_time": "2024-09-09T23:47:45",
"upload_time_iso_8601": "2024-09-09T23:47:45.617729Z",
"url": "https://files.pythonhosted.org/packages/d8/6d/9c87b73a13d1cdea30b321ef4b3824449866bd7f7127eceed066ccb9b9ff/multidict-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc1e1b34154fef373371fd6c65125b3d42ff5f56c7ccc6bfff91b9b3c60ae9e0",
"md5": "80cc881d2fdf678688b27b297e90676f",
"sha256": "d83a047959d38a7ff552ff94be767b7fd79b831ad1cd9920662db05fec24fe72"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "80cc881d2fdf678688b27b297e90676f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 138507,
"upload_time": "2024-09-09T23:47:47",
"upload_time_iso_8601": "2024-09-09T23:47:47.429767Z",
"url": "https://files.pythonhosted.org/packages/cc/1e/1b34154fef373371fd6c65125b3d42ff5f56c7ccc6bfff91b9b3c60ae9e0/multidict-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbe00bc6b2bac6e461822b5f575eae85da6aae76d0e2a79b6665d6206b8e2e48",
"md5": "3b0c252e2b4193e9a19e405cf6696104",
"sha256": "d1a9dd711d0877a1ece3d2e4fea11a8e75741ca21954c919406b44e7cf971304"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3b0c252e2b4193e9a19e405cf6696104",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 133905,
"upload_time": "2024-09-09T23:47:48",
"upload_time_iso_8601": "2024-09-09T23:47:48.878195Z",
"url": "https://files.pythonhosted.org/packages/fb/e0/0bc6b2bac6e461822b5f575eae85da6aae76d0e2a79b6665d6206b8e2e48/multidict-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "baaf73d13b918071ff9b2205fcf773d316e0f8fefb4ec65354bbcf0b10908cc6",
"md5": "09d25101caa58b5bf0c4a82f37c3ad85",
"sha256": "ec2abea24d98246b94913b76a125e855eb5c434f7c46546046372fe60f666351"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "09d25101caa58b5bf0c4a82f37c3ad85",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 129004,
"upload_time": "2024-09-09T23:47:50",
"upload_time_iso_8601": "2024-09-09T23:47:50.124164Z",
"url": "https://files.pythonhosted.org/packages/ba/af/73d13b918071ff9b2205fcf773d316e0f8fefb4ec65354bbcf0b10908cc6/multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "742123960627b00ed39643302d81bcda44c9444ebcdc04ee5bedd0757513f259",
"md5": "8067f7c4913426d4ecf266ca251408bd",
"sha256": "4867cafcbc6585e4b678876c489b9273b13e9fff9f6d6d66add5e15d11d926cb"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8067f7c4913426d4ecf266ca251408bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 121308,
"upload_time": "2024-09-09T23:47:51",
"upload_time_iso_8601": "2024-09-09T23:47:51.970712Z",
"url": "https://files.pythonhosted.org/packages/74/21/23960627b00ed39643302d81bcda44c9444ebcdc04ee5bedd0757513f259/multidict-6.1.0-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": "8b5ccf282263ffce4a596ed0bb2aa1a1dddfe1996d6a62d08842a8d4b33dca13",
"md5": "44810df417a8a40aa44c65a07ddb5677",
"sha256": "5b48204e8d955c47c55b72779802b219a39acc3ee3d0116d5080c388970b76e3"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "44810df417a8a40aa44c65a07ddb5677",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 132608,
"upload_time": "2024-09-09T23:47:53",
"upload_time_iso_8601": "2024-09-09T23:47:53.201295Z",
"url": "https://files.pythonhosted.org/packages/8b/5c/cf282263ffce4a596ed0bb2aa1a1dddfe1996d6a62d08842a8d4b33dca13/multidict-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d73e97e778c041c72063f42b290888daff008d3ab1427f5b09b714f5a8eff294",
"md5": "6d9c760c0eaa4363a5557ad776ae9850",
"sha256": "d8fff389528cad1618fb4b26b95550327495462cd745d879a8c7c2115248e399"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6d9c760c0eaa4363a5557ad776ae9850",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 127029,
"upload_time": "2024-09-09T23:47:54",
"upload_time_iso_8601": "2024-09-09T23:47:54.435020Z",
"url": "https://files.pythonhosted.org/packages/d7/3e/97e778c041c72063f42b290888daff008d3ab1427f5b09b714f5a8eff294/multidict-6.1.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47ac3efb7bfe2f3aefcf8d103e9a7162572f01936155ab2f7ebcc7c255a23212",
"md5": "4e26ddcb87feff43a7c75e3adfdbadd5",
"sha256": "a7a9541cd308eed5e30318430a9c74d2132e9a8cb46b901326272d780bf2d423"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "4e26ddcb87feff43a7c75e3adfdbadd5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 137594,
"upload_time": "2024-09-09T23:47:55",
"upload_time_iso_8601": "2024-09-09T23:47:55.659882Z",
"url": "https://files.pythonhosted.org/packages/47/ac/3efb7bfe2f3aefcf8d103e9a7162572f01936155ab2f7ebcc7c255a23212/multidict-6.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "429b6c6e9e8dc4f915fc90a9b7798c44a30773dea2995fdcb619870e705afe2b",
"md5": "5e7d424316210e011808f66823dfd3c8",
"sha256": "da1758c76f50c39a2efd5e9859ce7d776317eb1dd34317c8152ac9251fc574a3"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "5e7d424316210e011808f66823dfd3c8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 134556,
"upload_time": "2024-09-09T23:47:56",
"upload_time_iso_8601": "2024-09-09T23:47:56.980696Z",
"url": "https://files.pythonhosted.org/packages/42/9b/6c6e9e8dc4f915fc90a9b7798c44a30773dea2995fdcb619870e705afe2b/multidict-6.1.0-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d108e881743b26aaf718379a14ac58572a240e8293a1c9d68e1418fb11c0f90",
"md5": "83851a558381bfc8eb6bda8253dc39ab",
"sha256": "c943a53e9186688b45b323602298ab727d8865d8c9ee0b17f8d62d14b56f0753"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "83851a558381bfc8eb6bda8253dc39ab",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 130993,
"upload_time": "2024-09-09T23:47:58",
"upload_time_iso_8601": "2024-09-09T23:47:58.163330Z",
"url": "https://files.pythonhosted.org/packages/1d/10/8e881743b26aaf718379a14ac58572a240e8293a1c9d68e1418fb11c0f90/multidict-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45843eb91b4b557442802d058a7579e864b329968c8d0ea57d907e7023c677f2",
"md5": "45e2c13771ddf8d0a9d037d07269365a",
"sha256": "90f8717cb649eea3504091e640a1b8568faad18bd4b9fcd692853a04475a4b80"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "45e2c13771ddf8d0a9d037d07269365a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 26405,
"upload_time": "2024-09-09T23:47:59",
"upload_time_iso_8601": "2024-09-09T23:47:59.391407Z",
"url": "https://files.pythonhosted.org/packages/45/84/3eb91b4b557442802d058a7579e864b329968c8d0ea57d907e7023c677f2/multidict-6.1.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f0bad879847ecbf6d27e90a6eabb7eff6b62c129eefe617ea45eae7c1f0aead",
"md5": "11f8c7d078142618b8bb2fe01f3992c2",
"sha256": "82176036e65644a6cc5bd619f65f6f19781e8ec2e5330f51aa9ada7504cc1926"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "11f8c7d078142618b8bb2fe01f3992c2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 28795,
"upload_time": "2024-09-09T23:48:00",
"upload_time_iso_8601": "2024-09-09T23:48:00.359544Z",
"url": "https://files.pythonhosted.org/packages/9f/0b/ad879847ecbf6d27e90a6eabb7eff6b62c129eefe617ea45eae7c1f0aead/multidict-6.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd1692057c74ba3b96d5e211b553895cd6dc7cc4d1e43d9ab8fafc727681ef71",
"md5": "04b09629fd7e3f5c98b470fa814c7fda",
"sha256": "b04772ed465fa3cc947db808fa306d79b43e896beb677a56fb2347ca1a49c1fa"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "04b09629fd7e3f5c98b470fa814c7fda",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 48713,
"upload_time": "2024-09-09T23:48:01",
"upload_time_iso_8601": "2024-09-09T23:48:01.893019Z",
"url": "https://files.pythonhosted.org/packages/fd/16/92057c74ba3b96d5e211b553895cd6dc7cc4d1e43d9ab8fafc727681ef71/multidict-6.1.0-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "943d37d1b8893ae79716179540b89fc6a0ee56b4a65fcc0d63535c6f5d96f217",
"md5": "3fb15f4e4cdac2e40243dbfa23a3b28d",
"sha256": "6180c0ae073bddeb5a97a38c03f30c233e0a4d39cd86166251617d1bbd0af436"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3fb15f4e4cdac2e40243dbfa23a3b28d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 29516,
"upload_time": "2024-09-09T23:48:03",
"upload_time_iso_8601": "2024-09-09T23:48:03.463779Z",
"url": "https://files.pythonhosted.org/packages/94/3d/37d1b8893ae79716179540b89fc6a0ee56b4a65fcc0d63535c6f5d96f217/multidict-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a212adb6b3200c363062f805275b4c1e656be2b3681aada66c80129932ff0bae",
"md5": "1ba84c6abb4225ff4463064b77ce2ad9",
"sha256": "071120490b47aa997cca00666923a83f02c7fbb44f71cf7f136df753f7fa8761"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1ba84c6abb4225ff4463064b77ce2ad9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 29557,
"upload_time": "2024-09-09T23:48:04",
"upload_time_iso_8601": "2024-09-09T23:48:04.905040Z",
"url": "https://files.pythonhosted.org/packages/a2/12/adb6b3200c363062f805275b4c1e656be2b3681aada66c80129932ff0bae/multidict-6.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47e9604bb05e6e5bce1e6a5cf80a474e0f072e80d8ac105f1b994a53e0b28c42",
"md5": "8a5a7e6b4cab0e173eeb18130ef94de7",
"sha256": "50b3a2710631848991d0bf7de077502e8994c804bb805aeb2925a981de58ec2e"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8a5a7e6b4cab0e173eeb18130ef94de7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 130170,
"upload_time": "2024-09-09T23:48:06",
"upload_time_iso_8601": "2024-09-09T23:48:06.862260Z",
"url": "https://files.pythonhosted.org/packages/47/e9/604bb05e6e5bce1e6a5cf80a474e0f072e80d8ac105f1b994a53e0b28c42/multidict-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e139efa50801785eccbf7086b3c83b71a4fb501a4d43549c2f2f80b8787d69f",
"md5": "434157cb4afe0793ac2bd8c4406924e6",
"sha256": "b58c621844d55e71c1b7f7c498ce5aa6985d743a1a59034c57a905b3f153c1ef"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "434157cb4afe0793ac2bd8c4406924e6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 134836,
"upload_time": "2024-09-09T23:48:08",
"upload_time_iso_8601": "2024-09-09T23:48:08.537504Z",
"url": "https://files.pythonhosted.org/packages/7e/13/9efa50801785eccbf7086b3c83b71a4fb501a4d43549c2f2f80b8787d69f/multidict-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf0f93808b765192780d117814a6dfcc2e75de6dcc610009ad408b8814dca3ba",
"md5": "ac3eaafbe85004e261acb9f6e9630263",
"sha256": "55b6d90641869892caa9ca42ff913f7ff1c5ece06474fbd32fb2cf6834726c95"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ac3eaafbe85004e261acb9f6e9630263",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 133475,
"upload_time": "2024-09-09T23:48:09",
"upload_time_iso_8601": "2024-09-09T23:48:09.865768Z",
"url": "https://files.pythonhosted.org/packages/bf/0f/93808b765192780d117814a6dfcc2e75de6dcc610009ad408b8814dca3ba/multidict-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3c8529101d7176fe7dfe1d99604e48d69c5dfdcadb4f06561f465c8ef12b4df",
"md5": "7d8a75fc646c666ae345f963ac3a6bd2",
"sha256": "4b820514bfc0b98a30e3d85462084779900347e4d49267f747ff54060cc33925"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7d8a75fc646c666ae345f963ac3a6bd2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 131049,
"upload_time": "2024-09-09T23:48:11",
"upload_time_iso_8601": "2024-09-09T23:48:11.115457Z",
"url": "https://files.pythonhosted.org/packages/d3/c8/529101d7176fe7dfe1d99604e48d69c5dfdcadb4f06561f465c8ef12b4df/multidict-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca0cfc85b439014d5a58063e19c3a158a889deec399d47b5269a0f3b6a2e28bc",
"md5": "90871552ff2d7db863dc9a144cf62a90",
"sha256": "10a9b09aba0c5b48c53761b7c720aaaf7cf236d5fe394cd399c7ba662d5f9966"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "90871552ff2d7db863dc9a144cf62a90",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 120370,
"upload_time": "2024-09-09T23:48:12",
"upload_time_iso_8601": "2024-09-09T23:48:12.780023Z",
"url": "https://files.pythonhosted.org/packages/ca/0c/fc85b439014d5a58063e19c3a158a889deec399d47b5269a0f3b6a2e28bc/multidict-6.1.0-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": "db46d4416eb20176492d2258fbd47b4abe729ff3b6e9c829ea4236f93c865089",
"md5": "2020f9e98740f627bee014f2adb8ba64",
"sha256": "1e16bf3e5fc9f44632affb159d30a437bfe286ce9e02754759be5536b169b305"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2020f9e98740f627bee014f2adb8ba64",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 125178,
"upload_time": "2024-09-09T23:48:14",
"upload_time_iso_8601": "2024-09-09T23:48:14.295710Z",
"url": "https://files.pythonhosted.org/packages/db/46/d4416eb20176492d2258fbd47b4abe729ff3b6e9c829ea4236f93c865089/multidict-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b4673697ad7ec521df7de5531a32780bbfd908ded0643cbe457f981a701457c",
"md5": "866c5139f7b164911fcf69015c4e90e2",
"sha256": "76f364861c3bfc98cbbcbd402d83454ed9e01a5224bb3a28bf70002a230f73e2"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "866c5139f7b164911fcf69015c4e90e2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 119567,
"upload_time": "2024-09-09T23:48:16",
"upload_time_iso_8601": "2024-09-09T23:48:16.284304Z",
"url": "https://files.pythonhosted.org/packages/5b/46/73697ad7ec521df7de5531a32780bbfd908ded0643cbe457f981a701457c/multidict-6.1.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cded51f060e2cb0e7635329fa6ff930aa5cffa17f4c7f5c6c3ddc3500708e2f2",
"md5": "90dd06b920e19c689b08900ff100cd94",
"sha256": "820c661588bd01a0aa62a1283f20d2be4281b086f80dad9e955e690c75fb54a2"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "90dd06b920e19c689b08900ff100cd94",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 129822,
"upload_time": "2024-09-09T23:48:17",
"upload_time_iso_8601": "2024-09-09T23:48:17.835107Z",
"url": "https://files.pythonhosted.org/packages/cd/ed/51f060e2cb0e7635329fa6ff930aa5cffa17f4c7f5c6c3ddc3500708e2f2/multidict-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df9eee7d1954b1331da3eddea0c4e08d9142da5f14b1321c7301f5014f49d492",
"md5": "49d86c7974d13481b957ff199519d156",
"sha256": "0e5f362e895bc5b9e67fe6e4ded2492d8124bdf817827f33c5b46c2fe3ffaca6"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "49d86c7974d13481b957ff199519d156",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 128656,
"upload_time": "2024-09-09T23:48:19",
"upload_time_iso_8601": "2024-09-09T23:48:19.576797Z",
"url": "https://files.pythonhosted.org/packages/df/9e/ee7d1954b1331da3eddea0c4e08d9142da5f14b1321c7301f5014f49d492/multidict-6.1.0-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77008538f11e3356b5d95fa4b024aa566cde7a38aa7a5f08f4912b32a037c5dc",
"md5": "36b5bcadae6a0810b40bec4df6a13cc4",
"sha256": "3ec660d19bbc671e3a6443325f07263be452c453ac9e512f5eb935e7d4ac28b3"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "36b5bcadae6a0810b40bec4df6a13cc4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 125360,
"upload_time": "2024-09-09T23:48:20",
"upload_time_iso_8601": "2024-09-09T23:48:20.957921Z",
"url": "https://files.pythonhosted.org/packages/77/00/8538f11e3356b5d95fa4b024aa566cde7a38aa7a5f08f4912b32a037c5dc/multidict-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be055d334c1f2462d43fec2363cd00b1c44c93a78c3925d952e9a71caf662e96",
"md5": "db4cc66616a263c644314646c8308334",
"sha256": "58130ecf8f7b8112cdb841486404f1282b9c86ccb30d3519faf301b2e5659133"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "db4cc66616a263c644314646c8308334",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 26382,
"upload_time": "2024-09-09T23:48:22",
"upload_time_iso_8601": "2024-09-09T23:48:22.351012Z",
"url": "https://files.pythonhosted.org/packages/be/05/5d334c1f2462d43fec2363cd00b1c44c93a78c3925d952e9a71caf662e96/multidict-6.1.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a3bff332a13486b1ed0496d624bcc7e8357bb8053823e8cd4b9a18edc1d97e73",
"md5": "20b3c6a03691b948cfa839f267da12f0",
"sha256": "188215fc0aafb8e03341995e7c4797860181562380f81ed0a87ff455b70bf1f1"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "20b3c6a03691b948cfa839f267da12f0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 28529,
"upload_time": "2024-09-09T23:48:23",
"upload_time_iso_8601": "2024-09-09T23:48:23.478524Z",
"url": "https://files.pythonhosted.org/packages/a3/bf/f332a13486b1ed0496d624bcc7e8357bb8053823e8cd4b9a18edc1d97e73/multidict-6.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22671c7c0f39fe069aa4e5d794f323be24bf4d33d62d2a348acdb7991f8f30db",
"md5": "6f9f4137ca20f5aac2119875ab30022c",
"sha256": "d569388c381b24671589335a3be6e1d45546c2988c2ebe30fdcada8457a31008"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "6f9f4137ca20f5aac2119875ab30022c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 48771,
"upload_time": "2024-09-09T23:48:24",
"upload_time_iso_8601": "2024-09-09T23:48:24.594777Z",
"url": "https://files.pythonhosted.org/packages/22/67/1c7c0f39fe069aa4e5d794f323be24bf4d33d62d2a348acdb7991f8f30db/multidict-6.1.0-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c25c186ee7b212bdf0df2519eacfb1981a017bda34392c67542c274651daf23",
"md5": "0e7063a758044bddf71e243336519c75",
"sha256": "052e10d2d37810b99cc170b785945421141bf7bb7d2f8799d431e7db229c385f"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "0e7063a758044bddf71e243336519c75",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 29533,
"upload_time": "2024-09-09T23:48:26",
"upload_time_iso_8601": "2024-09-09T23:48:26.187169Z",
"url": "https://files.pythonhosted.org/packages/3c/25/c186ee7b212bdf0df2519eacfb1981a017bda34392c67542c274651daf23/multidict-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "675e04575fd837e0958e324ca035b339cea174554f6f641d3fb2b4f2e7ff44a2",
"md5": "8ed640b4a7f7a729d2eccc78749603b8",
"sha256": "f90c822a402cb865e396a504f9fc8173ef34212a342d92e362ca498cad308e28"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8ed640b4a7f7a729d2eccc78749603b8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 29595,
"upload_time": "2024-09-09T23:48:27",
"upload_time_iso_8601": "2024-09-09T23:48:27.305677Z",
"url": "https://files.pythonhosted.org/packages/67/5e/04575fd837e0958e324ca035b339cea174554f6f641d3fb2b4f2e7ff44a2/multidict-6.1.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3b2e56388f86663810c07cfe4a3c3d87227f3811eeb2d08450b9e5d19d78876",
"md5": "2ce24e7883061414d01350ac7b604f52",
"sha256": "b225d95519a5bf73860323e633a664b0d85ad3d5bede6d30d95b35d4dfe8805b"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2ce24e7883061414d01350ac7b604f52",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 130094,
"upload_time": "2024-09-09T23:48:28",
"upload_time_iso_8601": "2024-09-09T23:48:28.544221Z",
"url": "https://files.pythonhosted.org/packages/d3/b2/e56388f86663810c07cfe4a3c3d87227f3811eeb2d08450b9e5d19d78876/multidict-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cee30ae9b4186a644d284543d55d491fbd4239b015d36b23fea43b4c94f7052",
"md5": "66c4f47749031af84470aeb892cc905b",
"sha256": "23bfd518810af7de1116313ebd9092cb9aa629beb12f6ed631ad53356ed6b86c"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "66c4f47749031af84470aeb892cc905b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 134876,
"upload_time": "2024-09-09T23:48:30",
"upload_time_iso_8601": "2024-09-09T23:48:30.098202Z",
"url": "https://files.pythonhosted.org/packages/6c/ee/30ae9b4186a644d284543d55d491fbd4239b015d36b23fea43b4c94f7052/multidict-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84c770461c13ba8ce3c779503c70ec9d0345ae84de04521c1f45a04d5f48943d",
"md5": "dc9702e65cb84f58718470042e7ffb2e",
"sha256": "5c09fcfdccdd0b57867577b719c69e347a436b86cd83747f179dbf0cc0d4c1f3"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "dc9702e65cb84f58718470042e7ffb2e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 133500,
"upload_time": "2024-09-09T23:48:31",
"upload_time_iso_8601": "2024-09-09T23:48:31.793437Z",
"url": "https://files.pythonhosted.org/packages/84/c7/70461c13ba8ce3c779503c70ec9d0345ae84de04521c1f45a04d5f48943d/multidict-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a9f002af221253f10f99959561123fae676148dd730e2daa2cd053846a58507",
"md5": "7dcd9314547a3db67709d858283d079a",
"sha256": "bf6bea52ec97e95560af5ae576bdac3aa3aae0b6758c6efa115236d9e07dae44"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7dcd9314547a3db67709d858283d079a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 131099,
"upload_time": "2024-09-09T23:48:33",
"upload_time_iso_8601": "2024-09-09T23:48:33.193989Z",
"url": "https://files.pythonhosted.org/packages/4a/9f/002af221253f10f99959561123fae676148dd730e2daa2cd053846a58507/multidict-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8242d1c7a7301d52af79d88548a97e297f9d99c961ad76bbe6f67442bb77f097",
"md5": "8548131e57eb8a0187df0aa212ab7881",
"sha256": "57feec87371dbb3520da6192213c7d6fc892d5589a93db548331954de8248fd2"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8548131e57eb8a0187df0aa212ab7881",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 120403,
"upload_time": "2024-09-09T23:48:34",
"upload_time_iso_8601": "2024-09-09T23:48:34.942126Z",
"url": "https://files.pythonhosted.org/packages/82/42/d1c7a7301d52af79d88548a97e297f9d99c961ad76bbe6f67442bb77f097/multidict-6.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68f3471985c2c7ac707547553e8f37cff5158030d36bdec4414cb825fbaa5327",
"md5": "c6ab0ef555fa281683514b5afe8a35ca",
"sha256": "0c3f390dc53279cbc8ba976e5f8035eab997829066756d811616b652b00a23a3"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c6ab0ef555fa281683514b5afe8a35ca",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 125348,
"upload_time": "2024-09-09T23:48:36",
"upload_time_iso_8601": "2024-09-09T23:48:36.222644Z",
"url": "https://files.pythonhosted.org/packages/68/f3/471985c2c7ac707547553e8f37cff5158030d36bdec4414cb825fbaa5327/multidict-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "672ce6df05c77e0e433c214ec1d21ddd203d9a4770a1f2866a8ca40a545869a0",
"md5": "68599dc097ead5685072e8abe67ca95a",
"sha256": "59bfeae4b25ec05b34f1956eaa1cb38032282cd4dfabc5056d0a1ec4d696d3aa"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "68599dc097ead5685072e8abe67ca95a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 119673,
"upload_time": "2024-09-09T23:48:37",
"upload_time_iso_8601": "2024-09-09T23:48:37.588771Z",
"url": "https://files.pythonhosted.org/packages/67/2c/e6df05c77e0e433c214ec1d21ddd203d9a4770a1f2866a8ca40a545869a0/multidict-6.1.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5cdbc8608fff06239c9fb333f9db7743a1b2eafe98c2666c9a196e867a3a0a4",
"md5": "7ed66b8d6eea26abe5386a60b1fcc5b7",
"sha256": "b2f59caeaf7632cc633b5cf6fc449372b83bbdf0da4ae04d5be36118e46cc0aa"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "7ed66b8d6eea26abe5386a60b1fcc5b7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 129927,
"upload_time": "2024-09-09T23:48:39",
"upload_time_iso_8601": "2024-09-09T23:48:39.128921Z",
"url": "https://files.pythonhosted.org/packages/c5/cd/bc8608fff06239c9fb333f9db7743a1b2eafe98c2666c9a196e867a3a0a4/multidict-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "448e281b69b7bc84fc963a44dc6e0bbcc7150e517b91df368a27834299a526ac",
"md5": "de7f77734daae50939c2d8b77ad29252",
"sha256": "37bb93b2178e02b7b618893990941900fd25b6b9ac0fa49931a40aecdf083fe4"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "de7f77734daae50939c2d8b77ad29252",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 128711,
"upload_time": "2024-09-09T23:48:40",
"upload_time_iso_8601": "2024-09-09T23:48:40.550835Z",
"url": "https://files.pythonhosted.org/packages/44/8e/281b69b7bc84fc963a44dc6e0bbcc7150e517b91df368a27834299a526ac/multidict-6.1.0-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12a463e7cd38ed29dd9f1881d5119f272c898ca92536cdb53ffe0843197f6c85",
"md5": "e3a6ffc274758402b5995f48c0c3fd01",
"sha256": "4e9f48f58c2c523d5a06faea47866cd35b32655c46b443f163d08c6d0ddb17d6"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e3a6ffc274758402b5995f48c0c3fd01",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 125519,
"upload_time": "2024-09-09T23:48:42",
"upload_time_iso_8601": "2024-09-09T23:48:42.446369Z",
"url": "https://files.pythonhosted.org/packages/12/a4/63e7cd38ed29dd9f1881d5119f272c898ca92536cdb53ffe0843197f6c85/multidict-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38e04f5855037a72cd8a7a2f60a3952d9aa45feedb37ae7831642102604e8a37",
"md5": "f5c3d6954fa049e287ad81b4f27d06bb",
"sha256": "3a37ffb35399029b45c6cc33640a92bef403c9fd388acce75cdc88f58bd19a81"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "f5c3d6954fa049e287ad81b4f27d06bb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 26426,
"upload_time": "2024-09-09T23:48:43",
"upload_time_iso_8601": "2024-09-09T23:48:43.936549Z",
"url": "https://files.pythonhosted.org/packages/38/e0/4f5855037a72cd8a7a2f60a3952d9aa45feedb37ae7831642102604e8a37/multidict-6.1.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ea517ee3a4db1e310b7405f5d25834460073a8ccd86198ce044dfaf69eac073",
"md5": "aa6745d117795fc7bc05a6980688ecac",
"sha256": "e9aa71e15d9d9beaad2c6b9319edcdc0a49a43ef5c0a4c8265ca9ee7d6c67774"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "aa6745d117795fc7bc05a6980688ecac",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 28531,
"upload_time": "2024-09-09T23:48:45",
"upload_time_iso_8601": "2024-09-09T23:48:45.122842Z",
"url": "https://files.pythonhosted.org/packages/7e/a5/17ee3a4db1e310b7405f5d25834460073a8ccd86198ce044dfaf69eac073/multidict-6.1.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e6aaf41f3aaf5f00fd86cc7d470a2f5b25299b0c84691163b8757f4a1a205f2",
"md5": "07ae3e87df9f8188f6365184979f0153",
"sha256": "db7457bac39421addd0c8449933ac32d8042aae84a14911a757ae6ca3eef1392"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "07ae3e87df9f8188f6365184979f0153",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 48597,
"upload_time": "2024-09-09T23:48:46",
"upload_time_iso_8601": "2024-09-09T23:48:46.391633Z",
"url": "https://files.pythonhosted.org/packages/3e/6a/af41f3aaf5f00fd86cc7d470a2f5b25299b0c84691163b8757f4a1a205f2/multidict-6.1.0-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9d63d4082760ed11b05734f8bf32a0615b99e7d9d2b3730ad698a4d7377c00a",
"md5": "2b7a3a7d844ab0f467a671d29f3287ce",
"sha256": "d094ddec350a2fb899fec68d8353c78233debde9b7d8b4beeafa70825f1c281a"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2b7a3a7d844ab0f467a671d29f3287ce",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 29338,
"upload_time": "2024-09-09T23:48:47",
"upload_time_iso_8601": "2024-09-09T23:48:47.891694Z",
"url": "https://files.pythonhosted.org/packages/d9/d6/3d4082760ed11b05734f8bf32a0615b99e7d9d2b3730ad698a4d7377c00a/multidict-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d7f5d1ce7f47d44393d429922910afbe88fcd29ee3069babbb47507a4c3a7ea",
"md5": "cdd4ed54a4c495df72fd68a7bf9ab45e",
"sha256": "5845c1fd4866bb5dd3125d89b90e57ed3138241540897de748cdf19de8a2fca2"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cdd4ed54a4c495df72fd68a7bf9ab45e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 29562,
"upload_time": "2024-09-09T23:48:49",
"upload_time_iso_8601": "2024-09-09T23:48:49.254276Z",
"url": "https://files.pythonhosted.org/packages/9d/7f/5d1ce7f47d44393d429922910afbe88fcd29ee3069babbb47507a4c3a7ea/multidict-6.1.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ceecc425257671af9308a9b626e2e21f7f43841616e4551de94eb3c92aca75b2",
"md5": "e4e42bf1a1f30ab0ec8aad750eb2459b",
"sha256": "9079dfc6a70abe341f521f78405b8949f96db48da98aeb43f9907f342f627cdc"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e4e42bf1a1f30ab0ec8aad750eb2459b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 130980,
"upload_time": "2024-09-09T23:48:50",
"upload_time_iso_8601": "2024-09-09T23:48:50.606817Z",
"url": "https://files.pythonhosted.org/packages/ce/ec/c425257671af9308a9b626e2e21f7f43841616e4551de94eb3c92aca75b2/multidict-6.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8d7d4220ad2633a89b314593e9b85b5bc9287a7c563c7f9108a4a68d9da5374",
"md5": "a33b13732a078f83c7f03d0de7f36fce",
"sha256": "3914f5aaa0f36d5d60e8ece6a308ee1c9784cd75ec8151062614657a114c4478"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a33b13732a078f83c7f03d0de7f36fce",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 136694,
"upload_time": "2024-09-09T23:48:52",
"upload_time_iso_8601": "2024-09-09T23:48:52.042096Z",
"url": "https://files.pythonhosted.org/packages/d8/d7/d4220ad2633a89b314593e9b85b5bc9287a7c563c7f9108a4a68d9da5374/multidict-6.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a12a13e554db5830c8d40185a2e22aa8325516a5de9634c3fb2caf3886a829b3",
"md5": "5497de134f8cad196225ad991885c02e",
"sha256": "c08be4f460903e5a9d0f76818db3250f12e9c344e79314d1d570fc69d7f4eae4"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5497de134f8cad196225ad991885c02e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 131616,
"upload_time": "2024-09-09T23:48:54",
"upload_time_iso_8601": "2024-09-09T23:48:54.283247Z",
"url": "https://files.pythonhosted.org/packages/a1/2a/13e554db5830c8d40185a2e22aa8325516a5de9634c3fb2caf3886a829b3/multidict-6.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ea983692e37d8152f104333132105b67100aabfb2e96a87f6bed67f566035a7",
"md5": "3d98b6dd994cd9bf801cfa69e139f756",
"sha256": "d093be959277cb7dee84b801eb1af388b6ad3ca6a6b6bf1ed7585895789d027d"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3d98b6dd994cd9bf801cfa69e139f756",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 129664,
"upload_time": "2024-09-09T23:48:55",
"upload_time_iso_8601": "2024-09-09T23:48:55.785884Z",
"url": "https://files.pythonhosted.org/packages/2e/a9/83692e37d8152f104333132105b67100aabfb2e96a87f6bed67f566035a7/multidict-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc1c1718cd518fb9da7e8890d9d1611c1af0ea5e60f68ff415d026e38401ed36",
"md5": "342b082c0b9c635a47b7f83441a8cd20",
"sha256": "3702ea6872c5a2a4eeefa6ffd36b042e9773f05b1f37ae3ef7264b1163c2dcf6"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "342b082c0b9c635a47b7f83441a8cd20",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 121855,
"upload_time": "2024-09-09T23:48:57",
"upload_time_iso_8601": "2024-09-09T23:48:57.333663Z",
"url": "https://files.pythonhosted.org/packages/cc/1c/1718cd518fb9da7e8890d9d1611c1af0ea5e60f68ff415d026e38401ed36/multidict-6.1.0-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": "2b92f6ed67514b0e3894198f0eb42dcde22f0851ea35f4561a1e4acf36c7b1be",
"md5": "cd871917f53a695f284cfc8109b55648",
"sha256": "2090f6a85cafc5b2db085124d752757c9d251548cedabe9bd31afe6363e0aff2"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cd871917f53a695f284cfc8109b55648",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 127928,
"upload_time": "2024-09-09T23:48:58",
"upload_time_iso_8601": "2024-09-09T23:48:58.778520Z",
"url": "https://files.pythonhosted.org/packages/2b/92/f6ed67514b0e3894198f0eb42dcde22f0851ea35f4561a1e4acf36c7b1be/multidict-6.1.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f730c66954115a4dc4dc3c84e02c8ae11bb35a43d79ef93122c3c3a40c4d459b",
"md5": "849eb1bb5c1cd0749ee32e31205157f0",
"sha256": "f67f217af4b1ff66c68a87318012de788dd95fcfeb24cc889011f4e1c7454dfd"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "849eb1bb5c1cd0749ee32e31205157f0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 122793,
"upload_time": "2024-09-09T23:49:00",
"upload_time_iso_8601": "2024-09-09T23:49:00.244633Z",
"url": "https://files.pythonhosted.org/packages/f7/30/c66954115a4dc4dc3c84e02c8ae11bb35a43d79ef93122c3c3a40c4d459b/multidict-6.1.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62c9d386d01b43871e8e1631eb7b3695f6af071b7ae1ab716caf371100f0eb24",
"md5": "ab72106e4745118582c2c7c28fce7ffc",
"sha256": "189f652a87e876098bbc67b4da1049afb5f5dfbaa310dd67c594b01c10388db6"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "ab72106e4745118582c2c7c28fce7ffc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 132762,
"upload_time": "2024-09-09T23:49:02",
"upload_time_iso_8601": "2024-09-09T23:49:02.188705Z",
"url": "https://files.pythonhosted.org/packages/62/c9/d386d01b43871e8e1631eb7b3695f6af071b7ae1ab716caf371100f0eb24/multidict-6.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69fff70cb0a2f7a358acf48e32139ce3a150ff18c961ee9c714cc8c0dc7e3584",
"md5": "de20764cdb5b461d14b2e0963bd15a30",
"sha256": "6bb5992037f7a9eff7991ebe4273ea7f51f1c1c511e6a2ce511d0e7bdb754492"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "de20764cdb5b461d14b2e0963bd15a30",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 127872,
"upload_time": "2024-09-09T23:49:04",
"upload_time_iso_8601": "2024-09-09T23:49:04.389440Z",
"url": "https://files.pythonhosted.org/packages/69/ff/f70cb0a2f7a358acf48e32139ce3a150ff18c961ee9c714cc8c0dc7e3584/multidict-6.1.0-cp38-cp38-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "895babea7db3ba4cd07752a9b560f9275a11787cd13f86849b5d99c1ceea921d",
"md5": "95e1f250b285ebacb4ef61764e2087c6",
"sha256": "ac10f4c2b9e770c4e393876e35a7046879d195cd123b4f116d299d442b335bcd"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "95e1f250b285ebacb4ef61764e2087c6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 126161,
"upload_time": "2024-09-09T23:49:06",
"upload_time_iso_8601": "2024-09-09T23:49:06.306653Z",
"url": "https://files.pythonhosted.org/packages/89/5b/abea7db3ba4cd07752a9b560f9275a11787cd13f86849b5d99c1ceea921d/multidict-6.1.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2203acc77a4667cca4462ee974fc39990803e58fa573d5a923d6e82b7ef6da7e",
"md5": "7bf94ec0e2cfd80e1ad85535552cfb9b",
"sha256": "e27bbb6d14416713a8bd7aaa1313c0fc8d44ee48d74497a0ff4c3a1b6ccb5167"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "7bf94ec0e2cfd80e1ad85535552cfb9b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 26338,
"upload_time": "2024-09-09T23:49:07",
"upload_time_iso_8601": "2024-09-09T23:49:07.782180Z",
"url": "https://files.pythonhosted.org/packages/22/03/acc77a4667cca4462ee974fc39990803e58fa573d5a923d6e82b7ef6da7e/multidict-6.1.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90bf3d0c1cc9c8163abc24625fae89c0ade1ede9bccb6eceb79edf8cff3cca46",
"md5": "dc215a82c566f0bb15ebfb23aa3db18e",
"sha256": "22f3105d4fb15c8f57ff3959a58fcab6ce36814486500cd7485651230ad4d4ef"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "dc215a82c566f0bb15ebfb23aa3db18e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 28736,
"upload_time": "2024-09-09T23:49:09",
"upload_time_iso_8601": "2024-09-09T23:49:09.126390Z",
"url": "https://files.pythonhosted.org/packages/90/bf/3d0c1cc9c8163abc24625fae89c0ade1ede9bccb6eceb79edf8cff3cca46/multidict-6.1.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e7c99e153a6572b38ac5ff4434113af38acf8d5e9957897cdb1f513b3d6614ed",
"md5": "40e8081367f2814def535d83b79e3950",
"sha256": "4e18b656c5e844539d506a0a06432274d7bd52a7487e6828c63a63d69185626c"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "40e8081367f2814def535d83b79e3950",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 48550,
"upload_time": "2024-09-09T23:49:10",
"upload_time_iso_8601": "2024-09-09T23:49:10.475093Z",
"url": "https://files.pythonhosted.org/packages/e7/c9/9e153a6572b38ac5ff4434113af38acf8d5e9957897cdb1f513b3d6614ed/multidict-6.1.0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "76f579565ddb629eba6c7f704f09a09df085c8dc04643b12506f10f718cee37a",
"md5": "5ba1d584ceb731bbd72dfb230009847f",
"sha256": "a185f876e69897a6f3325c3f19f26a297fa058c5e456bfcff8015e9a27e83ae1"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5ba1d584ceb731bbd72dfb230009847f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 29298,
"upload_time": "2024-09-09T23:49:12",
"upload_time_iso_8601": "2024-09-09T23:49:12.119143Z",
"url": "https://files.pythonhosted.org/packages/76/f5/79565ddb629eba6c7f704f09a09df085c8dc04643b12506f10f718cee37a/multidict-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "601b9851878b704bc98e641a3e0bce49382ae9e05743dac6d97748feb5b7baba",
"md5": "2e4aac34371454a46fb5f045bb94649a",
"sha256": "ab7c4ceb38d91570a650dba194e1ca87c2b543488fe9309b4212694174fd539c"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2e4aac34371454a46fb5f045bb94649a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 29641,
"upload_time": "2024-09-09T23:49:13",
"upload_time_iso_8601": "2024-09-09T23:49:13.714354Z",
"url": "https://files.pythonhosted.org/packages/60/1b/9851878b704bc98e641a3e0bce49382ae9e05743dac6d97748feb5b7baba/multidict-6.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8987d451d45aab9e422cb0fb2f7720c31a4c1d3012c740483c37f642eba568fb",
"md5": "ca148d827a8cc95debd00cbd31d7eb5d",
"sha256": "e617fb6b0b6953fffd762669610c1c4ffd05632c138d61ac7e14ad187870669c"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ca148d827a8cc95debd00cbd31d7eb5d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 126202,
"upload_time": "2024-09-09T23:49:15",
"upload_time_iso_8601": "2024-09-09T23:49:15.238701Z",
"url": "https://files.pythonhosted.org/packages/89/87/d451d45aab9e422cb0fb2f7720c31a4c1d3012c740483c37f642eba568fb/multidict-6.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fab427cbe9f3e2e469359887653f2e45470272eef7295139916cc21107c6b48c",
"md5": "bdc2c1137d05348aa2431d5cedb82847",
"sha256": "16e5f4bf4e603eb1fdd5d8180f1a25f30056f22e55ce51fb3d6ad4ab29f7d96f"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bdc2c1137d05348aa2431d5cedb82847",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 133925,
"upload_time": "2024-09-09T23:49:16",
"upload_time_iso_8601": "2024-09-09T23:49:16.786392Z",
"url": "https://files.pythonhosted.org/packages/fa/b4/27cbe9f3e2e469359887653f2e45470272eef7295139916cc21107c6b48c/multidict-6.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4da3afc841899face8adfd004235ce759a37619f6ec99eafd959650c5ce4df57",
"md5": "6e21428f47b09599b46ba5fe487afe9e",
"sha256": "f4c035da3f544b1882bac24115f3e2e8760f10a0107614fc9839fd232200b875"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6e21428f47b09599b46ba5fe487afe9e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 129039,
"upload_time": "2024-09-09T23:49:18",
"upload_time_iso_8601": "2024-09-09T23:49:18.381220Z",
"url": "https://files.pythonhosted.org/packages/4d/a3/afc841899face8adfd004235ce759a37619f6ec99eafd959650c5ce4df57/multidict-6.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e410d0fb18c1ad574f807196f5f3d99164edf9de3e169a58c6dc2d6ed5742b9",
"md5": "bfc1a12f0e8090c3f2d6d99ff65a42e9",
"sha256": "957cf8e4b6e123a9eea554fa7ebc85674674b713551de587eb318a2df3e00255"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bfc1a12f0e8090c3f2d6d99ff65a42e9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 124072,
"upload_time": "2024-09-09T23:49:20",
"upload_time_iso_8601": "2024-09-09T23:49:20.115413Z",
"url": "https://files.pythonhosted.org/packages/5e/41/0d0fb18c1ad574f807196f5f3d99164edf9de3e169a58c6dc2d6ed5742b9/multidict-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0022defd7a2e71a44e6e5b9a5428f972e5b572e7fe28e404dfa6519bbf057c93",
"md5": "f46b1d0bcf91777a32b8b081f53869d8",
"sha256": "483a6aea59cb89904e1ceabd2b47368b5600fb7de78a6e4a2c2987b2d256cf30"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f46b1d0bcf91777a32b8b081f53869d8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 116532,
"upload_time": "2024-09-09T23:49:21",
"upload_time_iso_8601": "2024-09-09T23:49:21.685397Z",
"url": "https://files.pythonhosted.org/packages/00/22/defd7a2e71a44e6e5b9a5428f972e5b572e7fe28e404dfa6519bbf057c93/multidict-6.1.0-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": "9125f7545102def0b1d456ab6449388eed2dfd822debba1d65af60194904a23a",
"md5": "b8e9a7ec3ac4986bd34c156233f857e7",
"sha256": "87701f25a2352e5bf7454caa64757642734da9f6b11384c1f9d1a8e699758057"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b8e9a7ec3ac4986bd34c156233f857e7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 128173,
"upload_time": "2024-09-09T23:49:23",
"upload_time_iso_8601": "2024-09-09T23:49:23.657253Z",
"url": "https://files.pythonhosted.org/packages/91/25/f7545102def0b1d456ab6449388eed2dfd822debba1d65af60194904a23a/multidict-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45793dbe8d35fc99f5ea610813a72ab55f426cb9cf482f860fa8496e5409be11",
"md5": "e133207b61d14c138db5322881ad2299",
"sha256": "682b987361e5fd7a139ed565e30d81fd81e9629acc7d925a205366877d8c8657"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e133207b61d14c138db5322881ad2299",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 122654,
"upload_time": "2024-09-09T23:49:25",
"upload_time_iso_8601": "2024-09-09T23:49:25.700081Z",
"url": "https://files.pythonhosted.org/packages/45/79/3dbe8d35fc99f5ea610813a72ab55f426cb9cf482f860fa8496e5409be11/multidict-6.1.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97cb209e735eeab96e1b160825b5d0b36c56d3862abff828fc43999bb957dcad",
"md5": "2faf4a17eafa0b9ddeb1d5a478dc554b",
"sha256": "ce2186a7df133a9c895dea3331ddc5ddad42cdd0d1ea2f0a51e5d161e4762f28"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "2faf4a17eafa0b9ddeb1d5a478dc554b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 133197,
"upload_time": "2024-09-09T23:49:27",
"upload_time_iso_8601": "2024-09-09T23:49:27.906150Z",
"url": "https://files.pythonhosted.org/packages/97/cb/209e735eeab96e1b160825b5d0b36c56d3862abff828fc43999bb957dcad/multidict-6.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e43aa13808a7ada62808afccea67837a79d00ad6581440015ef00f726d064c2d",
"md5": "b83ee60ed5dcd882f0c5e9eb2652b1a1",
"sha256": "9f636b730f7e8cb19feb87094949ba54ee5357440b9658b2a32a5ce4bce53972"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "b83ee60ed5dcd882f0c5e9eb2652b1a1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 129754,
"upload_time": "2024-09-09T23:49:29",
"upload_time_iso_8601": "2024-09-09T23:49:29.508440Z",
"url": "https://files.pythonhosted.org/packages/e4/3a/a13808a7ada62808afccea67837a79d00ad6581440015ef00f726d064c2d/multidict-6.1.0-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77dd8540e139eafb240079242da8f8ffdf9d3f4b4ad1aac5a786cd4050923783",
"md5": "d5fb05ba415a13e8157f5f29b4f81091",
"sha256": "73eae06aa53af2ea5270cc066dcaf02cc60d2994bbb2c4ef5764949257d10f43"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d5fb05ba415a13e8157f5f29b4f81091",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 126402,
"upload_time": "2024-09-09T23:49:31",
"upload_time_iso_8601": "2024-09-09T23:49:31.243649Z",
"url": "https://files.pythonhosted.org/packages/77/dd/8540e139eafb240079242da8f8ffdf9d3f4b4ad1aac5a786cd4050923783/multidict-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8699e82e1a275d8b1ea16d3a251474262258dbbe41c05cce0c01bceda1fc8ea5",
"md5": "4113fcb44d9c5e241b64300abd759386",
"sha256": "1ca0083e80e791cffc6efce7660ad24af66c8d4079d2a750b29001b53ff59ada"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "4113fcb44d9c5e241b64300abd759386",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 26421,
"upload_time": "2024-09-09T23:49:32",
"upload_time_iso_8601": "2024-09-09T23:49:32.648425Z",
"url": "https://files.pythonhosted.org/packages/86/99/e82e1a275d8b1ea16d3a251474262258dbbe41c05cce0c01bceda1fc8ea5/multidict-6.1.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "861c9fa630272355af7e4446a2c7550c259f11ee422ab2d30ff90a0a71cf3d9e",
"md5": "b36c3722eb648699dadae4ddadf19bc6",
"sha256": "aa466da5b15ccea564bdab9c89175c762bc12825f4659c11227f515cee76fa4a"
},
"downloads": -1,
"filename": "multidict-6.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "b36c3722eb648699dadae4ddadf19bc6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 28791,
"upload_time": "2024-09-09T23:49:34",
"upload_time_iso_8601": "2024-09-09T23:49:34.725318Z",
"url": "https://files.pythonhosted.org/packages/86/1c/9fa630272355af7e4446a2c7550c259f11ee422ab2d30ff90a0a71cf3d9e/multidict-6.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99b7b9e70fde2c0f0c9af4cc5277782a89b66d35948ea3369ec9f598358c3ac5",
"md5": "a0e95c6669c6761acae085602bd2669f",
"sha256": "48e171e52d1c4d33888e529b999e5900356b9ae588c2f09a52dcefb158b27506"
},
"downloads": -1,
"filename": "multidict-6.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a0e95c6669c6761acae085602bd2669f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 10051,
"upload_time": "2024-09-09T23:49:36",
"upload_time_iso_8601": "2024-09-09T23:49:36.506058Z",
"url": "https://files.pythonhosted.org/packages/99/b7/b9e70fde2c0f0c9af4cc5277782a89b66d35948ea3369ec9f598358c3ac5/multidict-6.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6be504b89a5e9ca731cd47487e91c469064f8ae5af93b7259758dcfc2b9c848",
"md5": "2c8cf03b6e92e1b9c335de56b606c2fc",
"sha256": "22ae2ebf9b0c69d206c003e2f6a914ea33f0a932d4aa16f236afc049d9958f4a"
},
"downloads": -1,
"filename": "multidict-6.1.0.tar.gz",
"has_sig": false,
"md5_digest": "2c8cf03b6e92e1b9c335de56b606c2fc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 64002,
"upload_time": "2024-09-09T23:49:38",
"upload_time_iso_8601": "2024-09-09T23:49:38.163640Z",
"url": "https://files.pythonhosted.org/packages/d6/be/504b89a5e9ca731cd47487e91c469064f8ae5af93b7259758dcfc2b9c848/multidict-6.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-09 23:49:38",
"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"
}