Skip to main content

multidict implementation

Project description

https://img.shields.io/pypi/v/multidict.svg https://readthedocs.org/projects/multidict/badge/?version=latest https://img.shields.io/travis-ci/com/aio-libs/multidict/master.svg https://img.shields.io/appveyor/ci/asvetlov/multidict/master.svg?label=Windows%20build%20%40%20Appveyor https://img.shields.io/pypi/pyversions/multidict.svg Coverage metrics Chat on Gitter

Multidict is dict-like collection of key-value pairs where key might be occurred 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 to change their own content.

Case insensitive (CIMultiDict and CIMultiDictProxy) ones 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 Cython optimization for sake of speed.

License

Apache 2

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-4.4.0a42.tar.gz (117.7 kB view details)

Uploaded Source

Built Distributions

multidict-4.4.0a42-cp37-cp37m-win_amd64.whl (162.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

multidict-4.4.0a42-cp37-cp37m-win32.whl (152.8 kB view details)

Uploaded CPython 3.7m Windows x86

multidict-4.4.0a42-cp37-cp37m-manylinux1_x86_64.whl (386.6 kB view details)

Uploaded CPython 3.7m

multidict-4.4.0a42-cp37-cp37m-manylinux1_i686.whl (364.2 kB view details)

Uploaded CPython 3.7m

multidict-4.4.0a42-cp37-cp37m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.7m macOS 10.12+ intel macOS 10.12+ x86-64 macOS 10.13+ intel macOS 10.13+ x86-64

multidict-4.4.0a42-cp37-cp37m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.11+ intel macOS 10.11+ x86-64 macOS 10.9+ intel macOS 10.9+ x86-64

multidict-4.4.0a42-cp37-cp37m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel macOS 10.6+ x86-64 macOS 10.7+ intel macOS 10.7+ x86-64 macOS 10.8+ intel macOS 10.8+ x86-64

multidict-4.4.0a42-cp36-cp36m-win_amd64.whl (162.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

multidict-4.4.0a42-cp36-cp36m-win32.whl (152.9 kB view details)

Uploaded CPython 3.6m Windows x86

multidict-4.4.0a42-cp36-cp36m-manylinux1_x86_64.whl (385.7 kB view details)

Uploaded CPython 3.6m

multidict-4.4.0a42-cp36-cp36m-manylinux1_i686.whl (363.9 kB view details)

Uploaded CPython 3.6m

multidict-4.4.0a42-cp35-cp35m-win_amd64.whl (161.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

multidict-4.4.0a42-cp35-cp35m-win32.whl (151.8 kB view details)

Uploaded CPython 3.5m Windows x86

multidict-4.4.0a42-cp35-cp35m-manylinux1_x86_64.whl (378.1 kB view details)

Uploaded CPython 3.5m

multidict-4.4.0a42-cp35-cp35m-manylinux1_i686.whl (356.1 kB view details)

Uploaded CPython 3.5m

multidict-4.4.0a42-cp35-cp35m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.5m macOS 10.12+ intel macOS 10.12+ x86-64 macOS 10.13+ intel macOS 10.13+ x86-64

multidict-4.4.0a42-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.5m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.11+ intel macOS 10.11+ x86-64 macOS 10.9+ intel macOS 10.9+ x86-64

multidict-4.4.0a42-cp35-cp35m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel macOS 10.6+ x86-64 macOS 10.7+ intel macOS 10.7+ x86-64 macOS 10.8+ intel macOS 10.8+ x86-64

multidict-4.4.0a42-cp34-cp34m-win_amd64.whl (158.4 kB view details)

Uploaded CPython 3.4m Windows x86-64

multidict-4.4.0a42-cp34-cp34m-win32.whl (152.3 kB view details)

Uploaded CPython 3.4m Windows x86

multidict-4.4.0a42-cp34-cp34m-manylinux1_x86_64.whl (382.6 kB view details)

Uploaded CPython 3.4m

multidict-4.4.0a42-cp34-cp34m-manylinux1_i686.whl (360.9 kB view details)

Uploaded CPython 3.4m

multidict-4.4.0a42-cp34-cp34m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl (239.1 kB view details)

Uploaded CPython 3.4m macOS 10.12+ intel macOS 10.12+ x86-64 macOS 10.13+ intel macOS 10.13+ x86-64

multidict-4.4.0a42-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl (239.1 kB view details)

Uploaded CPython 3.4m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.11+ intel macOS 10.11+ x86-64 macOS 10.9+ intel macOS 10.9+ x86-64

multidict-4.4.0a42-cp34-cp34m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl (239.1 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel macOS 10.6+ x86-64 macOS 10.7+ intel macOS 10.7+ x86-64 macOS 10.8+ intel macOS 10.8+ x86-64

File details

Details for the file multidict-4.4.0a42.tar.gz.

File metadata

  • Download URL: multidict-4.4.0a42.tar.gz
  • Upload date:
  • Size: 117.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for multidict-4.4.0a42.tar.gz
Algorithm Hash digest
SHA256 3a2d004e77103d378f9c43a4a83ecc789feff26dbaf848e01512a77fc9f981ca
MD5 f0173739296042aba6cd52f8c944f5d8
BLAKE2b-256 715d8794506055d59aa6b51a68ee4d6c76bd04f2fa14c5e63bd26a180e5295ad

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 162.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for multidict-4.4.0a42-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 37349fb788ae8e20644f79a12e658d585be30f51277a16b567fb64724564b669
MD5 ea22fa14db08b2e97bb9b72c09602dd5
BLAKE2b-256 83d98125eeec024c98bc31b97eadbc1cfcc7a999a8f24fe77c553d5463313180

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp37-cp37m-win32.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 152.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for multidict-4.4.0a42-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7989515023cdba839d968a2d13e414806fa9a9e0cb5f02a9e06197b29e0a6bff
MD5 37c4cd7f85fb5b8479a434e732adc358
BLAKE2b-256 0418d6522e2161fcbbf7e9468485dd32779510d5c7b1a6454172d200721b2960

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 386.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for multidict-4.4.0a42-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a16f7348498e7d1961ddb3c9d0a920be95dc33333380f4f881e0efc704e775c7
MD5 e8c656b5d355d4a06c003f212eab4a96
BLAKE2b-256 e894b3b86e88b594e500b12a7f21acc1e36c2f7594450abeffc0312d0e027b64

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 364.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for multidict-4.4.0a42-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 af8e07d11fc3e51147b2de46c56496cda5cfd0da65ba88543a0fe6447772c941
MD5 69c1a835f52cea8b8e41617284b01653
BLAKE2b-256 b1013002e7948c56e9fabe9ffbfc0e43734742551dde7f1802c29cea176c3074

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp37-cp37m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp37-cp37m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd353150ac97707506106487cc9ef79d2a439b7c69d916940ca4dee53d8d353e
MD5 d1092ef1a6eb461924c72003023cfe9e
BLAKE2b-256 c86aa49fee97eff277d9c1111ebd9cfb16663d7939d539fdf73122b7090ed96c

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp37-cp37m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp37-cp37m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 f7cc291c1beb6fc65de01fb203563609aae500acdaefb446db1ef8284a5933c7
MD5 2e34c6fff09917cc1c45d12c8c3d19e9
BLAKE2b-256 605ccf9449e4e8127c07bfc7b59369709fd2717633da886490cd48ac14f74a81

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp37-cp37m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp37-cp37m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl
Algorithm Hash digest
SHA256 c8491de23a3c36c564750efde81c2c14f4a37c85702a416e2106c6ea17be55ed
MD5 c289a04f859d43623510744638645748
BLAKE2b-256 7cffee1a9964b6ad0359b2de86a61018a89ae1a46432c6a99713715c56bbc247

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 162.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for multidict-4.4.0a42-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e368c8adc950ed5e87d1b11a8010ad80a0fe1328380bfc41c18f0ab26150be9a
MD5 8396d502923f2141ef5f72d50ce142d2
BLAKE2b-256 0b3162485884e7b762ceb3463101962c9acf0a1a6e51172ea9fff8dcdf3c32c7

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp36-cp36m-win32.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 152.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for multidict-4.4.0a42-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6c583650e146734572f26966908ae949b496b99c21161f7ae5980cf1e8b70f79
MD5 401e44f1acb3cc90b00d50cc72093705
BLAKE2b-256 a2a9b288b528aaabe64c1ac0043891a31ad90b493d3fc975f90eaab54a7e75d2

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 385.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for multidict-4.4.0a42-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2ef1575cb4af24dba684935f966cd861573a8f8f91dae7227c809b06e6536b7e
MD5 cf81657ad225b25eef71e5689953bd17
BLAKE2b-256 1d7b6d739cdffde4a7f644d295ac57f0a85f71ba0c86b01341782e34ee545ff3

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 363.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for multidict-4.4.0a42-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1a97f99c85738055e4d04434feef9736c7964d7fbd3ff283fc8c93ada14d321
MD5 c3f5effb9005e6e43e5150e8f023a0f9
BLAKE2b-256 49ca08689cf91ee54bf47db85933916d5dc0b25131ed06611ae7e0fa6d5db09e

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 161.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for multidict-4.4.0a42-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 41a22d70e3ee1a65399c2cb20e01af2f79e9a1ca598396617324b69953525a39
MD5 ba38a09f44abc532b0ff154942e2f19c
BLAKE2b-256 25392bdb5c7259cbb3406e3c4a2996ad543c853e13e4e27522e3a9f3b1a14727

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp35-cp35m-win32.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 151.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for multidict-4.4.0a42-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c2f625d8f7e0b49e8b7aecc15dfbdc946d36e52745ded1e1a60a55433e0cb82a
MD5 4a6f393f472eccc32634641fbeb5eb0d
BLAKE2b-256 3adcf1df59bedbfc4187dacec7efbc80d60d65e911ce4080e2f00c9b18a1fb72

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 378.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for multidict-4.4.0a42-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c390412e1e36131a6324cf63b3e32527145bbb4bb1ca063b61258bb3e10f673
MD5 c70197206f6e1b645ffd11723b06ecb2
BLAKE2b-256 02bb24df4a86c3809b094a5aadc1a3e02c50bef5806a9fd1b4b0428df9b0f1ca

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 356.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for multidict-4.4.0a42-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f6cd0ef5e576f54621151f8fa9b15e0edf199b4c26a4e9ff583635e7a68f45e
MD5 ed70ec30e157946a8a10158d9b8cc66e
BLAKE2b-256 101f2a2c7e38d4cb395848052be33ffc52fedf07dc272edd7f51a648d7d868cd

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp35-cp35m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp35-cp35m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 223e78ae9ae1728a24bc9caa3da7eaef67b48e50e0c443a35056ebfb07006e72
MD5 9aa71600202e95ddc6d6951d96895943
BLAKE2b-256 96a7cb8c901c118f542ff5d651bf6bb63599229523a463e6c0bb1ed9f07b16cf

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 98c3700b664bf30281b3421ac82a6bfad89456294a4e18335b61b5a39521ec3a
MD5 c0a8e687fc15aff912edb6b4efea7b5f
BLAKE2b-256 1ed3ae9d42ab933953e9408407c1dfd794afc0fd21f530acec31959de51db1ca

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp35-cp35m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp35-cp35m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl
Algorithm Hash digest
SHA256 56d2cc2112ab7f4c895f603967d08823bf571761d6ec4301556d6d7088b4af07
MD5 bbb42c352ac4e1e71a8a64aaad92e362
BLAKE2b-256 78e24d92c6285790e304d34170db3e132a5fa76fd2a7319bc8b063474517b77d

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 158.4 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for multidict-4.4.0a42-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 279dd242c94755a1758cd29bd806d8f3a043e8ea7d3331b4909c29c56b74d56f
MD5 f76b0a1c33391088fc86675ebc803070
BLAKE2b-256 c25e5246e3dc69b8d1b39893a3575f1517b3cc6118f75d26682c36baca5a0f94

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp34-cp34m-win32.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 152.3 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for multidict-4.4.0a42-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 f43b08c30cabcc55515cbc04bad1198e7cf63ec3e786dbac5bbbdfef162bef0c
MD5 7b667d0a22c8b00bea72c94ddd3c0c04
BLAKE2b-256 4877f42619e0bdb46637353e818dc2906e76c5279d89b98807906c9f38a53077

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 382.6 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for multidict-4.4.0a42-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5409ce3d1a6e47981e4c90b278afce02123f9e8dd3000dc4d9d250bdf4b851b4
MD5 595c2dfcc33c03a0a8eece8e56d8fce8
BLAKE2b-256 7d28b659c295c736721655f2910f60cfe9f1d1b1a90d5a813a86f2fe90a9d110

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: multidict-4.4.0a42-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for multidict-4.4.0a42-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e3259c8052601979cdfa46101fe86fcc7e3fb72015695553eeb9491c7825e7b
MD5 656597c5264de8f3024ea5684706f94a
BLAKE2b-256 cc960535e781a65886a36b3746f934eb933c6e102dc62be9e38e6e88407b0cca

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp34-cp34m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp34-cp34m-macosx_10_12_intel.macosx_10_12_x86_64.macosx_10_13_intel.macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 23e3abf4c2d4117c267f16ee8dc495d7ada99f7ef3eb2d974ff355d51463a63b
MD5 1ca17ceff162bedd4bf7a12547bcae2c
BLAKE2b-256 f728a9607fa2b0ae06a0e74c70069ea8838483b4e16d1346a4a7bbf94a18f448

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 8e5f5fe483d219cfb3504b76205e0f37f9c598fea54947edcb7d3e27a22b424d
MD5 edfed8230042df0f899d9bc3b8a2895d
BLAKE2b-256 05532765023727d7d40a39537d77295b45e2829392c5df118a39e2c7b9afc760

See more details on using hashes here.

Provenance

File details

Details for the file multidict-4.4.0a42-cp34-cp34m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl.

File metadata

File hashes

Hashes for multidict-4.4.0a42-cp34-cp34m-macosx_10_6_intel.macosx_10_6_x86_64.macosx_10_7_intel.macosx_10_7_x86_64.macosx_10_8_intel.macosx_10_8_x86_64.whl
Algorithm Hash digest
SHA256 719fbe0e277cab67b779f49b950067ac1af3d5c962a14d680772a51e2ddad94d
MD5 012d7ad6ce80966ef1e6a381614d6d2f
BLAKE2b-256 8f06a0335cb9b6730c131652fa33d1bcd27fbfed57ac2ff09ff323f1f7ec3826

See more details on using hashes here.

Provenance

Supported by

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