From 365ef510aa3581a79709673e078401724601fc71 Mon Sep 17 00:00:00 2001 From: SVN-Git Migration Date: Thu, 8 Oct 2015 13:41:19 -0700 Subject: Imported Upstream version 0.10.1 --- PKG-INFO | 110 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 104 insertions(+), 6 deletions(-) (limited to 'PKG-INFO') diff --git a/PKG-INFO b/PKG-INFO index 4d9f7cd..5943191 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: requests -Version: 0.8.2 +Version: 0.10.1 Summary: Python HTTP for Humans. Home-page: http://python-requests.org Author: Kenneth Reitz @@ -35,16 +35,18 @@ Description: Requests: HTTP for Humans Requests allow you to send **HEAD**, **GET**, **POST**, **PUT**, **PATCH**, and **DELETE** HTTP 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, but it does - all the hard work and crazy hacks for you. + response data in the same way. It's powered by httplib and `urllib3 + `_, but it does all the hard work and crazy + hacks for you. Features -------- + - Browser standard SSL verification. - Extremely simple HEAD, GET, POST, PUT, PATCH, DELETE Requests. - Gevent support for Asyncronous Requests. - - Sessions with cookie persistience. + - Sessions with cookie persistence. - Basic, Digest, and Custom Authentication support. - Automatic form-encoding of dictionaries - A simple dictionary interface for request/response cookies. @@ -56,7 +58,7 @@ Description: Requests: HTTP for Humans Usage ----- - It couldn't be simpler. :: + It couldn't be simpler:: >>> import requests >>> r = requests.get('http://google.com') @@ -113,6 +115,100 @@ Description: Requests: HTTP for Humans History ------- + 0.10.1 (2012-01-23) + +++++++++++++++++++ + + * PYTHON 3 SUPPORT! + * Dropped 2.5 Support. (*Backwards Incompatible*) + + 0.10.0 (2012-01-21) + +++++++++++++++++++ + + * ``Response.content`` is now bytes-only. (*Backwards Incompatible*) + * New ``Response.text`` is unicode-only. + * If no ``Response.encoding`` is specified and ``chardet`` is available, ``Respoonse.text`` will guess an encoding. + * Default to ISO-8859-1 (Western) encoding for "text" subtypes. + * Removal of `decode_unicode`. (*Backwards Incompatible*) + * New multiple-hooks system. + * New ``Response.register_hook`` for registering hooks within the pipeline. + * ``Response.url`` is now Unicode. + + 0.9.3 (2012-01-18) + ++++++++++++++++++ + + * SSL verify=False bugfix (apparent on windows machines). + + 0.9.2 (2012-01-18) + ++++++++++++++++++ + + * Asyncronous async.send method. + * Support for proper chunk streams with boundaries. + * session argument for Session classes. + * Print entire hook tracebacks, not just exception instance. + * Fix response.iter_lines from pending next line. + * Fix but in HTTP-digest auth w/ URI having query strings. + * Fix in Event Hooks section. + * Urllib3 update. + + + 0.9.1 (2012-01-06) + ++++++++++++++++++ + + * danger_mode for automatic Response.raise_for_status() + * Response.iter_lines refator + + 0.9.0 (2011-12-28) + ++++++++++++++++++ + + * verify ssl is default. + + + 0.8.9 (2011-12-28) + ++++++++++++++++++ + + * Packaging fix. + + + 0.8.8 (2011-12-28) + ++++++++++++++++++ + + * SSL CERT VERIFICATION! + * Release of Cerifi: Mozilla's cert list. + * New 'verify' argument for SSL requests. + * Urllib3 update. + + 0.8.7 (2011-12-24) + ++++++++++++++++++ + + * iter_lines last-line truncation fix + * Force safe_mode for async requests + * Handle safe_mode exceptions more consistently + * Fix iteration on null responses in safe_mode + + 0.8.6 (2011-12-18) + ++++++++++++++++++ + + * Socket timeout fixes. + * Proxy Authorization support. + + 0.8.5 (2011-12-14) + ++++++++++++++++++ + + * Response.iter_lines! + + 0.8.4 (2011-12-11) + ++++++++++++++++++ + + * Prefetch bugfix. + * Added license to installed version. + + 0.8.3 (2011-11-27) + ++++++++++++++++++ + + * Converted auth system to use simpler callable objects. + * New session parameter to API methods. + * Display full URL while logging. + 0.8.2 (2011-11-19) ++++++++++++++++++ @@ -140,6 +236,7 @@ Description: Requests: HTTP for Humans * OPTION method * Async pool size throttling * File uploads send real names + * Vendored in urllib3 0.7.6 (2011-11-07) ++++++++++++++++++ @@ -386,6 +483,7 @@ Classifier: Intended Audience :: Developers Classifier: Natural Language :: English Classifier: License :: OSI Approved :: ISC License (ISCL) Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 2.5 Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3.0 +Classifier: Programming Language :: Python :: 3.1 -- cgit v1.2.3