Skip to main content

multidict implementation

Project description

GitHub status for master branch Coverage metrics PyPI Read The Docs build status badge CodSpeed Python versions Matrix Room — #aio-libs:matrix.org 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

$ 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.:

$ 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!!!

For extension development, set the MULTIDICT_DEBUG_BUILD environment variable to compile the extensions in debug mode:

$ MULTIDICT_DEBUG_BUILD=1 pip install multidict

Changelog

See RTD page.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

multidict-6.6.3.tar.gz (101.0 kB view details)

Uploaded Source

Built Distributions

multidict-6.6.3-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

multidict-6.6.3-cp313-cp313t-win_arm64.whl (45.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

multidict-6.6.3-cp313-cp313t-win_amd64.whl (53.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

multidict-6.6.3-cp313-cp313t-win32.whl (47.8 kB view details)

Uploaded CPython 3.13tWindows x86

multidict-6.6.3-cp313-cp313t-musllinux_1_2_x86_64.whl (243.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

multidict-6.6.3-cp313-cp313t-musllinux_1_2_s390x.whl (247.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

multidict-6.6.3-cp313-cp313t-musllinux_1_2_ppc64le.whl (252.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

multidict-6.6.3-cp313-cp313t-musllinux_1_2_i686.whl (243.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

multidict-6.6.3-cp313-cp313t-musllinux_1_2_armv7l.whl (235.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

multidict-6.6.3-cp313-cp313t-musllinux_1_2_aarch64.whl (245.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

multidict-6.6.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (247.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

multidict-6.6.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (256.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

multidict-6.6.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (257.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

multidict-6.6.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (229.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

multidict-6.6.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (250.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

multidict-6.6.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (229.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

multidict-6.6.3-cp313-cp313t-macosx_11_0_arm64.whl (46.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

multidict-6.6.3-cp313-cp313t-macosx_10_13_x86_64.whl (48.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

multidict-6.6.3-cp313-cp313t-macosx_10_13_universal2.whl (82.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

multidict-6.6.3-cp313-cp313-win_arm64.whl (43.1 kB view details)

Uploaded CPython 3.13Windows ARM64

multidict-6.6.3-cp313-cp313-win_amd64.whl (45.8 kB view details)

Uploaded CPython 3.13Windows x86-64

multidict-6.6.3-cp313-cp313-win32.whl (41.7 kB view details)

Uploaded CPython 3.13Windows x86

multidict-6.6.3-cp313-cp313-musllinux_1_2_x86_64.whl (249.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

multidict-6.6.3-cp313-cp313-musllinux_1_2_s390x.whl (258.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

multidict-6.6.3-cp313-cp313-musllinux_1_2_ppc64le.whl (261.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

multidict-6.6.3-cp313-cp313-musllinux_1_2_i686.whl (249.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

multidict-6.6.3-cp313-cp313-musllinux_1_2_armv7l.whl (250.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

multidict-6.6.3-cp313-cp313-musllinux_1_2_aarch64.whl (252.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

multidict-6.6.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (254.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

multidict-6.6.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (267.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

multidict-6.6.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (266.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

multidict-6.6.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (240.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

multidict-6.6.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (256.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

multidict-6.6.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (237.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

multidict-6.6.3-cp313-cp313-macosx_11_0_arm64.whl (43.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

multidict-6.6.3-cp313-cp313-macosx_10_13_x86_64.whl (45.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

multidict-6.6.3-cp313-cp313-macosx_10_13_universal2.whl (75.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

multidict-6.6.3-cp312-cp312-win_arm64.whl (43.2 kB view details)

Uploaded CPython 3.12Windows ARM64

multidict-6.6.3-cp312-cp312-win_amd64.whl (46.0 kB view details)

Uploaded CPython 3.12Windows x86-64

multidict-6.6.3-cp312-cp312-win32.whl (41.9 kB view details)

Uploaded CPython 3.12Windows x86

multidict-6.6.3-cp312-cp312-musllinux_1_2_x86_64.whl (251.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

multidict-6.6.3-cp312-cp312-musllinux_1_2_s390x.whl (259.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

multidict-6.6.3-cp312-cp312-musllinux_1_2_ppc64le.whl (262.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

multidict-6.6.3-cp312-cp312-musllinux_1_2_i686.whl (251.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

multidict-6.6.3-cp312-cp312-musllinux_1_2_armv7l.whl (250.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

multidict-6.6.3-cp312-cp312-musllinux_1_2_aarch64.whl (253.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

multidict-6.6.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (256.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

multidict-6.6.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (269.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

multidict-6.6.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (268.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

multidict-6.6.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (242.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

multidict-6.6.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (258.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

multidict-6.6.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (237.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

multidict-6.6.3-cp312-cp312-macosx_11_0_arm64.whl (43.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

multidict-6.6.3-cp312-cp312-macosx_10_13_x86_64.whl (45.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

multidict-6.6.3-cp312-cp312-macosx_10_13_universal2.whl (76.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

multidict-6.6.3-cp311-cp311-win_arm64.whl (42.9 kB view details)

Uploaded CPython 3.11Windows ARM64

multidict-6.6.3-cp311-cp311-win_amd64.whl (45.9 kB view details)

Uploaded CPython 3.11Windows x86-64

multidict-6.6.3-cp311-cp311-win32.whl (41.3 kB view details)

Uploaded CPython 3.11Windows x86

multidict-6.6.3-cp311-cp311-musllinux_1_2_x86_64.whl (242.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

multidict-6.6.3-cp311-cp311-musllinux_1_2_s390x.whl (247.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

multidict-6.6.3-cp311-cp311-musllinux_1_2_ppc64le.whl (253.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

multidict-6.6.3-cp311-cp311-musllinux_1_2_i686.whl (246.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

multidict-6.6.3-cp311-cp311-musllinux_1_2_armv7l.whl (238.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

multidict-6.6.3-cp311-cp311-musllinux_1_2_aarch64.whl (243.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

multidict-6.6.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (246.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

multidict-6.6.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (255.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

multidict-6.6.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (257.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

multidict-6.6.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (225.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

multidict-6.6.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (247.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

multidict-6.6.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (230.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

multidict-6.6.3-cp311-cp311-macosx_11_0_arm64.whl (44.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

multidict-6.6.3-cp311-cp311-macosx_10_9_x86_64.whl (44.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

multidict-6.6.3-cp311-cp311-macosx_10_9_universal2.whl (76.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

multidict-6.6.3-cp310-cp310-win_arm64.whl (43.0 kB view details)

Uploaded CPython 3.10Windows ARM64

multidict-6.6.3-cp310-cp310-win_amd64.whl (46.0 kB view details)

Uploaded CPython 3.10Windows x86-64

multidict-6.6.3-cp310-cp310-win32.whl (41.4 kB view details)

Uploaded CPython 3.10Windows x86

multidict-6.6.3-cp310-cp310-musllinux_1_2_x86_64.whl (237.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

multidict-6.6.3-cp310-cp310-musllinux_1_2_s390x.whl (243.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

multidict-6.6.3-cp310-cp310-musllinux_1_2_ppc64le.whl (249.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

multidict-6.6.3-cp310-cp310-musllinux_1_2_i686.whl (243.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

multidict-6.6.3-cp310-cp310-musllinux_1_2_armv7l.whl (233.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

multidict-6.6.3-cp310-cp310-musllinux_1_2_aarch64.whl (239.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

multidict-6.6.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (241.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

multidict-6.6.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (251.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

multidict-6.6.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (253.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

multidict-6.6.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (222.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

multidict-6.6.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (242.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

multidict-6.6.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (225.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

multidict-6.6.3-cp310-cp310-macosx_11_0_arm64.whl (44.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

multidict-6.6.3-cp310-cp310-macosx_10_9_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

multidict-6.6.3-cp310-cp310-macosx_10_9_universal2.whl (77.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

multidict-6.6.3-cp39-cp39-win_arm64.whl (43.0 kB view details)

Uploaded CPython 3.9Windows ARM64

multidict-6.6.3-cp39-cp39-win_amd64.whl (46.1 kB view details)

Uploaded CPython 3.9Windows x86-64

multidict-6.6.3-cp39-cp39-win32.whl (41.4 kB view details)

Uploaded CPython 3.9Windows x86

multidict-6.6.3-cp39-cp39-musllinux_1_2_x86_64.whl (235.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

multidict-6.6.3-cp39-cp39-musllinux_1_2_s390x.whl (242.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

multidict-6.6.3-cp39-cp39-musllinux_1_2_ppc64le.whl (246.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

multidict-6.6.3-cp39-cp39-musllinux_1_2_i686.whl (240.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

multidict-6.6.3-cp39-cp39-musllinux_1_2_armv7l.whl (233.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

multidict-6.6.3-cp39-cp39-musllinux_1_2_aarch64.whl (237.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

multidict-6.6.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (239.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

multidict-6.6.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (249.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

multidict-6.6.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (251.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

multidict-6.6.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (219.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

multidict-6.6.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (240.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

multidict-6.6.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (224.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

multidict-6.6.3-cp39-cp39-macosx_11_0_arm64.whl (44.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

multidict-6.6.3-cp39-cp39-macosx_10_9_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

multidict-6.6.3-cp39-cp39-macosx_10_9_universal2.whl (77.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file multidict-6.6.3.tar.gz.

File metadata

  • Download URL: multidict-6.6.3.tar.gz
  • Upload date:
  • Size: 101.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3.tar.gz
Algorithm Hash digest
SHA256 798a9eb12dab0a6c2e29c1de6f3468af5cb2da6053a20dfa3344907eed0937cc
MD5 fad2c669f1c8b1feec4568090450f3a7
BLAKE2b-256 3d2c5dad12e82fbdf7470f29bff2171484bf07cb3b16ada60a6589af8f376440

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3.tar.gz:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-py3-none-any.whl.

File metadata

  • Download URL: multidict-6.6.3-py3-none-any.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8db10f29c7541fc5da4defd8cd697e1ca429db743fa716325f236079b96f775a
MD5 28a630cf86e784a0f8131de6295f1694
BLAKE2b-256 d8309aec301e9772b098c1f5c0ca0279237c9766d94b97802e9888010c64b0ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-py3-none-any.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 45.3 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 ce8b7693da41a3c4fde5871c738a81490cea5496c671d74374c8ab889e1834fb
MD5 30cc243573e59d5f91bed2a7a2547e98
BLAKE2b-256 f240b68001cba8188dd267590a111f9661b6256debc327137667e832bf5d66e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 53.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 9f97e181f344a0ef3881b573d31de8542cc0dbc559ec68c8f8b5ce2c2e91646d
MD5 e4e4f567e98fa6d1f4a605e612effcc1
BLAKE2b-256 b6d6a9d2c808f2c489ad199723197419207ecbfbc1776f6e155e1ecea9c883aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-win32.whl.

File metadata

  • Download URL: multidict-6.6.3-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 47.8 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 639ecc9fe7cd73f2495f62c213e964843826f44505a3e5d82805aa85cac6f89e
MD5 0471cbcfa018d4b994bfd4b9648df65b
BLAKE2b-256 22d6fdb3d0670819f2228f3f7d9af613d5e652c15d170c83e5f1c94fbc55a25b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-win32.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3713303e4a6663c6d01d648a68f2848701001f3390a030edaaf3fc949c90bf7c
MD5 4faaeef6a78a26243abef0cee059da48
BLAKE2b-256 8c22b788718d63bb3cce752d107a57c85fcd1a212c6c778628567c9713f9345a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 70d974eaaa37211390cd02ef93b7e938de564bbffa866f0b08d07e5e65da783d
MD5 b51f99375c1931cdf71bd685b9bf1266
BLAKE2b-256 bbfea2514a6aba78e5abefa1624ca85ae18f542d95ac5cde2e3815a9fbf369aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b9cbc60010de3562545fa198bfc6d3825df430ea96d2cc509c39bd71e2e7d648
MD5 d42d6bea772abcf611ce4a55685377ef
BLAKE2b-256 da6fce8b79de16cd885c6f9052c96a3671373d00c59b3ee635ea93e6e81b8ccf

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81ef2f64593aba09c5212a3d0f8c906a0d38d710a011f2f42759704d4557d3f2
MD5 928c1bbb3420b225dd3aca37d8c551f8
BLAKE2b-256 1b1f487612ab56fbe35715320905215a57fede20de7db40a261759690dc80471

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0cb0ab69915c55627c933f0b555a943d98ba71b4d1c57bc0d0a66e2567c7471
MD5 785dc26f60a58ddee944d1e205b2ef85
BLAKE2b-256 50ef433fa3ed06028f03946f3993223dada70fb700f763f70c00079533c34578

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e236a7094b9c4c1b7585f6b9cca34b9d833cf079f7e4c49e6a4a6ec9bfdc68f
MD5 f237e2ea4f41a6f2bf4101a3d17af15e
BLAKE2b-256 1c60dca352a0c999ce96a5d8b8ee0b2b9f729dcad2e0b0c195f8286269a2074c

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e4cc8d848cd4fe1cdee28c13ea79ab0ed37fc2e89dd77bac86a2e7959a8c3bc
MD5 63886d23b64ee7df9db87b29411e7ec4
BLAKE2b-256 da8884a27570fbe303c65607d517a5f147cd2fc046c2d1da02b84b17b9bdc2aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e252017a817fad7ce05cafbe5711ed40faeb580e63b16755a3a24e66fa1d87c0
MD5 02a455ace4dae4b99e4e08bb65bbb51f
BLAKE2b-256 68d014fa1699f4ef629eae08ad6201c6b476098f5efb051b296f4c26be7a9fdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 274d416b0df887aef98f19f21578653982cfb8a05b4e187d4a17103322eeaf8f
MD5 5701c1f1bcd22991211928dfdb7b90d1
BLAKE2b-256 2132c9a2d8444a50ec48c4733ccc67254100c10e1c8ae8e40c7a2d2183b59b97

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 135631cb6c58eac37d7ac0df380294fecdc026b28837fa07c02e459c7fb9c54e
MD5 77078d198ceabfa73119d66d9ff2e8b9
BLAKE2b-256 9ed4d5c0bd2bbb173b586c249a151a26d2fb3ec7d53c96e42091c9fef4e1f10c

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b24576f208793ebae00280c59927c3b7c2a3b1655e443a25f753c4611bc1c373
MD5 72f4e3de03b0d122b8f306293ee2c3d3
BLAKE2b-256 a4140145a251f555f7c754ce2dcbcd012939bbd1f34f066fa5d28a50e722a054

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b9fe5a0e57c6dbd0e2ce81ca66272282c32cd11d31658ee9553849d91289e1c1
MD5 25ae33fd57f7b7b074911be6d61565aa
BLAKE2b-256 49ba9fcc1b332f67cc0c0c8079e263bfab6660f87fe4e28a35921771ff3eea0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e924fb978615a5e33ff644cc42e6aa241effcf4f3322c09d4f8cebde95aff5f8
MD5 e231a81f03a81c1d4f33df2fb83925bc
BLAKE2b-256 3965ab3c8cafe21adb45b24a50266fd747147dec7847425bc2a0f6934b3ae9ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f3aa090106b1543f3f87b2041eef3c156c8da2aed90c63a2fbed62d875c49c37
MD5 9e31bf3f67faae7f7a8407cedfdebf59
BLAKE2b-256 71af5402e7b58a1f5b987a07ad98f2501fdba2a4f4b4c30cf114e3ce8db64c87

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 02fd8f32d403a6ff13864b0851f1f523d4c988051eea0471d4f1fd8010f11134
MD5 1f69e4af1a159bee486b8115c3bf5734
BLAKE2b-256 3a58aaf8114cf34966e084a8cc9517771288adb53465188843d5a19862cb6dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313t-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 43.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c60b401f192e79caec61f166da9c924e9f8bc65548d4246842df91651e83d600
MD5 a910c35d20f42364fcdaf835a0657b3a
BLAKE2b-256 c5c92e3fe950db28fb7c62e1a5f46e1e38759b072e2089209bc033c2798bb5ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e93089c1570a4ad54c3714a12c2cef549dc9d58e97bcded193d928649cab78e9
MD5 56182356def908d507158c85433eeb65
BLAKE2b-256 b1adcf46e73f5d6e3c775cabd2a05976547f3f18b39bee06260369a42501f053

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: multidict-6.6.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 41.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5633a82fba8e841bc5c5c06b16e21529573cd654f67fd833650a215520a6210e
MD5 cee6bbcd34cfc2dde2bacade53ff2cd0
BLAKE2b-256 755e325b11f2222a549019cf2ef879c1f81f94a0d40ace3ef55cf529915ba6cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-win32.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e864486ef4ab07db5e9cb997bad2b681514158d6954dd1958dfb163b83d53e6
MD5 4e0fc734fe0890fefd3d4d95dac3c764
BLAKE2b-256 d060689880776d6b18fa2b70f6cc74ff87dd6c6b9b47bd9cf74c16fecfaa6ad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fc9dc435ec8699e7b602b94fe0cd4703e69273a01cbc34409af29e7820f777f1
MD5 762d39ecf66c7df446d9a22ed98136b5
BLAKE2b-256 362fc6a728f699896252cf309769089568a33c6439626648843f78743660709d

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ef58340cc896219e4e653dade08fea5c55c6df41bcc68122e3be3e9d873d9a7b
MD5 d1c3b40136c384b95e9bc884add140ba
BLAKE2b-256 1faf9155850372563fc550803d3f25373308aa70f59b52cff25854086ecb4a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5e8523bb12d7623cd8300dbd91b9e439a46a028cd078ca695eb66ba31adee3c
MD5 33f588d7cfde07e0e645137eda56422e
BLAKE2b-256 25d2ed9f847fa5c7d0677d4f02ea2c163d5e48573de3f57bacf5670e43a5ffaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c1e61bb4f80895c081790b6b09fa49e13566df8fbff817da3f85b3a8192e36b
MD5 f35b0eec176b2623220f9ae1674d41a3
BLAKE2b-256 bba42d96aaa6eae8067ce108d4acee6f45ced5728beda55c0f02ae1072c730d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ef421045f13879e21c994b36e728d8e7d126c91a64b9185810ab51d474f27e7
MD5 ee7113fde8bb44eca3ce69eda3d94f27
BLAKE2b-256 b459bcdd52c1dab7c0e0d75ff19cac751fbd5f850d1fc39172ce809a74aa9ea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c6df517cf177da5d47ab15407143a89cd1a23f8b335f3a28d57e8b0a3dbb884
MD5 ede387952b2c91d0349b17e03f811fd8
BLAKE2b-256 1fa30a485b7f36e422421b17e2bbb5a81c1af10eac1d4476f2ff92927c730479

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 900eb9f9da25ada070f8ee4a23f884e0ee66fe4e1a38c3af644256a508ad81ca
MD5 d0a2a3f5d40af2f0729bd286a67437b9
BLAKE2b-256 7635dc38ab361051beae08d1a53965e3e1a418752fc5be4d3fb983c5582d8784

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dbc7cf464cc6d67e83e136c9f55726da3a30176f020a36ead246eceed87f1cd8
MD5 4b65bc00f151124bbcc062cc60b60108
BLAKE2b-256 27fb905224fde2dff042b030c27ad95a7ae744325cf54b890b443d30a789b80e

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 94c47ea3ade005b5976789baaed66d4de4480d0a0bf31cef6edaa41c1e7b56a6
MD5 bb5a546ef368e35c0cf74b6997ff2b52
BLAKE2b-256 766038ee422db515ac69834e60142a1a69111ac96026e76e8e9aa347fd2e4591

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3fc723ab8a5c5ed6c50418e9bfcd8e6dceba6c271cee6728a10a4ed8561520c
MD5 a54205636b40b8e621911cd64642cb5a
BLAKE2b-256 e7ab320d8507e7726c460cb77117848b3834ea0d59e769f36fdae495f7669929

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 500b84f51654fdc3944e936f2922114349bf8fdcac77c3092b03449f0e5bc2b3
MD5 6d62567c49948982e9dfa8ee884b3fe1
BLAKE2b-256 fdfe6eb68927e823999e3683bc49678eb20374ba9615097d085298fd5b386564

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7af039820cfd00effec86bda5d8debef711a3e86a1d3772e85bea0f243a4bd65
MD5 7b9f40f9299ae299bebae10a050b98fe
BLAKE2b-256 32d20b3b23f9dbad5b270b22a3ac3ea73ed0a50ef2d9a390447061178ed6bdb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c19cea2a690f04247d43f366d03e4eb110a0dc4cd1bbeee4d445435428ed35b
MD5 34c8ef3259c70cd06a8dd354a4fb3c73
BLAKE2b-256 078fcbe241b0434cfe257f65c2b1bcf9e8d5fb52bc708c5061fb29b0fed22bdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 540d3c06d48507357a7d57721e5094b4f7093399a0106c211f33540fdc374d55
MD5 72fed6cfcfc3549fb6c1504481a4345e
BLAKE2b-256 521d0bebcbbb4f000751fbd09957257903d6e002943fc668d841a4cf2fb7f872

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0f1130b896ecb52d2a1e615260f3ea2af55fa7dc3d7c3003ba0c3121a759b18b
MD5 701abfddb1f70eca9fd33193c0e18020
BLAKE2b-256 b8958c825bd70ff9b02462dc18d1295dd08d3e9e4eb66856d292ffa62cfe1920

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 46.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 04cbcce84f63b9af41bad04a54d4cc4e60e90c35b9e6ccb130be2d75b71f8c17
MD5 4eb8c443ccf0475d15f3fcc7769acfb7
BLAKE2b-256 6aa30fbc7afdf7cb1aa12a086b02959307848eb6bcc8f66fcb66c0cb57e2a2c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: multidict-6.6.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 73ab034fb8d58ff85c2bcbadc470efc3fafeea8affcf8722855fb94557f14cc5
MD5 459b6e7d57448bbc141e2066186d486d
BLAKE2b-256 6f5c4d7adc739884f7a9fbe00d1eac8c034023ef8bad71f2ebe12823ca2e3649

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-win32.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 555ff55a359302b79de97e0468e9ee80637b0de1fce77721639f7cd9440b3a10
MD5 01f4cc1cc8ca9b79240169d4cee727a1
BLAKE2b-256 079c91b7ac1691be95cd1f4a26e36a74b97cda6aa9820632d31aab4410f46ebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 346055630a2df2115cd23ae271910b4cae40f4e336773550dca4889b12916e75
MD5 590cb7e7ee82702f92de3f2d0238778a
BLAKE2b-256 8cbd22ce8f47abb0be04692c9fc4638508b8340987b18691aa7775d927b73f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bd0578596e3a835ef451784053cfd327d607fc39ea1a14812139339a18a0dbc3
MD5 fd098ef00d687f235c1967ca0f347bbd
BLAKE2b-256 8c7b86ec260118e522f1a31550e87b23542294880c97cfbf6fb18cc67b044c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67c92ed673049dec52d7ed39f8cf9ebbadf5032c774058b4406d18c8f8fe7063
MD5 136a7d0d4e637ee84b9c2e19d7a48b2b
BLAKE2b-256 ad9e086846c1d6601948e7de556ee464a2d4c85e33883e749f46b9547d7b0704

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e098c17856a8c9ade81b4810888c5ad1914099657226283cab3062c0540b0643
MD5 7c9f756c539631e8643f7139cdd10593
BLAKE2b-256 bf0e7e3b93f79efeb6111d3bf9a1a69e555ba1d07ad1c11bceb56b7310d0d7ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 159ca68bfd284a8860f8d8112cf0521113bffd9c17568579e4d13d1f1dc76b65
MD5 0dc5a3e201635df95cfa539d255b19ca
BLAKE2b-256 9b2b631b1e2afeb5f1696846d747d36cda075bfdc0bc7245d6ba5c319278d6c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8df25594989aebff8a130f7899fa03cbfcc5d2b5f4a461cf2518236fe6f15961
MD5 c7eee6596873b466c73cbb088a90af50
BLAKE2b-256 a4116ec9dcbe2264b92778eeb85407d1df18812248bf3506a5a1754bc035db0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e4e15d2138ee2694e038e33b7c3da70e6b0ad8868b9f8094a72e1414aeda9c1a
MD5 7f1b4ee082210ae7a9b12025f591d88f
BLAKE2b-256 9e731c743542fe00794a2ec7466abd3f312ccb8fad8dff9f36d42e18fb1ec33e

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 712b348f7f449948e0a6c4564a21c7db965af900973a67db432d724619b3c680
MD5 859612361f63f1387c3b4ee690473fa7
BLAKE2b-256 6ea346f2d420d86bbcb8fe660b26a10a219871a0fbf4d43cb846a4031533f3e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e5511cb35f5c50a2db21047c875eb42f308c5583edf96bd8ebf7d770a9d68f6d
MD5 ec4171ddd40663172469a7868c7a37ca
BLAKE2b-256 e325cca0e68228addad24903801ed1ab42e21307a1b4b6dd2cf63da5d3ae082a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8fee016722550a2276ca2cb5bb624480e0ed2bd49125b2b73b7010b9090e888
MD5 5de3ef81d3546fcb7ba1237d543b42d4
BLAKE2b-256 ce714f0e558fb77696b89c233c1ee2d92f3e1d5459070a0e89153c9e9e804186

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2334cfb0fa9549d6ce2c21af2bfbcd3ac4ec3646b1b1581c88e3e2b1779ec92b
MD5 af8cef7bb5723f86f32001decb024e5f
BLAKE2b-256 44fe06e0e01b1b0611e6581b7fd5a85b43dacc08b6cea3034f902f383b0873e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10bea2ee839a759ee368b5a6e47787f399b41e70cf0c20d90dfaf4158dfb4e55
MD5 9d04fe02fd26ceac3022176bcb9e4259
BLAKE2b-256 526fdd104490e01be6ef8bf9573705d8572f8c2d2c561f06e3826b081d9e6591

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5f481cccb3c5c5e5de5d00b5141dc589c1047e60d07e85bbd7dea3d4580d63f
MD5 69d07a3fcc9c2fccf04ad6a9f21fe62d
BLAKE2b-256 077ad1e92665b0850c6c0508f101f9cf0410c1afa24973e1115fe9c6a185ebf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 056bebbeda16b2e38642d75e9e5310c484b7c24e3841dc0fb943206a72ec89d6
MD5 6d25cce85062b1ba2723421fbd5fa0a4
BLAKE2b-256 0ea06b57988ea102da0623ea814160ed78d45a2645e4bbb499c2896d12833a70

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 42.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d4e47d8faffaae822fb5cba20937c048d4f734f43572e7079298a6c39fb172cb
MD5 f1a0e320909df8752ab16b112a3912ad
BLAKE2b-256 161823f4932019804e56d3c2413e237f866444b774b0263bcb81df2fdecaf593

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 45.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc7f6fbc61b1c16050a389c630da0b32fc6d4a3d191394ab78972bf5edc568c2
MD5 aa84316f0660172ef0567c9d439c447b
BLAKE2b-256 e0d427652c1c6526ea6b4f5ddd397e93f4232ff5de42bea71d339bc6a6cc497f

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: multidict-6.6.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 41.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9f5b28c074c76afc3e4c610c488e3493976fe0e596dd3db6c8ddfbb0134dcac5
MD5 511ca7ffcd4bcb1e176d57e332c0d311
BLAKE2b-256 bef1adcc185b878036a20399d5be5228f3cbe7f823d78985d101d425af35c800

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-win32.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ed948328aec2072bc00f05d961ceadfd3e9bfc2966c1319aeaf7b7c21219183
MD5 e8f0b07e9f1abf6a29ca26b173e75d7e
BLAKE2b-256 e691b22756afec99cc31105ddd4a52f95ab32b1a4a58f4d417979c570c4a922e

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 934796c81ea996e61914ba58064920d6cad5d99140ac3167901eb932150e2e56
MD5 a529ce1a24f110c1c6c11d94ea8e165d
BLAKE2b-256 c0da9cc1da0299762d20e626fe0042e71b5694f9f72d7d3f9678397cbaa71b2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3893a0d7d28a7fe6ca7a1f760593bc13038d1d35daf52199d431b61d2660602b
MD5 5845f2c435db55b823719799a8405fef
BLAKE2b-256 cf01c69e0317be556e46257826d5449feb4e6aa0d18573e567a48a2c14156f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 766a4a5996f54361d8d5a9050140aa5362fe48ce51c755a50c0bc3706460c430
MD5 267b67c80d8fdd56b5c2c8d78c8668dd
BLAKE2b-256 89a466c9d8fb9acf3b226cdd468ed009537ac65b520aebdc1703dd6908b19d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e995a34c3d44ab511bfc11aa26869b9d66c2d8c799fa0e74b28a473a692532d6
MD5 be02b4ac036b099700de06e264f399fe
BLAKE2b-256 69cce06636f48c6d51e724a8bc8d9e1db5f136fe1df066d7cafe37ef4000f86a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cdf22e4db76d323bcdc733514bf732e9fb349707c98d341d40ebcc6e9318ef3d
MD5 66555be2391f67393d081d97ee7fcfe4
BLAKE2b-256 a862279c13d584207d5697a752a66ffc9bb19355a95f7659140cb1b3cf82180e

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f114d8478733ca7388e7c7e0ab34b72547476b97009d643644ac33d4d3fe1821
MD5 0b998901fff4d17bef703c26934a2cd4
BLAKE2b-256 74072c9246cda322dfe08be85f1b8739646f2c4c5113a1422d7a407763422ec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7394888236621f61dcdd25189b2768ae5cc280f041029a5bcf1122ac63df79f9
MD5 e6003a7b52b657d797dc6ed734c9d7f3
BLAKE2b-256 15eaff4bab367623e39c20d3b07637225c7688d79e4f3cc1f3b9f89867677f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e2db616467070d0533832d204c54eea6836a5e628f2cb1e6dfd8cd6ba7277cb7
MD5 9b8a6e8af8df90c4cf666ce8e2bdf33b
BLAKE2b-256 932d7115300ec5b699faa152c56799b089a53ed69e399c3c2d528251f0aeda1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0b9e59946b49dafaf990fd9c17ceafa62976e8471a14952163d10a7a630413a9
MD5 1dbd7cda613da642c1daa9df815dfe34
BLAKE2b-256 05f2f9117089151b9a8ab39f9019620d10d9718eec2ac89e7ca9d30f3ec78e96

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1bf99b4daf908c73856bd87ee0a2499c3c9a3d19bb04b9c6025e66af3fd07462
MD5 de995586797601ad83a0bb6af0515ed3
BLAKE2b-256 fddf2b787f80059314a98e1ec6a4cc7576244986df3e56b3c755e6fc7c99e038

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5bd8d6f793a787153956cd35e24f60485bf0651c238e207b9a54f7458b16d539
MD5 13ea2220bb49139df318de2a37edc842
BLAKE2b-256 c2f8410677d563c2d55e063ef74fe578f9d53fe6b0a51649597a5861f83ffa15

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf9bd1fd5eec01494e0f2e8e446a74a85d5e49afb63d75a9934e4a5423dba21d
MD5 ecfab0c2ac394b0b15de71d0b64cb6bc
BLAKE2b-256 c6bba14a4efc5ee748cc1904b0748be278c31b9295ce5f4d2ef66526f410b94d

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef43b5dd842382329e4797c46f10748d8c2b6e0614f46b4afe4aee9ac33159df
MD5 85a39ee05db98be0e4c2b98a07055204
BLAKE2b-256 c90ea7cfa451c7b0365cd844e90b41e21fab32edaa1e42fc0c9f68461ce44ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 18f4eba0cbac3546b8ae31e0bbc55b02c801ae3cbaf80c247fcdd89b456ff58c
MD5 b02e756ae52f3cc1b2ca22f83ee1ba38
BLAKE2b-256 08f01a39863ced51f639c81a5463fbfa9eb4df59c20d1a8769ab9ef4ca57ae04

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 43.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 769841d70ca8bdd140a715746199fc6473414bd02efd678d75681d2d6a8986c5
MD5 1516cd39920e3ec0d9d514d1f87f8751
BLAKE2b-256 2d5fd4a717c1e457fe44072e33fa400d2b93eb0f2819c4d669381f925b7cba1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 46.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ab0a34a007704c625e25a9116c6770b4d3617a071c8a7c30cd338dfbadfe6485
MD5 dfa39b360663da1bf0e6b4c72a21fe81
BLAKE2b-256 f3d217897a8f3f2c5363d969b4c635aa40375fe1f09168dc09a7826780bfb2a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: multidict-6.6.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 41.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 20c5a0c3c13a15fd5ea86c42311859f970070e4e24de5a550e99d7c271d76318
MD5 54e934f7aff3c15d79f73e65144fa8c9
BLAKE2b-256 35380016adac3990426610a081787011177e661875546b434f50a26319dc8372

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-win32.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43571f785b86afd02b3855c5ac8e86ec921b760298d6f82ff2a61daf5a35330b
MD5 d89b1f6c77260c61c6b5a3197f91a0e9
BLAKE2b-256 ec39458afb0cccbb0ee9164365273be3e039efddcfcb94ef35924b7dbdb05db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 70b72e749a4f6e7ed8fb334fa8d8496384840319512746a5f42fa0aec79f4d61
MD5 bc752cb7a553f2b045fdc487ca920acc
BLAKE2b-256 e6dcc90066151da87d1e489f147b9b4327927241e65f1876702fafec6729c014

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 877443eaaabcd0b74ff32ebeed6f6176c71850feb7d6a1d2db65945256ea535c
MD5 eac547c272153b0fd08a82b95b5f9e84
BLAKE2b-256 96195d9a0cfdafe65d82b616a45ae950975820289069f885328e8185e64283c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14117a41c8fdb3ee19c743b1c027da0736fdb79584d61a766da53d399b71176c
MD5 f4bb7174ec8e215c11d5f3fe1de3d7c2
BLAKE2b-256 2ef08cd49a0b37bdea673a4b793c2093f2f4ba8e7c9d6d7c9bd672fd6d38cd11

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0db58da8eafb514db832a1b44f8fa7906fdd102f7d982025f816a93ba45e3dcb
MD5 d97d46582049cfc7c7212b71353ca23e
BLAKE2b-256 6eccff84c03b95b430015d2166d9aae775a3985d757b94f6635010d0038d9241

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05db2f66c9addb10cfa226e1acb363450fab2ff8a6df73c622fefe2f5af6d4e7
MD5 b7893d982292533a98de131156a5282a
BLAKE2b-256 283d35f33045e21034b388686213752cabc3a1b9d03e20969e6fa8f1b1d82db1

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68e9e12ed00e2089725669bdc88602b0b6f8d23c0c95e52b95f0bc69f7fe9b55
MD5 b434e3e98830c5f3e56ae50059e5113d
BLAKE2b-256 4411780615a98fd3775fc309d0234d563941af69ade2df0bb82c91dda6ddaea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 acf6b97bd0884891af6a8b43d0f586ab2fcf8e717cbd47ab4bdddc09e20652d8
MD5 2f88b75deb16aa6a89457aed938b35b5
BLAKE2b-256 62bfebfcfd6b55a1b05ef16d0775ae34c0fe15e8dab570d69ca9941073b969e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 208b9b9757060b9faa6f11ab4bc52846e4f3c2fb8b14d5680c8aac80af3dc751
MD5 d97dc159bce6ddb413f94d7f3ee78ca4
BLAKE2b-256 768818b2a0d5e80515fa22716556061189c2853ecf2aa2133081ebbe85ebea38

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 42ca5aa9329a63be8dc49040f63817d1ac980e02eeddba763a9ae5b4027b9c9c
MD5 1c1a857f55f63ed410550571a0c378ca
BLAKE2b-256 6eb5a8f317d47d0ac5bb746d6d8325885c8967c2a8ce0bb57be5399e3642cccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 531e331a2ee53543ab32b16334e2deb26f4e6b9b28e41f8e0c87e99a6c8e2d69
MD5 4f0d8328c3a0c37160ee6754be8613ac
BLAKE2b-256 4ef58d5a15488edd9a91fa4aad97228d785df208ed6298580883aa3d9def1959

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 72d8815f2cd3cf3df0f83cac3f3ef801d908b2d90409ae28102e0553af85545a
MD5 ba8d324e414ff2744c47dc84fba8e7b7
BLAKE2b-256 e6056b759379f7e8e04ccc97cfb2a5dcc5cdbd44a97f072b2272dc51281e6a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd7793bab517e706c9ed9d7310b06c8672fd0aeee5781bfad612f56b8e0f7d14
MD5 ba5a931b37c49ff3499bb666c895019e
BLAKE2b-256 1fe0265d89af8c98240265d82b8cbcf35897f83b76cd59ee3ab3879050fd8c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12f4581d2930840295c461764b9a65732ec01250b46c6b2c510d7ee68872b140
MD5 ba2548b941d923199efba7dac27e580d
BLAKE2b-256 8afed8a3ee1fad37dc2ef4f75488b0d9d4f25bf204aad8306cbab63d97bff64a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a2be5b7b35271f7fff1397204ba6708365e3d773579fe2a30625e16c4b4ce817
MD5 4a0a53caa234328eb4658aeaad02ed46
BLAKE2b-256 0b67414933982bce2efce7cbcb3169eaaf901e0f25baec69432b4874dfb1f297

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 43.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 15332783596f227db50fb261c2c251a58ac3873c457f3a550a95d5c0aa3c770d
MD5 be47862e149e954481e2ab268204088b
BLAKE2b-256 b2305a66e7e4550e80975faee5b5dd9e9bd09194d2fd8f62363119b9e46e204b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: multidict-6.6.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 295adc9c0551e5d5214b45cf29ca23dbc28c2d197a9c30d51aed9e037cb7c578
MD5 c91f5be1daaf1ac7c17f935c2e9b8bb3
BLAKE2b-256 78c38b3bc755508b777868349f4bfa844d3d31832f075ee800a3d6f1807338c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: multidict-6.6.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 41.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for multidict-6.6.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f54cb79d26d0cd420637d184af38f0668558f3c4bbe22ab7ad830e67249f2e0b
MD5 6b83916e3120d3d470489e604cc64b66
BLAKE2b-256 e346574d75ab7b9ae8690fe27e89f5fcd0121633112b438edfb9ed2be8be096b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-win32.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37b09ca60998e87734699e88c2363abfd457ed18cfbf88e4009a4e83788e63ed
MD5 3cd76b1000cfcec77280a919008dbe87
BLAKE2b-256 73bb839486b27bcbcc2e0d875fb9d4012b4b6aa99639137343106aa7210e047a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bb933c891cd4da6bdcc9733d048e994e22e1883287ff7540c2a0f3b117605092
MD5 31699a889115495e1d247b8b122cc93b
BLAKE2b-256 5e0b726e690bfbf887985a8710ef2f25f1d6dd184a35bd3b36429814f810a2fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 233ad16999afc2bbd3e534ad8dbe685ef8ee49a37dbc2cdc9514e57b6d589ced
MD5 2b1d8d10770f2153fe81dddf5dad8ee6
BLAKE2b-256 aeab702f1baca649f88ea1dc6259fc2aa4509f4ad160ba48c8e61fbdb4a5a365

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 448e4a9afccbf297577f2eaa586f07067441e7b63c8362a3540ba5a38dc0f14a
MD5 a5404626390b2c36c35ac1da15f82ad3
BLAKE2b-256 85e168a65f069df298615591e70e48bfd379c27d4ecb252117c18bf52eebc237

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61af8a4b771f1d4d000b3168c12c3120ccf7284502a94aa58c68a81f5afac090
MD5 0b929dabad07844355ff2287020935e5
BLAKE2b-256 b4ac2d0bf836c9c63a57360d57b773359043b371115e1c78ff648993bf19abd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c8082e5814b662de8589d6a06c17e77940d5539080cbab9fe6794b5241b76d9
MD5 824cf9214231fc1ef9370d2bacb4d4a7
BLAKE2b-256 c7507ae0d1149ac71cab6e20bb7faf2a1868435974994595dadfdb7377f7140f

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35712f1748d409e0707b165bf49f9f17f9e28ae85470c41615778f8d4f7d9609
MD5 c707ed4637ed03e3c3fdddda63d4a678
BLAKE2b-256 49a0a7cfc13c9a71ceb8c1c55457820733af9ce01e121139271f7b13e30c29d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d25594d3b38a2e6cabfdcafef339f754ca6e81fbbdb6650ad773ea9775af35ab
MD5 2f3eaea867417dcf16918322f2b040d9
BLAKE2b-256 669e0f51e4cffea2daf24c137feabc9ec848ce50f8379c9badcbac00b41ab55e

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d04d01f0a913202205a598246cf77826fe3baa5a63e9f6ccf1ab0601cf56eca0
MD5 79f40aeea6ea6c754b88a2aec6ab2fca
BLAKE2b-256 f80ea5e595fdd0820069f0c29911d5dc9dc3a75ec755ae733ce59a4e6962ae42

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 775b464d31dac90f23192af9c291dc9f423101857e33e9ebf0020a10bfcf4144
MD5 07212136ed1837e2d4c3bd8c046e08f1
BLAKE2b-256 589817f1f80bdba0b2fef49cf4ba59cebf8a81797f745f547abb5c9a4039df62

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41bb9d1d4c303886e2d85bade86e59885112a7f4277af5ad47ab919a2251f306
MD5 986a1613f9fa751bd7aa566bc49623be
BLAKE2b-256 c4214055b6a527954c572498a8068c26bd3b75f2b959080e17e12104b592273c

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 53becb01dd8ebd19d1724bebe369cfa87e4e7f29abbbe5c14c98ce4c383e16cd
MD5 3579ad19d284d4b022e23d44394c21e5
BLAKE2b-256 855925cddf781f12cddb2386baa29744a3fdd160eb705539b48065f0cffd86d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1db4d2093d6b235de76932febf9d50766cf49a5692277b2c28a501c9637f616
MD5 d936140fac6d847f80a00aedb4add549
BLAKE2b-256 1535d417d8f62f2886784b76df60522d608aba39dfc83dd53b230ca71f2d4c53

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1328201ee930f069961ae707d59c6627ac92e351ed5b92397cf534d1336ce557
MD5 a78d1c23be13fe3e5ff8bc5b57e626d1
BLAKE2b-256 cacd872ae4c134257dacebff59834983c1615d6ec863b6e3d360f3203aad8400

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multidict-6.6.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for multidict-6.6.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c8161b5a7778d3137ea2ee7ae8a08cce0010de3b00ac671c5ebddeaa17cefd22
MD5 cd3e10dd522446e1dcb6cf901464b801
BLAKE2b-256 d264ba29bd6dfc895e592b2f20f92378e692ac306cf25dd0be2f8e0a0f898edb

See more details on using hashes here.

Provenance

The following attestation bundles were made for multidict-6.6.3-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/multidict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page