{ "info": { "author": "Ian Cordasco, Cory Benfield", "author_email": "graffatcolmingov@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython" ], "description": "The Requests Toolbelt\n=====================\n\nThis is just a collection of utilities for `python-requests`_, but don't \nreally belong in ``requests`` proper. The minimum tested requests version is \n``2.1.0``. In reality, the toolbelt should work with ``2.0.1`` as well, but \nsome idiosyncracies prevent effective or sane testing on that version.\n\n``pip install requests-toolbelt`` to get started!\n\n\nmultipart/form-data Encoder\n---------------------------\n\nThe main attraction is a streaming multipart form-data object, ``MultipartEncoder``.\nIts API looks like this:\n\n.. code-block:: python\n\n from requests_toolbelt import MultipartEncoder\n import requests\n\n m = MultipartEncoder(\n fields={'field0': 'value', 'field1': 'value',\n 'field2': ('filename', open('file.py', 'rb'), 'text/plain')}\n )\n\n r = requests.post('http://httpbin.org/post', data=m,\n headers={'Content-Type': m.content_type})\n\n\nYou can also use ``multipart/form-data`` encoding for requests that don't\nrequire files:\n\n.. code-block:: python\n\n from requests_toolbelt import MultipartEncoder\n import requests\n\n m = MultipartEncoder(fields={'field0': 'value', 'field1': 'value'})\n\n r = requests.post('http://httpbin.org/post', data=m,\n headers={'Content-Type': m.content_type})\n\n\nOr, you can just create the string and examine the data:\n\n.. code-block:: python\n\n # Assuming `m` is one of the above\n m.to_string() # Always returns unicode\n\n\nUser-Agent constructor\n----------------------\n\nYou can easily construct a requests-style ``User-Agent`` string::\n\n from requests_toolbelt import user_agent\n\n headers = {\n 'User-Agent': user_agent('my_package', '0.0.1')\n }\n\n r = requests.get('https://api.github.com/users', headers=headers)\n\n\nSSLAdapter\n----------\n\nThe ``SSLAdapter`` was originally published on `Cory Benfield's blog`_. \nThis adapter allows the user to choose one of the SSL protocols made available \nin Python's ``ssl`` module for outgoing HTTPS connections:\n\n.. code-block:: python\n\n from requests_toolbelt import SSLAdapter\n import requests\n import ssl\n\n s = requests.Session()\n s.mount('https://', SSLAdapter(ssl.PROTOCOL_TLSv1))\n\ncookies/ForgetfulCookieJar\n--------------------------\n\nThe ``ForgetfulCookieJar`` prevents a particular requests session from storing \ncookies:\n\n.. code-block:: python\n\n from requests_toolbelt.cookies.forgetful import ForgetfulCookieJar\n\n session = requests.Session()\n session.cookies = ForgetfulCookieJar()\n\nKnown Issues\n------------\n\nOn Python 3.3.0 and 3.3.1, the standard library's ``http`` module will fail\nwhen passing an instance of the ``MultipartEncoder``. This is fixed in later\nminor releases of Python 3.3. Please consider upgrading to a later minor\nversion or Python 3.4. *There is absolutely nothing this library can do to\nwork around that bug.*\n\nContributing\n------------\n\nPlease read the `suggested workflow\n`_ for\ncontributing to this project.\n\nPlease report any bugs on the `issue tracker`_\n\n.. _Cory Benfield's blog: https://lukasa.co.uk/2013/01/Choosing_SSL_Version_In_Requests/\n.. _python-requests: https://github.com/kennethreitz/requests\n.. _issue tracker: https://github.com/requests/toolbelt/issues\n\n\nHistory\n=======\n\n0.9.1 -- 2019-01-29\n-------------------\n\nFixed Bugs\n~~~~~~~~~~\n\n- Fix import of pyOpenSSL shim from urllib3 for PKCS12 adapter\n\n0.9.0 -- 2019-01-29\n-------------------\n\nNew Features\n~~~~~~~~~~~~\n\n- Add X509 Adapter that can handle PKCS12 \n- Add stateless solution for streaming files by MultipartEncoder from one host to another (in chunks)\n\nFixed Bugs\n~~~~~~~~~~\n\n- Update link to example\n- Move import of ``ABCs`` from collections into version-specific part of\n _compat module\n- Fix backwards incompatibility in ``get_encodings_from_content``\n- Correct callback documentation for ``MultipartEncoderMonitor``\n- Fix bug when ``MultipartEncoder`` is asked to encode zero parts\n- Correct the type of non string request body dumps\n- Removed content from being stored in MultipartDecoder\n- Fix bug by enabling support for contenttype with capital letters. \n- Coerce proxy URL to bytes before dumping request\n- Avoid bailing out with exception upon empty response reason\n- Corrected Pool documentation\n- Corrected parentheses match in example usage\n- Fix \"oject\" to \"object\" in ``MultipartEncoder``\n- Fix URL for the project after the move \n- Add fix for OSX TCPKeepAliveAdapter\n\nMiscellaneous\n~~~~~~~~~~~~~\n\n- Remove py33 from testing and add Python 3.6 and nightly testing to the travis matrix.\n\n0.8.0 -- 2017-05-20\n-------------------\n\nMore information about this release can be found on the `0.8.0 milestone`_.\n\nNew Features\n~~~~~~~~~~~~\n\n- Add ``UserAgentBuilder`` to provide more control over generated User-Agent\n strings.\n\nFixed Bugs\n~~~~~~~~~~\n\n- Include ``_validate_certificate`` in the lits of picked attributes on the\n ``AppEngineAdapter``.\n- Fix backwards incompatibility in ``get_encodings_from_content``\n\n.. _0.8.0 milestone:\n https://github.com/requests/toolbelt/milestones/0.8.0\n\n0.7.1 -- 2017-02-13\n-------------------\n\nMore information about this release can be found on the `0.7.1 milestone`_.\n\nFixed Bugs\n~~~~~~~~~~\n\n- Fixed monkey-patching for the AppEngineAdapter.\n\n- Make it easier to disable certificate verification when monkey-patching\n AppEngine.\n\n- Handle ``multipart/form-data`` bodies without a trailing ``CRLF``.\n\n\n.. links\n.. _0.7.1 milestone:\n https://github.com/requests/toolbelt/milestone/9\n\n0.7.0 -- 2016-07-21\n-------------------\n\nMore information about this release can be found on the `0.7.0 milestone`_.\n\nNew Features\n~~~~~~~~~~~~\n\n- Add ``BaseUrlSession`` to allow developers to have a session that has a\n \"Base\" URL. See the documentation for more details and examples.\n\n- Split the logic of ``stream_response_to_file`` into two separate functions:\n\n * ``get_download_file_path`` to generate the file name from the Response.\n\n * ``stream_response_to_file`` which will use ``get_download_file_path`` if\n necessary\n\nFixed Bugs\n~~~~~~~~~~\n\n- Fixed the issue for people using *very* old versions of Requests where they\n would see an ImportError from ``requests_toolbelt._compat`` when trying to\n import ``connection``.\n\n\n.. _0.7.0 milestone:\n https://github.com/requests/toolbelt/milestones/0.7.0\n\n0.6.2 -- 2016-05-10\n-------------------\n\nFixed Bugs\n~~~~~~~~~~\n\n- When passing a timeout via Requests, it was not appropriately translated to\n the timeout that the urllib3 code was expecting.\n\n0.6.1 -- 2016-05-05\n-------------------\n\nFixed Bugs\n~~~~~~~~~~\n\n- Remove assertion about request URLs in the AppEngineAdapter.\n\n- Prevent pip from installing requests 3.0.0 when that is released until we\n are ready to handle it.\n\n0.6.0 -- 2016-01-27\n-------------------\n\nMore information about this release can be found on the `0.6.0 milestone`_.\n\nNew Features\n~~~~~~~~~~~~\n\n- Add ``AppEngineAdapter`` to support developers using Google's AppEngine\n platform with Requests.\n\n- Add ``GuessProxyAuth`` class to support guessing between Basic and Digest\n Authentication for proxies.\n\nFixed Bugs\n~~~~~~~~~~\n\n- Ensure that proxies use the correct TLS version when using the\n ``SSLAdapter``.\n\n- Fix an ``AttributeError`` when using the ``HTTPProxyDigestAuth`` class.\n\nMiscellaneous\n~~~~~~~~~~~~~\n\n- Drop testing support for Python 3.2. virtualenv and pip have stopped\n supporting it meaning that it is harder to test for this with our CI\n infrastructure. Moving forward we will make a best-effort attempt to\n support 3.2 but will not test for it.\n\n\n.. _0.6.0 milestone:\n https://github.com/requests/toolbelt/milestones/0.6.0\n\n0.5.1 -- 2015-12-16\n-------------------\n\nMore information about this release can be found on the `0.5.1 milestone`_.\n\nFixed Bugs\n~~~~~~~~~~\n\n- Now papers over the differences in requests' ``super_len`` function from\n versions prior to 2.9.0 and versions 2.9.0 and later.\n\n\n.. _0.5.1 milestone:\n https://github.com/requests/toolbelt/milestones/0.5.1\n\n0.5.0 -- 2015-11-24\n-------------------\n\nMore information about this release can be found on the `milestone\n`_\nfor 0.5.0.\n\nNew Features\n~~~~~~~~~~~~\n\n- The ``tee`` submodule was added to ``requests_toolbelt.downloadutils``. It\n allows you to iterate over the bytes of a response while also writing them\n to a file. The ``tee.tee`` function, expects you to pass an open file\n object, while ``tee.tee_to_file`` will use the provided file name to open\n the file for you.\n\n- Added a new parameter to ``requests_toolbelt.utils.user_agent`` that allows\n the user to specify additional items.\n\n- Added nested form-data helper,\n ``requests_toolbelt.utils.formdata.urlencode``.\n\n- Added the ``ForgetfulCookieJar`` to ``requests_toolbelt.cookies``.\n\n- Added utilities for dumping the information about a request-response cycle\n in ``requests_toolbelt.utils.dump``.\n\n- Implemented the API described in the ``requests_toolbelt.threaded`` module\n docstring, i.e., added ``requests_toolbelt.threaded.map`` as an available\n function.\n\nFixed Bugs\n~~~~~~~~~~\n\n- Now papers over the API differences in versions of requests installed from\n system packages versus versions of requests installed from PyPI.\n\n- Allow string types for ``SourceAddressAdapter``.\n\n0.4.0 -- 2015-04-03\n-------------------\n\nFor more information about this release, please see `milestone 0.4.0\n`_\non the project's page.\n\nNew Features\n~~~~~~~~~~~~\n\n- A naive implemenation of a thread pool is now included in the toolbelt. See\n the docs in ``docs/threading.rst`` or on `Read The Docs\n `_.\n\n- The ``StreamingIterator`` now accepts files (such as ``sys.stdin``) without\n a specific length and will properly stream them.\n\n- The ``MultipartEncoder`` now accepts exactly the same format of fields as\n requests' ``files`` parameter does. In other words, you can now also pass in\n extra headers to add to a part in the body. You can also now specify a\n custom ``Content-Type`` for a part.\n\n- An implementation of HTTP Digest Authentication for Proxies is now included.\n\n- A transport adapter that allows a user to specify a specific Certificate\n Fingerprint is now included in the toolbelt.\n\n- A transport adapter that simplifies how users specify socket options is now\n included.\n\n- A transport adapter that simplifies how users can specify TCP Keep-Alive\n options is now included in the toolbelt.\n\n- Deprecated functions from ``requests.utils`` are now included and\n maintained.\n\n- An authentication tool that allows users to specify how to authenticate to\n several different domains at once is now included.\n\n- A function to save streamed responses to disk by analyzing the\n ``Content-Disposition`` header is now included in the toolbelt.\n\nFixed Bugs\n~~~~~~~~~~\n\n- The ``MultipartEncoder`` will now allow users to upload files larger than\n 4GB on 32-bit systems.\n\n- The ``MultipartEncoder`` will now accept empty unicode strings for form\n values.\n\n0.3.1 -- 2014-06-23\n-------------------\n\n- Fix the fact that 0.3.0 bundle did not include the ``StreamingIterator``\n\n0.3.0 -- 2014-05-21\n-------------------\n\nBug Fixes\n~~~~~~~~~\n\n- Complete rewrite of ``MultipartEncoder`` fixes bug where bytes were lost in\n uploads\n\nNew Features\n~~~~~~~~~~~~\n\n- ``MultipartDecoder`` to accept ``multipart/form-data`` response bodies and\n parse them into an easy to use object.\n\n- ``SourceAddressAdapter`` to allow users to choose a local address to bind\n connections to.\n\n- ``GuessAuth`` which accepts a username and password and uses the\n ``WWW-Authenticate`` header to determine how to authenticate against a\n server.\n\n- ``MultipartEncoderMonitor`` wraps an instance of the ``MultipartEncoder``\n and keeps track of how many bytes were read and will call the provided\n callback.\n\n- ``StreamingIterator`` will wrap an iterator and stream the upload instead of\n chunk it, provided you also provide the length of the content you wish to\n upload.\n\n0.2.0 -- 2014-02-24\n-------------------\n\n- Add ability to tell ``MultipartEncoder`` which encoding to use. By default\n it uses 'utf-8'.\n\n- Fix #10 - allow users to install with pip\n\n- Fix #9 - Fix ``MultipartEncoder#to_string`` so that it properly handles file\n objects as fields\n\n0.1.2 -- 2014-01-19\n-------------------\n\n- At some point during development we broke how we handle normal file objects.\n Thanks to @konomae this is now fixed.\n\n0.1.1 -- 2014-01-19\n-------------------\n\n- Handle ``io.BytesIO``-like objects better\n\n0.1.0 -- 2014-01-18\n-------------------\n\n- Add initial implementation of the streaming ``MultipartEncoder``\n\n- Add initial implementation of the ``user_agent`` function\n\n- Add the ``SSLAdapter``\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://toolbelt.readthedocs.org", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "requests-toolbelt", "package_url": "https://pypi.org/project/requests-toolbelt/", "platform": "", "project_url": "https://pypi.org/project/requests-toolbelt/", "project_urls": { "Homepage": "https://toolbelt.readthedocs.org" }, "release_url": "https://pypi.org/project/requests-toolbelt/0.9.1/", "requires_dist": [ "requests (<3.0.0,>=2.0.1)" ], "requires_python": "", "summary": "A utility belt for advanced users of python-requests", "version": "0.9.1" }, "last_serial": 4757481, "releases": { "0.0.0": [], "0.1.0": [ { "comment_text": "", "digests": { "md5": "629d83ac4700da332a6c121c8c916a3e", "sha256": "e10aa7bd0c574233e14e40227a4652beca23805cfec2b9b6a0571fb8c2c1aabc" }, "downloads": -1, "filename": "requests_toolbelt-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "629d83ac4700da332a6c121c8c916a3e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9273, "upload_time": "2014-01-18T22:06:38", "url": "https://files.pythonhosted.org/packages/91/67/105c0bcd07750781ce10aba6848e4e1374bea0b94ec01d4c2729694e814f/requests_toolbelt-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9882ca071ba3700a494a3fe807fac6ce", "sha256": "da30a109ac7de56c8d8e1c4ab21db83726e66e5e2dcd5499b51436e70c6039e0" }, "downloads": -1, "filename": "requests-toolbelt-0.1.0.tar.gz", "has_sig": false, "md5_digest": "9882ca071ba3700a494a3fe807fac6ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6558, "upload_time": "2014-01-18T22:06:40", "url": "https://files.pythonhosted.org/packages/4b/25/89bb98ef07cbf6b3006c3094a6268cf483f126349192ea548f528a0e1f62/requests-toolbelt-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "b5d7d7f458476b9a5f906aaa1a4bd6d9", "sha256": "efe8cd28376cc353030c75b04717984d1b8093eeda3ae889f5899e5e5151eb04" }, "downloads": -1, "filename": "requests_toolbelt-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b5d7d7f458476b9a5f906aaa1a4bd6d9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9422, "upload_time": "2014-01-19T14:44:45", "url": "https://files.pythonhosted.org/packages/a0/2f/f4669727e12933cb0dbdfbf1e7a9bf92271a530a228bb0e2b869454635d6/requests_toolbelt-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9fa09c84b74080e998792bf1977b8707", "sha256": "2e71f2f192d8c0ad7ba263a5f823f94c25a5f14d830a306faf0ab6b99ecc460b" }, "downloads": -1, "filename": "requests-toolbelt-0.1.1.tar.gz", "has_sig": false, "md5_digest": "9fa09c84b74080e998792bf1977b8707", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6694, "upload_time": "2014-01-19T14:44:47", "url": "https://files.pythonhosted.org/packages/54/1a/94eb7916f1153798f0106c86aa0769ebb41351fa7cdabe0026881e807ecd/requests-toolbelt-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "7bce059b35e3baa744ba09931b4c3e80", "sha256": "2fd7b1c4fbf04406a7f471c38eead9b83eb0c4427916fa573cb06540b10b948b" }, "downloads": -1, "filename": "requests_toolbelt-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7bce059b35e3baa744ba09931b4c3e80", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9632, "upload_time": "2014-01-19T15:44:41", "url": "https://files.pythonhosted.org/packages/65/d9/d18013d6bb6a2c9ca6fed7628c6e287b36a768ef63954a44fa414343d769/requests_toolbelt-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28a134ca7e769f24436e21f6ff2d8f6a", "sha256": "effbfdc46cefff661faf5322dbb84c47dfb61fcbb94cda5d29a71239c801f793" }, "downloads": -1, "filename": "requests-toolbelt-0.1.2.tar.gz", "has_sig": false, "md5_digest": "28a134ca7e769f24436e21f6ff2d8f6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6851, "upload_time": "2014-01-19T15:44:43", "url": "https://files.pythonhosted.org/packages/cb/5b/45dd86ae780d81132f000ab6e16814e183ae8e81c7b696059774ef971c6f/requests-toolbelt-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b620914eb76949e04db34ba088404efa", "sha256": "9c4c356aba34a56cb1d318386a3ca57dabd66eabef762866f8b950caad491f89" }, "downloads": -1, "filename": "requests_toolbelt-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b620914eb76949e04db34ba088404efa", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10084, "upload_time": "2014-02-24T16:49:53", "url": "https://files.pythonhosted.org/packages/5a/99/b144aace6f8db0d0dea2e0cde6e83b2605d345f5b6155d3a7cc5f4092d77/requests_toolbelt-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c242d9ed950cffa7e78509c6d8ef1892", "sha256": "e8a8afb6c4056fc1679ff44678dce7339f2d2e4c8035b2db4d02467af79273fe" }, "downloads": -1, "filename": "requests-toolbelt-0.2.0.tar.gz", "has_sig": false, "md5_digest": "c242d9ed950cffa7e78509c6d8ef1892", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7200, "upload_time": "2014-02-24T16:49:52", "url": "https://files.pythonhosted.org/packages/15/59/d7f9e2b1d0646700a82ea8bf1af0b4e7b2a2c07c23aba38144154da45fbf/requests-toolbelt-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "298c53631f9d9a5272eb086f6fab4eaf", "sha256": "218e051e55dc82953b36dfce834d926a866bacc6ce83828df799bf9b9e761ff1" }, "downloads": -1, "filename": "requests_toolbelt-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "298c53631f9d9a5272eb086f6fab4eaf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20730, "upload_time": "2014-05-21T23:10:47", "url": "https://files.pythonhosted.org/packages/d2/5f/6a392da83a799246c43cbee41c598f3834bb3cc0c67cf96140c7a4837950/requests_toolbelt-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a34b2a7acf832c9edac26217201f057", "sha256": "a19f411402d81ddc8144a10887920268381d90df502a85f77ed7c05899075739" }, "downloads": -1, "filename": "requests-toolbelt-0.3.0.tar.gz", "has_sig": false, "md5_digest": "4a34b2a7acf832c9edac26217201f057", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13639, "upload_time": "2014-05-21T23:10:49", "url": "https://files.pythonhosted.org/packages/dd/df/5e3bd12520a3add9bba8ef728c0918b40f9c9d7dc499ec4630397e189be6/requests-toolbelt-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "91fc855ef0ed8a61f7b2d20fc1fddbe7", "sha256": "c4ba839a2da1d1e884430d742049fe1add34356be8f3e0813e9c7eb959d8ea27" }, "downloads": -1, "filename": "requests_toolbelt-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "91fc855ef0ed8a61f7b2d20fc1fddbe7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22248, "upload_time": "2014-06-24T00:48:43", "url": "https://files.pythonhosted.org/packages/2f/87/009da697025dc624a06c46be59479610f02375a24c3494501bed26e606bd/requests_toolbelt-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e563377e46cd0be8c7b3ac144a65844c", "sha256": "f170eadbe01be2356d65862857a9b2eb8bb17b895cde158a7dd1c358a3a48d1a" }, "downloads": -1, "filename": "requests-toolbelt-0.3.1.tar.gz", "has_sig": false, "md5_digest": "e563377e46cd0be8c7b3ac144a65844c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14609, "upload_time": "2014-06-24T00:48:45", "url": "https://files.pythonhosted.org/packages/93/3e/d593f6be713ddcabce4a64c6b607c2abd9032f16cfb7ff1c333416fbae2e/requests-toolbelt-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "a88971ea5dc2286fce97f37b3ddb1b44", "sha256": "7ca1aebdace3a3ab9ec26919cac554e6e47e57cbe4a8e78dc0513cf730855d8b" }, "downloads": -1, "filename": "requests_toolbelt-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a88971ea5dc2286fce97f37b3ddb1b44", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34038, "upload_time": "2015-04-04T02:04:05", "url": "https://files.pythonhosted.org/packages/db/4c/c4fef2988220f5cd979799ba9618cc98eb4da397be571e75a46189f8afc1/requests_toolbelt-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2278d650faadf181dd180682591e5926", "sha256": "15b74b90a63841b8430d6301e5062cd92929b1074b0c95bf62166b8239db1a96" }, "downloads": -1, "filename": "requests-toolbelt-0.4.0.tar.gz", "has_sig": false, "md5_digest": "2278d650faadf181dd180682591e5926", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25451, "upload_time": "2015-04-04T02:04:08", "url": "https://files.pythonhosted.org/packages/9b/9f/40f8212c0c67420f1a4b816c6f23a4af2be57284d41fa17863634a94af9f/requests-toolbelt-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "fa44abf8aaeac04c07d0c4f02e98b6cb", "sha256": "c3e0a99831cf56f4a057b5c85c74bbee0e0be4cd34c7cdce8ba3e215dfa97e67" }, "downloads": -1, "filename": "requests_toolbelt-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa44abf8aaeac04c07d0c4f02e98b6cb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47223, "upload_time": "2015-11-24T14:44:06", "url": "https://files.pythonhosted.org/packages/0a/00/52b027195c856744066eb7eb25956929c097fb884a3cca4e210e5609e72a/requests_toolbelt-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "317a788caa4eec4e3b8f2433c646eaa8", "sha256": "f3593f2543ed3226bd769702502e5e4d46b04ac8f9aabb364a0b365174d075cd" }, "downloads": -1, "filename": "requests-toolbelt-0.5.0.tar.gz", "has_sig": false, "md5_digest": "317a788caa4eec4e3b8f2433c646eaa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 182971, "upload_time": "2015-11-24T14:44:19", "url": "https://files.pythonhosted.org/packages/48/fe/7463ec181bc57ee6df72832c370eb61bf4c3196d7d3661f61017d8d3dcac/requests-toolbelt-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "0380afff92910022371b2f83df7eca08", "sha256": "e82374a394399aaa6f94ea61b79818429c47bf8ad3bb0b9ce2f7cbbf4ad90441" }, "downloads": -1, "filename": "requests_toolbelt-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0380afff92910022371b2f83df7eca08", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55085, "upload_time": "2015-12-16T23:18:37", "url": "https://files.pythonhosted.org/packages/91/c9/bf22ab4eace5644b5dc86a494f49b4a3c1f52bc320b3f442e2b61c8eea36/requests_toolbelt-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "580ab16edf9d1afad883623ba7873af9", "sha256": "4f4be5325cf4af12847252406eefca8e9d1cd3cfb23a377aaac5cea32d55d23e" }, "downloads": -1, "filename": "requests-toolbelt-0.5.1.tar.gz", "has_sig": false, "md5_digest": "580ab16edf9d1afad883623ba7873af9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187981, "upload_time": "2015-12-16T23:18:51", "url": "https://files.pythonhosted.org/packages/21/27/491b1936febfef4c3d46998d0cccd9e27199da008eac66c3345919725302/requests-toolbelt-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "3c69dc9761ae76ead313336f086628d5", "sha256": "f19762fc818a71444198abdf5d6bd4cade5f154d3b0df3e59010c430d3ab6fa8" }, "downloads": -1, "filename": "requests_toolbelt-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3c69dc9761ae76ead313336f086628d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48648, "upload_time": "2016-01-28T05:10:20", "url": "https://files.pythonhosted.org/packages/44/b3/f6e0e1756c3a22c47a4b5ce9fde7f64fd844f3579a80c9c3a5655ac78959/requests_toolbelt-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7863ab5144a3ace64a4c851ec290907", "sha256": "cc4e9c0ef810d6dfd165ca680330b65a4cf8a3f08f5f08ecd50a0253a08e541f" }, "downloads": -1, "filename": "requests-toolbelt-0.6.0.tar.gz", "has_sig": false, "md5_digest": "f7863ab5144a3ace64a4c851ec290907", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188848, "upload_time": "2016-01-28T05:10:31", "url": "https://files.pythonhosted.org/packages/95/af/d18f76bd931a92dfe614dd7f613527d5447145260e335188b418f8385226/requests-toolbelt-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "034155b2748c55aa6190436103059cc0", "sha256": "11798328e3e897fcf1548227c24230c4950e1c12ddaf33911a768a8d80d56ac4" }, "downloads": -1, "filename": "requests_toolbelt-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "034155b2748c55aa6190436103059cc0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49055, "upload_time": "2016-05-06T01:05:17", "url": "https://files.pythonhosted.org/packages/92/31/718557078c85f902dc5b0310875a8e64f1bd0ad3b9c4b53154d6015d5c87/requests_toolbelt-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d7327af33d5af56be56f8ec1321373e", "sha256": "b0daecdbb75a68f9a00f614dcce9078d0c512cccaa4aeb67b7110765cca25ef8" }, "downloads": -1, "filename": "requests-toolbelt-0.6.1.tar.gz", "has_sig": false, "md5_digest": "0d7327af33d5af56be56f8ec1321373e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188910, "upload_time": "2016-05-06T01:05:31", "url": "https://files.pythonhosted.org/packages/02/de/c51e243312db29cecad11958f2f961340dd7b5f724fd48f2776cd5ea15f5/requests-toolbelt-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "5a4c03afc8521421810ffad2a4452e9f", "sha256": "a252f66501663d655ab6c5be83a08c82afc3932931cc0af54b315a58e34d0a3c" }, "downloads": -1, "filename": "requests_toolbelt-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a4c03afc8521421810ffad2a4452e9f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49161, "upload_time": "2016-05-10T13:41:50", "url": "https://files.pythonhosted.org/packages/c0/06/d198c065f25815e43b6fb4acdeb88ffcffe7a383c888bb8da80edc546dbc/requests_toolbelt-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6bd97e8dfa636bc4918798e332a3f1d4", "sha256": "263215241278aefeb03b5e84ac4574ea5af191dc3ffc3649a6d816745fb60997" }, "downloads": -1, "filename": "requests-toolbelt-0.6.2.tar.gz", "has_sig": false, "md5_digest": "6bd97e8dfa636bc4918798e332a3f1d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190065, "upload_time": "2016-05-10T13:42:00", "url": "https://files.pythonhosted.org/packages/e1/a4/a94c037bc72ad70441aff1403d3243510d2542ddca7759faaeffeb11aefe/requests-toolbelt-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "4f34846168125c651aa2b3bb29b4b7fc", "sha256": "a0432b1124e6b33151ecf694497b4808690dd94ce68c6648c1daa63b771278c4" }, "downloads": -1, "filename": "requests_toolbelt-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4f34846168125c651aa2b3bb29b4b7fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52341, "upload_time": "2016-07-22T13:26:01", "url": "https://files.pythonhosted.org/packages/57/60/cc85ca45c85585191e70e21687aeaa74ec4e555a1404628ba77b8af7d92e/requests_toolbelt-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bfe2009905f460f4764c32cfbbf4205f", "sha256": "33899d4a559c3f0f5e9fbc115d337c4236febdc083755a160a4132d92fc3c91a" }, "downloads": -1, "filename": "requests-toolbelt-0.7.0.tar.gz", "has_sig": false, "md5_digest": "bfe2009905f460f4764c32cfbbf4205f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194062, "upload_time": "2016-07-22T13:26:03", "url": "https://files.pythonhosted.org/packages/59/78/1d391d30ebf74079a8e4de6ab66fdca5362903ef2df64496f4697e9bb626/requests-toolbelt-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "978e1d4dad99ebdb780bd95f6473e98a", "sha256": "17077c6876338ba4101b6e9ab6ba925da970387a7a7eab91d28eed8d25da01f0" }, "downloads": -1, "filename": "requests_toolbelt-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "978e1d4dad99ebdb780bd95f6473e98a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 53382, "upload_time": "2017-02-13T14:59:08", "url": "https://files.pythonhosted.org/packages/dd/85/519354e995d8a926ce3121034dc2144a5ae70435dad3e1155a19bbde8011/requests_toolbelt-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be245e2093a9610fb2eb399afc063ad2", "sha256": "c3843884269d79e492522f3e9f490917e074c1ddbb80111968970e721fe36eaf" }, "downloads": -1, "filename": "requests-toolbelt-0.7.1.tar.gz", "has_sig": false, "md5_digest": "be245e2093a9610fb2eb399afc063ad2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194670, "upload_time": "2017-02-13T14:59:11", "url": "https://files.pythonhosted.org/packages/ab/bf/2af6b25f880e2d529a524f98837d33b1048a2a15703fc4806185b54e9672/requests-toolbelt-0.7.1.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "aab9f93459410330d292753e398d51b3", "sha256": "42c9c170abc2cacb78b8ab23ac957945c7716249206f90874651971a4acff237" }, "downloads": -1, "filename": "requests_toolbelt-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aab9f93459410330d292753e398d51b3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 54322, "upload_time": "2017-05-20T21:32:45", "url": "https://files.pythonhosted.org/packages/97/8a/d710f792d6f6ecc089c5e55b66e66c3f2f35516a1ede5a8f54c13350ffb0/requests_toolbelt-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1028a6044b175440fdc7671e94430cbe", "sha256": "f6a531936c6fa4c6cfce1b9c10d5c4f498d16528d2a54a22ca00011205a187b5" }, "downloads": -1, "filename": "requests-toolbelt-0.8.0.tar.gz", "has_sig": false, "md5_digest": "1028a6044b175440fdc7671e94430cbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196129, "upload_time": "2017-05-20T21:32:47", "url": "https://files.pythonhosted.org/packages/86/f9/e80fa23edca6c554f1994040064760c12b51daff54b55f9e379e899cd3d4/requests-toolbelt-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "c68ccbd15a45f76942d7c317bb5c48ca", "sha256": "a582006f08e12d871fcaa746c4a0ff16313312d18964a2f42a8ba9c8b3ece571" }, "downloads": -1, "filename": "requests_toolbelt-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c68ccbd15a45f76942d7c317bb5c48ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 54266, "upload_time": "2019-01-29T17:49:25", "url": "https://files.pythonhosted.org/packages/05/3b/facf65bc2173e3fa014f13ce7096b15577ae0e1244a3fd185804c4e3db5d/requests_toolbelt-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26d283fc60fb639931ebd601b62a95e6", "sha256": "dc5b3660764fd224495575e2190ef53d3f8228e4e080ac92c9fa9420dc777c18" }, "downloads": -1, "filename": "requests-toolbelt-0.9.0.tar.gz", "has_sig": false, "md5_digest": "26d283fc60fb639931ebd601b62a95e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207208, "upload_time": "2019-01-29T17:49:27", "url": "https://files.pythonhosted.org/packages/83/c8/a4ea1e0741cc9853732e09e33ce1af2b77149abe9d6c0a6635f1709889a1/requests-toolbelt-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "f3c670220285a4cf8c5cbf1033090461", "sha256": "380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f" }, "downloads": -1, "filename": "requests_toolbelt-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3c670220285a4cf8c5cbf1033090461", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 54314, "upload_time": "2019-01-30T01:29:52", "url": "https://files.pythonhosted.org/packages/60/ef/7681134338fc097acef8d9b2f8abe0458e4d87559c689a8c306d0957ece5/requests_toolbelt-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1509735c4b4cf95df2619facbc3672e", "sha256": "968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0" }, "downloads": -1, "filename": "requests-toolbelt-0.9.1.tar.gz", "has_sig": false, "md5_digest": "b1509735c4b4cf95df2619facbc3672e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207286, "upload_time": "2019-01-30T01:29:54", "url": "https://files.pythonhosted.org/packages/28/30/7bf7e5071081f761766d46820e52f4b16c8a08fef02d2eb4682ca7534310/requests-toolbelt-0.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f3c670220285a4cf8c5cbf1033090461", "sha256": "380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f" }, "downloads": -1, "filename": "requests_toolbelt-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3c670220285a4cf8c5cbf1033090461", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 54314, "upload_time": "2019-01-30T01:29:52", "url": "https://files.pythonhosted.org/packages/60/ef/7681134338fc097acef8d9b2f8abe0458e4d87559c689a8c306d0957ece5/requests_toolbelt-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1509735c4b4cf95df2619facbc3672e", "sha256": "968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0" }, "downloads": -1, "filename": "requests-toolbelt-0.9.1.tar.gz", "has_sig": false, "md5_digest": "b1509735c4b4cf95df2619facbc3672e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207286, "upload_time": "2019-01-30T01:29:54", "url": "https://files.pythonhosted.org/packages/28/30/7bf7e5071081f761766d46820e52f4b16c8a08fef02d2eb4682ca7534310/requests-toolbelt-0.9.1.tar.gz" } ] }