diff options
author | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:41:22 -0700 |
---|---|---|
committer | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:41:22 -0700 |
commit | 3a4ef8165fb2951781a7bcc4189e90faf26caf2d (patch) | |
tree | 5223d80835a57dad6b7b6e0c37f689441ccb4e1e /PKG-INFO | |
parent | 40337989ba5056432c9f2af3c42267e5ee9e3e18 (diff) | |
download | python-requests-3a4ef8165fb2951781a7bcc4189e90faf26caf2d.tar python-requests-3a4ef8165fb2951781a7bcc4189e90faf26caf2d.tar.gz |
Imported Upstream version 0.11.2
Diffstat (limited to 'PKG-INFO')
-rw-r--r-- | PKG-INFO | 31 |
1 files changed, 27 insertions, 4 deletions
@@ -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) +++++++++++++++++++ |