diff options
Diffstat (limited to 'requests.egg-info')
-rw-r--r-- | requests.egg-info/PKG-INFO | 77 | ||||
-rw-r--r-- | requests.egg-info/SOURCES.txt | 80 |
2 files changed, 110 insertions, 47 deletions
diff --git a/requests.egg-info/PKG-INFO b/requests.egg-info/PKG-INFO index 68a05bb..d32a426 100644 --- a/requests.egg-info/PKG-INFO +++ b/requests.egg-info/PKG-INFO @@ -1,11 +1,11 @@ Metadata-Version: 1.1 Name: requests -Version: 2.0.0 +Version: 2.2.1 Summary: Python HTTP for Humans. Home-page: http://python-requests.org Author: Kenneth Reitz Author-email: me@kennethreitz.com -License: Copyright 2013 Kenneth Reitz +License: Copyright 2014 Kenneth Reitz Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -25,12 +25,10 @@ Description: Requests: HTTP for Humans .. image:: https://badge.fury.io/py/requests.png :target: http://badge.fury.io/py/requests - .. image:: https://travis-ci.org/kennethreitz/requests.png?branch=master - :target: https://travis-ci.org/kennethreitz/requests - .. image:: https://pypip.in/d/requests/badge.png :target: https://crate.io/packages/requests/ + Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. @@ -106,7 +104,7 @@ Description: Requests: HTTP for Humans ---------- #. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a `Contributor Friendly`_ tag for issues that should be ideal for people who are not very familiar with the codebase yet. - #. If you feel uncomfortable or uncertain about an issue or your changes, feel free to email @sigmavirus24 and he will happily help you via email, Skype, remote pairing or whatever you are comfortable with. + #. If you feel uncomfortable or uncertain about an issue or your changes, feel free to email @sigmavirus24 and he will happily help you via email, Skype, remote pairing or whatever you are comfortable with. #. Fork `the repository`_ on GitHub to start making your changes to the **master** branch (or branch off of it). #. Write a test which shows that the bug was fixed or that the feature works as expected. #. Send a pull request and bug the maintainer until it gets merged and published. :) Make sure to add yourself to AUTHORS_. @@ -118,8 +116,69 @@ Description: Requests: HTTP for Humans .. :changelog: - History - ------- + Release History + --------------- + + 2.2.1 (2014-01-23) + ++++++++++++++++++ + + **Bugfixes** + + - Fixes incorrect parsing of proxy credentials that contain a literal or encoded '#' character. + - Assorted urllib3 fixes. + + 2.2.0 (2014-01-09) + ++++++++++++++++++ + + **API Changes** + + - New exception: ``ContentDecodingError``. Raised instead of ``urllib3`` + ``DecodeError`` exceptions. + + **Bugfixes** + + - Avoid many many exceptions from the buggy implementation of ``proxy_bypass`` on OS X in Python 2.6. + - Avoid crashing when attempting to get authentication credentials from ~/.netrc when running as a user without a home directory. + - Use the correct pool size for pools of connections to proxies. + - Fix iteration of ``CookieJar`` objects. + - Ensure that cookies are persisted over redirect. + - Switch back to using chardet, since it has merged with charade. + + 2.1.0 (2013-12-05) + ++++++++++++++++++ + + - Updated CA Bundle, of course. + - Cookies set on individual Requests through a ``Session`` (e.g. via ``Session.get()``) are no longer persisted to the ``Session``. + - Clean up connections when we hit problems during chunked upload, rather than leaking them. + - Return connections to the pool when a chunked upload is successful, rather than leaking it. + - Match the HTTPbis recommendation for HTTP 301 redirects. + - Prevent hanging when using streaming uploads and Digest Auth when a 401 is received. + - Values of headers set by Requests are now always the native string type. + - Fix previously broken SNI support. + - Fix accessing HTTP proxies using proxy authentication. + - Unencode HTTP Basic usernames and passwords extracted from URLs. + - Support for IP address ranges for no_proxy environment variable + - Parse headers correctly when users override the default ``Host:`` header. + - Avoid munging the URL in case of case-sensitive servers. + - Looser URL handling for non-HTTP/HTTPS urls. + - Accept unicode methods in Python 2.6 and 2.7. + - More resilient cookie handling. + - Make ``Response`` objects pickleable. + - Actually added MD5-sess to Digest Auth instead of pretending to like last time. + - Updated internal urllib3. + - Fixed @Lukasa's lack of taste. + + 2.0.1 (2013-10-24) + ++++++++++++++++++ + + - Updated included CA Bundle with new mistrusts and automated process for the future + - Added MD5-sess to Digest Auth + - Accept per-file headers in multipart file POST messages. + - Fixed: Don't send the full URL on CONNECT messages. + - Fixed: Correctly lowercase a redirect scheme. + - Fixed: Cookies not persisted when set via functional API. + - Fixed: Translate urllib3 ProxyError into a requests ProxyError derived from ConnectionError. + - Updated internal urllib3 and chardet. 2.0.0 (2013-09-24) ++++++++++++++++++ @@ -160,7 +219,7 @@ Description: Requests: HTTP for Humans - Better handling of streaming downloads. - Retrieve environment proxies from more locations. - Minor cookies fixes. - - Imroved redirect behaviour. + - Improved redirect behaviour. - Improved streaming behaviour, particularly for compressed data. - Miscellaneous small Python 3 text encoding bugs. - ``.netrc`` no longer overrides explicit auth. diff --git a/requests.egg-info/SOURCES.txt b/requests.egg-info/SOURCES.txt index c8d2582..0f9826f 100644 --- a/requests.egg-info/SOURCES.txt +++ b/requests.egg-info/SOURCES.txt @@ -4,6 +4,7 @@ MANIFEST.in NOTICE README.rst requirements.txt +setup.cfg setup.py test_requests.py requests/__init__.py @@ -27,45 +28,47 @@ requests.egg-info/dependency_links.txt requests.egg-info/not-zip-safe requests.egg-info/top_level.txt requests/packages/__init__.py -requests/packages/charade/__init__.py -requests/packages/charade/big5freq.py -requests/packages/charade/big5prober.py -requests/packages/charade/chardistribution.py -requests/packages/charade/charsetgroupprober.py -requests/packages/charade/charsetprober.py -requests/packages/charade/codingstatemachine.py -requests/packages/charade/compat.py -requests/packages/charade/constants.py -requests/packages/charade/cp949prober.py -requests/packages/charade/escprober.py -requests/packages/charade/escsm.py -requests/packages/charade/eucjpprober.py -requests/packages/charade/euckrfreq.py -requests/packages/charade/euckrprober.py -requests/packages/charade/euctwfreq.py -requests/packages/charade/euctwprober.py -requests/packages/charade/gb2312freq.py -requests/packages/charade/gb2312prober.py -requests/packages/charade/hebrewprober.py -requests/packages/charade/jisfreq.py -requests/packages/charade/jpcntx.py -requests/packages/charade/langbulgarianmodel.py -requests/packages/charade/langcyrillicmodel.py -requests/packages/charade/langgreekmodel.py -requests/packages/charade/langhebrewmodel.py -requests/packages/charade/langhungarianmodel.py -requests/packages/charade/langthaimodel.py -requests/packages/charade/latin1prober.py -requests/packages/charade/mbcharsetprober.py -requests/packages/charade/mbcsgroupprober.py -requests/packages/charade/mbcssm.py -requests/packages/charade/sbcharsetprober.py -requests/packages/charade/sbcsgroupprober.py -requests/packages/charade/sjisprober.py -requests/packages/charade/universaldetector.py -requests/packages/charade/utf8prober.py +requests/packages/chardet/__init__.py +requests/packages/chardet/big5freq.py +requests/packages/chardet/big5prober.py +requests/packages/chardet/chardetect.py +requests/packages/chardet/chardistribution.py +requests/packages/chardet/charsetgroupprober.py +requests/packages/chardet/charsetprober.py +requests/packages/chardet/codingstatemachine.py +requests/packages/chardet/compat.py +requests/packages/chardet/constants.py +requests/packages/chardet/cp949prober.py +requests/packages/chardet/escprober.py +requests/packages/chardet/escsm.py +requests/packages/chardet/eucjpprober.py +requests/packages/chardet/euckrfreq.py +requests/packages/chardet/euckrprober.py +requests/packages/chardet/euctwfreq.py +requests/packages/chardet/euctwprober.py +requests/packages/chardet/gb2312freq.py +requests/packages/chardet/gb2312prober.py +requests/packages/chardet/hebrewprober.py +requests/packages/chardet/jisfreq.py +requests/packages/chardet/jpcntx.py +requests/packages/chardet/langbulgarianmodel.py +requests/packages/chardet/langcyrillicmodel.py +requests/packages/chardet/langgreekmodel.py +requests/packages/chardet/langhebrewmodel.py +requests/packages/chardet/langhungarianmodel.py +requests/packages/chardet/langthaimodel.py +requests/packages/chardet/latin1prober.py +requests/packages/chardet/mbcharsetprober.py +requests/packages/chardet/mbcsgroupprober.py +requests/packages/chardet/mbcssm.py +requests/packages/chardet/sbcharsetprober.py +requests/packages/chardet/sbcsgroupprober.py +requests/packages/chardet/sjisprober.py +requests/packages/chardet/universaldetector.py +requests/packages/chardet/utf8prober.py requests/packages/urllib3/__init__.py requests/packages/urllib3/_collections.py +requests/packages/urllib3/connection.py requests/packages/urllib3/connectionpool.py requests/packages/urllib3/exceptions.py requests/packages/urllib3/fields.py @@ -80,4 +83,5 @@ requests/packages/urllib3/contrib/pyopenssl.py requests/packages/urllib3/packages/__init__.py requests/packages/urllib3/packages/ordered_dict.py requests/packages/urllib3/packages/six.py -requests/packages/urllib3/packages/ssl_match_hostname/__init__.py
\ No newline at end of file +requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py
\ No newline at end of file |