aboutsummaryrefslogtreecommitdiff
path: root/PKG-INFO
diff options
context:
space:
mode:
authorSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:21 -0700
committerSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:21 -0700
commite75853fc04102c7f72f2e955b63f9692c472f64a (patch)
tree9847c33530102dcf8f42bba6a562a7df34d651e6 /PKG-INFO
parent365ef510aa3581a79709673e078401724601fc71 (diff)
downloadpython-requests-e75853fc04102c7f72f2e955b63f9692c472f64a.tar
python-requests-e75853fc04102c7f72f2e955b63f9692c472f64a.tar.gz
Imported Upstream version 0.10.8
Diffstat (limited to 'PKG-INFO')
-rw-r--r--PKG-INFO118
1 files changed, 72 insertions, 46 deletions
diff --git a/PKG-INFO b/PKG-INFO
index 5943191..677b300 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: requests
-Version: 0.10.1
+Version: 0.10.8
Summary: Python HTTP for Humans.
Home-page: http://python-requests.org
Author: Kenneth Reitz
@@ -9,6 +9,8 @@ License: ISC
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
beings.
@@ -27,7 +29,7 @@ Description: Requests: HTTP for Humans
204
>>> r.headers['content-type']
'application/json'
- >>> r.content
+ >>> r.text
...
See `the same code, without Requests <https://gist.github.com/973705>`_.
@@ -43,46 +45,16 @@ Description: Requests: HTTP for Humans
Features
--------
- - Browser standard SSL verification.
- - Extremely simple HEAD, GET, POST, PUT, PATCH, DELETE Requests.
- - Gevent support for Asyncronous Requests.
- - Sessions with cookie persistence.
- - Basic, Digest, and Custom Authentication support.
- - Automatic form-encoding of dictionaries
- - A simple dictionary interface for request/response cookies.
- - Multipart file uploads.
- - Automatc decoding of Unicode, gzip, and deflate responses.
- - Full support for unicode URLs and domain names.
-
-
- Usage
- -----
-
- It couldn't be simpler::
-
- >>> import requests
- >>> r = requests.get('http://google.com')
-
-
- HTTPS? Basic Authentication? ::
-
- >>> r = requests.get('https://httpbin.ep.io/basic-auth/user/pass')
- >>> r.status_code
- 401
-
-
- Uh oh, we're not authorized! Let's add authentication. ::
-
- >>> r = requests.get('https://httpbin.ep.io/basic-auth/user/pass', auth=('user', 'pass'))
-
- >>> r.status_code
- 200
-
- >>> r.headers['content-type']
- 'application/json'
-
- >>> r.content
- '{"authenticated": true, "user": "user"}'
+ - International Domains and URLs
+ - Keep-Alive & Connection Pooling
+ - Sessions with Cookie Persistence
+ - Browser-style SSL Verification
+ - Basic/Digest Authentication
+ - Elegant Key/Value Cookies
+ - Automatic Decompression
+ - Unicode Response Bodies
+ - Multipart File Uploads
+ - Connection Timeouts
Installation
@@ -115,6 +87,59 @@ Description: Requests: HTTP for Humans
History
-------
+ 0.10.8 (2012-03-09)
+ +++++++++++++++++++
+
+ * Generate chunked ValueError fix
+ * Proxy configuration by environment variables
+ * Simplification of iter_lines.
+ * New `trust_env` configuration for disabling system/environment hints.
+ * Suppress cookie errors.
+
+ 0.10.7 (2012-03-07)
+ +++++++++++++++++++
+
+ * `encode_uri` = False
+
+ 0.10.6 (2012-02-25)
+ +++++++++++++++++++
+
+ * Allow '=' in cookies.
+
+ 0.10.5 (2012-02-25)
+ +++++++++++++++++++
+
+ * Response body with 0 content-length fix.
+ * New async.imap.
+ * Don't fail on netrc.
+
+
+ 0.10.4 (2012-02-20)
+ +++++++++++++++++++
+
+ * Honor netrc.
+
+ 0.10.3 (2012-02-20)
+ +++++++++++++++++++
+
+ * HEAD requests don't follow redirects anymore.
+ * raise_for_status() doesn't raise for 3xx anymore.
+ * Make Session objects picklable.
+ * ValueError for invalid schema URLs.
+
+ 0.10.2 (2012-01-15)
+ +++++++++++++++++++
+
+ * Vastly improved URL quoting.
+ * Additional allowed cookie key values.
+ * Attempted fix for "Too many open files" Error
+ * Replace unicode errors on first pass, no need for second pass.
+ * Append '/' to bare-domain urls before query insertion.
+ * Exceptions now inherit from RuntimeError.
+ * Binary uploads + auth fix.
+ * Bugfixes.
+
+
0.10.1 (2012-01-23)
+++++++++++++++++++
@@ -141,7 +166,7 @@ Description: Requests: HTTP for Humans
0.9.2 (2012-01-18)
++++++++++++++++++
- * Asyncronous async.send method.
+ * Asynchronous async.send method.
* Support for proper chunk streams with boundaries.
* session argument for Session classes.
* Print entire hook tracebacks, not just exception instance.
@@ -155,7 +180,7 @@ Description: Requests: HTTP for Humans
++++++++++++++++++
* danger_mode for automatic Response.raise_for_status()
- * Response.iter_lines refator
+ * Response.iter_lines refactor
0.9.0 (2011-12-28)
++++++++++++++++++
@@ -212,7 +237,7 @@ Description: Requests: HTTP for Humans
0.8.2 (2011-11-19)
++++++++++++++++++
- * New unicode decoding system, based on overridable `Response.encoding`.
+ * New Unicode decoding system, based on over-ridable `Response.encoding`.
* Proper URL slash-quote handling.
* Cookies with ``[``, ``]``, and ``_`` allowed.
@@ -252,7 +277,7 @@ Description: Requests: HTTP for Humans
0.7.4 (2011-10-26)
++++++++++++++++++
- * Sesion Hooks fix.
+ * Session Hooks fix.
0.7.3 (2011-10-23)
++++++++++++++++++
@@ -485,5 +510,6 @@ Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1