multidict-4.1.0-cp36-cp36m-linux_armv7l.whl

STEP 1: Have you installed this repository?

If not, run this installation script command:

curl -s https://packagecloud.io/install/repositories/quan/python3-arm/script.python.sh | bash
copy
curl -s https://packagecloud.io/install/repositories/quan/python3-arm/script.python.sh | bash

STEP 2: Install the package
sudo pip install multidict==4.1.0

multidict implementation

Full description:
  =========
multidict
=========

.. image:: https://img.shields.io/pypi/v/multidict.svg
   :target: https://pypi.org/project/multidict

.. image:: https://readthedocs.org/projects/multidict/badge/?version=latest
   :target: http://multidict.readthedocs.org/en/latest/?badge=latest

.. image:: https://img.shields.io/travis/aio-libs/multidict/master.svg?label=Linux%20build%20%40%20Travis%20CI
   :align: right
   :target: http://travis-ci.org/aio-libs/multidict

.. image:: https://img.shields.io/appveyor/ci/asvetlov/multidict/master.svg?label=Windows%20build%20%40%20Appveyor
   :align: right
   :target: https://ci.appveyor.com/project/asvetlov/multidict/branch/master

.. image:: https://img.shields.io/pypi/pyversions/multidict.svg
   :target: https://pypi.org/project/multidict

.. image:: https://codecov.io/gh/aio-libs/multidict/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/aio-libs/multidict
   :alt: Coverage metrics

.. image:: https://badges.gitter.im/Join%20Chat.svg
   :target: https://gitter.im/aio-libs/Lobby
   :alt: 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


.. _aiohttp: https://github.com/KeepSafe/aiohttp
.. _Cython: http://cython.org/


Changelog
---------
See `RTD page <http://multidict.readthedocs.org/en/latest/changes.html>`_.

Checksums

MD5 a4516658ec87083cd3f370d70b07a2de
SHA1 dd26a9ab80e86c3b87648155ca9c2107b7035c1b
SHA256 d2768bf1646af3e9c6ade311af53aafa94ea77825e088196a1d1d52b1086347b
SHA512 3a7f565051c5cb03d121ea0c3d247ddea31f58f75923dc1f0c6dd66bfaff51082de45f3cedaab0f9709b20c5eda9a3bce4b4efb5d3a36b8a016a722e4b96f71c

Requires

  • requires-python: >=3.4.1

Files

  • multidict/_multidict.pyx
  • multidict/_multidict.cpython-36m-arm-linux-gnueabihf.so
  • multidict/_multidict.c
  • multidict/_multidict_py.py
  • multidict/_istr.pyd
  • multidict/_istr.cpython-36m-arm-linux-gnueabihf.so
  • multidict/_istr.c
  • multidict/_compat.py
  • multidict/_abc.py
  • multidict/__init__.pyi
  • multidict/__init__.py
  • multidict-4.1.0.dist-info/WHEEL
  • multidict-4.1.0.dist-info/top_level.txt
  • multidict-4.1.0.dist-info/RECORD
  • multidict-4.1.0.dist-info/metadata.json
  • multidict-4.1.0.dist-info/METADATA
  • multidict-4.1.0.dist-info/LICENSE.txt
  • multidict-4.1.0.dist-info/DESCRIPTION.rst

Uploaded

about 6 years ago

Package Size

435 KB

Downloads

49

wget

wget --content-disposition "https://packagecloud.io/quan/python3-arm/packages/python/multidict-4.1.0-cp36-cp36m-linux_armv7l.whl/download?distro_version_id=166"

Homepage

https://github.com/aio-libs/multidict/

License

Apache 2