Skip to main content

multidict implementation

Project description

GitHub status for master branch Coverage metrics PyPI Documentationb Python versions 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 C Extensions for sake of 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 operation system (or Alpine Linux inside a Docker) the Tarball will be used to compile the library from sources. It requires C compiler and Python headers installed.

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

$ MULTIDICT_NO_EXTENSIONS=1 pip install multidict

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

Changelog

See RTD page.

Project details


Release history Release notifications | RSS feed

This version

5.1.0

Download files

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

Source Distribution

multidict-5.1.0.tar.gz (53.7 kB view details)

Uploaded Source

Built Distributions

multidict-5.1.0-cp39-cp39-win_amd64.whl (48.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

multidict-5.1.0-cp39-cp39-win32.whl (46.6 kB view details)

Uploaded CPython 3.9 Windows x86

multidict-5.1.0-cp39-cp39-manylinux2014_x86_64.whl (151.2 kB view details)

Uploaded CPython 3.9

multidict-5.1.0-cp39-cp39-manylinux2014_s390x.whl (154.6 kB view details)

Uploaded CPython 3.9

multidict-5.1.0-cp39-cp39-manylinux2014_ppc64le.whl (159.2 kB view details)

Uploaded CPython 3.9

multidict-5.1.0-cp39-cp39-manylinux2014_i686.whl (147.7 kB view details)

Uploaded CPython 3.9

multidict-5.1.0-cp39-cp39-manylinux2014_aarch64.whl (154.6 kB view details)

Uploaded CPython 3.9

multidict-5.1.0-cp39-cp39-manylinux1_i686.whl (147.7 kB view details)

Uploaded CPython 3.9

multidict-5.1.0-cp39-cp39-macosx_10_14_x86_64.whl (49.1 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

multidict-5.1.0-cp38-cp38-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

multidict-5.1.0-cp38-cp38-win32.whl (46.6 kB view details)

Uploaded CPython 3.8 Windows x86

multidict-5.1.0-cp38-cp38-manylinux2014_x86_64.whl (159.4 kB view details)

Uploaded CPython 3.8

multidict-5.1.0-cp38-cp38-manylinux2014_s390x.whl (163.2 kB view details)

Uploaded CPython 3.8

multidict-5.1.0-cp38-cp38-manylinux2014_ppc64le.whl (168.2 kB view details)

Uploaded CPython 3.8

multidict-5.1.0-cp38-cp38-manylinux2014_i686.whl (155.6 kB view details)

Uploaded CPython 3.8

multidict-5.1.0-cp38-cp38-manylinux2014_aarch64.whl (163.2 kB view details)

Uploaded CPython 3.8

multidict-5.1.0-cp38-cp38-manylinux1_i686.whl (155.6 kB view details)

Uploaded CPython 3.8

multidict-5.1.0-cp38-cp38-macosx_10_14_x86_64.whl (49.2 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

multidict-5.1.0-cp37-cp37m-win_amd64.whl (48.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

multidict-5.1.0-cp37-cp37m-win32.whl (46.6 kB view details)

Uploaded CPython 3.7m Windows x86

multidict-5.1.0-cp37-cp37m-manylinux2014_x86_64.whl (142.5 kB view details)

Uploaded CPython 3.7m

multidict-5.1.0-cp37-cp37m-manylinux2014_s390x.whl (142.4 kB view details)

Uploaded CPython 3.7m

multidict-5.1.0-cp37-cp37m-manylinux2014_ppc64le.whl (150.1 kB view details)

Uploaded CPython 3.7m

multidict-5.1.0-cp37-cp37m-manylinux2014_i686.whl (138.1 kB view details)

Uploaded CPython 3.7m

multidict-5.1.0-cp37-cp37m-manylinux2014_aarch64.whl (146.4 kB view details)

Uploaded CPython 3.7m

multidict-5.1.0-cp37-cp37m-manylinux1_i686.whl (138.1 kB view details)

Uploaded CPython 3.7m

multidict-5.1.0-cp37-cp37m-macosx_10_14_x86_64.whl (49.0 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

multidict-5.1.0-cp36-cp36m-win_amd64.whl (48.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

multidict-5.1.0-cp36-cp36m-win32.whl (46.6 kB view details)

Uploaded CPython 3.6m Windows x86

multidict-5.1.0-cp36-cp36m-manylinux2014_x86_64.whl (141.5 kB view details)

Uploaded CPython 3.6m

multidict-5.1.0-cp36-cp36m-manylinux2014_s390x.whl (141.4 kB view details)

Uploaded CPython 3.6m

multidict-5.1.0-cp36-cp36m-manylinux2014_ppc64le.whl (149.2 kB view details)

Uploaded CPython 3.6m

multidict-5.1.0-cp36-cp36m-manylinux2014_i686.whl (137.2 kB view details)

Uploaded CPython 3.6m

multidict-5.1.0-cp36-cp36m-manylinux2014_aarch64.whl (145.4 kB view details)

Uploaded CPython 3.6m

multidict-5.1.0-cp36-cp36m-manylinux1_i686.whl (137.2 kB view details)

Uploaded CPython 3.6m

multidict-5.1.0-cp36-cp36m-macosx_10_14_x86_64.whl (49.0 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: multidict-5.1.0.tar.gz
  • Upload date:
  • Size: 53.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0.tar.gz
Algorithm Hash digest
SHA256 25b4e5f22d3a37ddf3effc0710ba692cfc792c2b9edfb9c05aefe823256e84d5
MD5 df8b37f069809779214d6b80b250e45b
BLAKE2b-256 1c74e8b46156f37ca56d10d895d4e8595aa2b344cff3c1fb3629ec97a8656ccb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 48.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7df80d07818b385f3129180369079bd6934cf70469f99daaebfac89dca288359
MD5 44d1a321924f10d2cc4005d590b2f638
BLAKE2b-256 3786e93d9d7aac5342704e59d2102715774d11aaf3ebbd92beee640eabc0fead

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fc13a9524bc18b6fb6e0dbec3533ba0496bbed167c56d0aabefd965584557d80
MD5 ce2959eef7d08ec37d1acf4062a1343c
BLAKE2b-256 bc148a2e3274730a3555235a1c8d0cd92c98aebb6dfeefb5d808c4e71b902b0c

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 151.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecc771ab628ea281517e24fd2c52e8f31c41e66652d07599ad8818abaad38cda
MD5 2963eac29690a330ed98aba012039819
BLAKE2b-256 20aced5b78f2fb5420882cff10fddccd9c2d1edda2ac155ada2fe21dc15d48d3

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 154.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ace010325c787c378afd7f7c1ac66b26313b3344628652eacd149bdd23c68841
MD5 2bb76a9a94354e51506ef492af05bdfe
BLAKE2b-256 0016f4b77814e96be92c9c374fec9ce99ddad4356e7b26b0535117b265835bff

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 159.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46dd362c2f045095c920162e9307de5ffd0a1bfbba0a6e990b344366f55a30c1
MD5 52f15d378827246184cc105c16b48cab
BLAKE2b-256 4d8fc46b4da31c8b1362f1c9788efc1dac1db8675e12752136734f85f870e58c

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 147.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 806068d4f86cb06af37cd65821554f98240a19ce646d3cd24e1c33587f313eb8
MD5 2b284f56a36d26c5cc0f54bcaa8c1c6b
BLAKE2b-256 31cb8fe413969e7df45ce7cadb644f6a0827554f21ffeb86fcf9577d7a6204d6

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 154.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b47a43177a5e65b771b80db71e7be76c0ba23cc8aa73eeeb089ed5219cdbe27d
MD5 dcaa617e77e5a151f2210dec860386f0
BLAKE2b-256 07100be4ac5cb42a820766732860664d7f7590386902ad265471d4064f7bd152

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 147.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5c65bdf4484872c4af3150aeebe101ba560dcfb34488d9a8ff8dbcd21079647
MD5 8f2b19a604dcb5116cf44671721d4260
BLAKE2b-256 a00b2b28fa8de1951d275f2b55c2d04bb185870a50ad47e759cc61f173199a29

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 49.1 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b797515be8743b771aa868f83563f789bbd4b236659ba52243b735d80b29ed93
MD5 5afed84e4b22309146f1d4208f0e5b97
BLAKE2b-256 054bade8dc9ab5b9f5927b7aa3daa0c540998f86a9d1598fb2e9f27a00b8fbe8

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 49.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 929006d3c2d923788ba153ad0de8ed2e5ed39fdbe8e7be21e2f22ed06c6783d3
MD5 0d5e67751ae9ab4777e2b8a1cf2b22d7
BLAKE2b-256 c7a5cfce15381f0934345fc1737fb277450616066190bc140a67aed9b860d47e

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 07b42215124aedecc6083f1ce6b7e5ec5b50047afa701f3442054373a6deb656
MD5 17b17cf221613dc86f487903235619d8
BLAKE2b-256 5e552c1c16fa29d0c1e4e2ad73c24fe130f0d879e15a3de9831144e0d34e3974

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 159.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37e5438e1c78931df5d3c0c78ae049092877e5e9c02dd1ff5abb9cf27a5914ea
MD5 0a72b0dd29b86095a65bb6b73d9dd85a
BLAKE2b-256 866d176bed53e4575edfb016f405d991c70144f2d00c0c9b00d686954fc6ba4b

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 163.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 585fd452dd7782130d112f7ddf3473ffdd521414674c33876187e101b588738a
MD5 7c5c83687fad98f73785c3209c9f404c
BLAKE2b-256 32797de539ed1c0e33de247caf02bf513a5ee02cab4a1023789ce2c6021c9783

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 168.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d81eddcb12d608cc08081fa88d046c78afb1bf8107e6feab5d43503fea74a635
MD5 8b17bdaa0f18b9e312e6198919467339
BLAKE2b-256 cbd2d23828d9b5f34d81807303d7850779f27893ef8790275a8ee5006bb21b46

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 155.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e929169f9c090dae0646a011c8b058e5e5fb391466016b39d21745b48817fd7
MD5 0c5a81190f3f30b25b58cbfe1fe958b0
BLAKE2b-256 0d5c1d10e9c8be8b875e173a7b7840104ae108e0e9018a7720d4131b64e1162e

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 163.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc862056f76443a0db4509116c5cd480fe1b6a2d45512a653f9a855cc0517456
MD5 15b3ef9ff24e9ed2477082eef0a3a5b1
BLAKE2b-256 8e9e31994e42cc7ced49241b1437f7831a01c2240c28c4210de60d6e7899d1bb

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 155.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e3c84e6c67eba89c2dbcee08504ba8644ab4284863452450520dad8f1e89b79
MD5 361d225d3f327b30e2b6d01b61d1490f
BLAKE2b-256 d296ed8c2c1809196e98c53fb485b68859741de5451cc5f9246c388268db538d

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 49.2 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 54fd1e83a184e19c598d5e70ba508196fd0bbdd676ce159feb412a4a6664f952
MD5 ace0eef9b8d958e09ed5f25c07814587
BLAKE2b-256 6ee6750db6c54cd3c7830501ce6aae2418d4648ac1d7f8ac39e71658543e95dc

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 48.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 05c20b68e512166fddba59a918773ba002fdd77800cad9f55b59790030bab632
MD5 09c643e0471e7f6b8c830eac592b8784
BLAKE2b-256 5d28b0de1212a56e48f07282628a5dbac7852135553a5dfd371c6d6369e9511f

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f200755768dc19c6f4e2b672421e0ebb3dd54c38d5a4f262b872d8cfcc9e93b5
MD5 d1ec36b42a115d9fccd0eb8a4660bcd1
BLAKE2b-256 cca0f4628c414179d9802ca9485a8f3425c30591bf9f1d3f8027bb2f08c8296e

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 142.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cf3443199b83ed9e955f511b5b241fd3ae004e3cb81c58ec10f4fe47c7dce37
MD5 e2fde4e8e264d62d839c7d0a8fc52895
BLAKE2b-256 7ca64123b8165acbe773d1a8dc8e3f0d1edea16d29f7de018eda769abb56bd30

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 142.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a4d5ce640e37b0efcc8441caeea8f43a06addace2335bd11151bc02d2ee31f9
MD5 886d15b62f1d896b9bcaed513a2c1a71
BLAKE2b-256 f78d6fc4653f78f9a14ce49eabf8b5fda64744346d3c04c92ef1ba1d6533cd15

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 150.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 051012ccee979b2b06be928a6150d237aec75dd6bf2d1eeeb190baf2b05abc93
MD5 92c36c701f2fd7b86d12ca0696f39cae
BLAKE2b-256 b157dd2d6ee9254d38354c554dd496b3819fabf89fa0ba1907bafbe4de893958

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 138.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a041b76d13706b7fff23b9fc83117c7b8fe8d5fe9e6be45eee72b9baa75f348
MD5 6e84a30ace790609c9e85696cacf8cd2
BLAKE2b-256 97a17106a7a6e4cd8335d31b82f2f8b9a09ed29c630bc163df8488782424621d

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 146.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b186eb7d6ae7c06eb4392411189469e6a820da81447f46c0072a41c748ab73f
MD5 258997bd58c9005bbc051e70b61e36c6
BLAKE2b-256 762a5f4a5df17716e5424455974fe93e0f4bc6adc99c15ab5e34f39fb7736b92

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 138.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 018132dbd8688c7a69ad89c4a3f39ea2f9f33302ebe567a879da8f4ca73f0d0a
MD5 7574e1bcfa269c9e16378b2f666dd51e
BLAKE2b-256 bac7d9b05562d18311184d09dcf829bf3ac4aee3ff7267fdb95d7fbe5706fb11

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 49.0 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 46c73e09ad374a6d876c599f2328161bcd95e280f84d2060cf57991dec5cfe76
MD5 bd669a2c63192f2fe4b6b043974492bc
BLAKE2b-256 bf1f6ccb2f678e6d147cc6eec00a5b8615f9fa8d8a8271cc98a2ffa0343c9063

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 48.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3a4f32116f8f72ecf2a29dabfb27b23ab7cdc0ba807e8459e59a93a9be9506f6
MD5 8d96c0a6dd52a82c28a06697b58699ff
BLAKE2b-256 ab9f9663fa1f11d29fc7b87ebc3c461735a04275392568f7a5dba40378d0f376

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2f1a132f1c88724674271d636e6b7351477c27722f2ed789f719f9e3545a3d26
MD5 768f881fc48fdd0972a89c2b80aeafc5
BLAKE2b-256 87e5ab43d2168fc055a2a719c7f49e9e2195d6763648c83d6354239f2fc8a87b

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 141.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e68965192c4ea61fff1b81c14ff712fc7dc15d2bd120602e4a3494ea6584224
MD5 9838227b0b7cffc10726ceec4432b78d
BLAKE2b-256 a135b22524d6b9cacfb4c5eff413a069bbc17c6ea628e54da5c6c989998ced5f

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 141.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 830f57206cc96ed0ccf68304141fec9481a096c4d2e2831f311bde1c404401da
MD5 67858aecde32070e448d2b5225258e05
BLAKE2b-256 0cbfb941cc5ce697482c95a62f1d42b0393656859a3dde920af774885df35ed6

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 149.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9436dc58c123f07b230383083855593550c4d301d2532045a17ccf6eca505f6d
MD5 f05bb31945eff05df4fcc70218f31903
BLAKE2b-256 049a7842e171a47d175740f31212f73cffed551d8431787dc944e76345f27141

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 137.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ab820665e67373de5802acae069a6a05567ae234ddb129f31d290fc3d1aa56d
MD5 61234ccec4d9f82b3f0e1e38f8fc8218
BLAKE2b-256 b9e033a12b19af6dc2205b22094a02e4e3b41bc7cb3185701cee45ece6dc70f9

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 145.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f21756997ad8ef815d8ef3d34edd98804ab5ea337feedcd62fb52d22bf531281
MD5 9ea9428badbb20703447105d4643d5ec
BLAKE2b-256 bde2b2223435490f7dad27e5580f4eaf305da8cb3d9f02d89d79653744104937

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 137.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9dd6e9b1a913d096ac95d0399bd737e00f2af1e1594a787e00f7975778c8b2bf
MD5 06b73708695a9c52218ff1262e9fa553
BLAKE2b-256 83cb1a087a149884331ab16609f0bc2c76b2055c52b370256e9f561d64905d48

See more details on using hashes here.

Provenance

File details

Details for the file multidict-5.1.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: multidict-5.1.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 49.0 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for multidict-5.1.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b7993704f1a4b204e71debe6095150d43b2ee6150fa4f44d6d966ec356a8d61f
MD5 0fcf3be48b995728b66aea3ddd8bc8a0
BLAKE2b-256 a42f003fa5ed3c1bcb23c53a5b5c663b67dbc71706733d823eea7e0125647968

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