multidict implementation
Project description
Multidicts are useful for working with HTTP headers, URL query args etc.
The code was extracted from aiohttp library.
Introduction
HTTP Headers and URL query string require specific data structure: multidict. It behaves mostly like a dict but it can have several values for the same key.
multidict has four multidict classes: MultiDict, MultiDictProxy, CIMultiDict and CIMultiDictProxy.
Immutable proxies (MultiDictProxy and CIMultiDictProxy) provide a dynamic view on 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 assumes the keys are case insensitive, e.g.:
>>> dct = CIMultiDict(a='val') >>> 'A' in dct True >>> dct['A'] 'val'
Keys should be str instances.
The library has optional Cython optimization for sake of speed.
License
Apache 2
1.1.0 (2016-06-04)
- Don’t double-iterate during MultiDict initialization #3
- Fix CIMultiDict.pop: it is case insensitive now #1
1.0.3 (2016-03-24)
- Add missing MANIFEST.in
1.0.2 (2016-03-24)
- Fix setup build
1.0.0 (2016-02-19)
- Initial implementation
Project details
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
---|---|---|---|
multidict-1.1.0b5-cp34-cp34m-win32.whl (124.0 kB) Copy SHA256 hash SHA256 | Wheel | cp34 | |
multidict-1.1.0b5-cp34-cp34m-win_amd64.whl (131.6 kB) Copy SHA256 hash SHA256 | Wheel | cp34 | |
multidict-1.1.0b5-cp35-cp35m-win32.whl (122.1 kB) Copy SHA256 hash SHA256 | Wheel | cp35 | |
multidict-1.1.0b5-cp35-cp35m-win_amd64.whl (132.3 kB) Copy SHA256 hash SHA256 | Wheel | cp35 | |
multidict-1.1.0b5.tar.gz (89.4 kB) Copy SHA256 hash SHA256 | Source | None |