diff options
Diffstat (limited to 'requests.egg-info/PKG-INFO')
-rw-r--r-- | requests.egg-info/PKG-INFO | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/requests.egg-info/PKG-INFO b/requests.egg-info/PKG-INFO index 68c9ccc..dc8b700 100644 --- a/requests.egg-info/PKG-INFO +++ b/requests.egg-info/PKG-INFO @@ -1,14 +1,27 @@ Metadata-Version: 1.0 Name: requests -Version: 0.11.1 +Version: 0.11.2 Summary: Python HTTP for Humans. Home-page: http://python-requests.org Author: Kenneth Reitz Author-email: me@kennethreitz.com -License: ISC +License: Copyright (c) 2012 Kenneth Reitz. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Description: Requests: HTTP for Humans ========================= + .. image:: https://secure.travis-ci.org/kennethreitz/requests.png?branch=develop Requests is an ISC Licensed HTTP library, written in Python, for human @@ -34,8 +47,7 @@ Description: Requests: HTTP for Humans See `the same code, without Requests <https://gist.github.com/973705>`_. - Requests allow you to send **HEAD**, **GET**, **POST**, **PUT**, - **PATCH**, and **DELETE** HTTP requests. You can add headers, form data, + Requests allow you to send HTTP/1.1 requests. You can add headers, form data, multipart files, and parameters with simple Python dictionaries, and access the response data in the same way. It's powered by httplib and `urllib3 <https://github.com/shazow/urllib3>`_, but it does all the hard work and crazy @@ -84,9 +96,20 @@ Description: Requests: HTTP for Humans .. _AUTHORS: https://github.com/kennethreitz/requests/blob/develop/AUTHORS.rst + .. :changelog: + History ------- + 0.11.2 (2012-04-22) + +++++++++++++++++++ + + - Attempt to use the OS's certificate bundle if ``certifi`` isn't available. + - Infinite digest auth redirect fix + - Multi-part file upload improvements + - Fix decoding of invalid %encodings in URLs + - If there is no content in a response don't throw an error the second time that content is attempted to be read. + - Upload data on redirects. 0.11.1 (2012-03-30) +++++++++++++++++++ |