aboutsummaryrefslogtreecommitdiff
path: root/requests.egg-info
diff options
context:
space:
mode:
authorSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:23 -0700
committerSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:23 -0700
commitd4aa2de2bb89ca384ad81db731bb99735e1db788 (patch)
tree68092157eef070d7d87c330f206eb96209e09074 /requests.egg-info
parent3a4ef8165fb2951781a7bcc4189e90faf26caf2d (diff)
downloadpython-requests-d4aa2de2bb89ca384ad81db731bb99735e1db788.tar
python-requests-d4aa2de2bb89ca384ad81db731bb99735e1db788.tar.gz
Imported Upstream version 0.12.1
Diffstat (limited to 'requests.egg-info')
-rw-r--r--requests.egg-info/PKG-INFO25
-rw-r--r--requests.egg-info/SOURCES.txt2
-rw-r--r--requests.egg-info/requires.txt6
3 files changed, 30 insertions, 3 deletions
diff --git a/requests.egg-info/PKG-INFO b/requests.egg-info/PKG-INFO
index dc8b700..55e0cb2 100644
--- a/requests.egg-info/PKG-INFO
+++ b/requests.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
Name: requests
-Version: 0.11.2
+Version: 0.12.1
Summary: Python HTTP for Humans.
Home-page: http://python-requests.org
Author: Kenneth Reitz
@@ -101,6 +101,27 @@ Description: Requests: HTTP for Humans
History
-------
+ 0.12.1 (2012-05-08)
+ +++++++++++++++++++
+
+ - New ``Response.json`` property
+ - Ability to add string file uploads
+ - Fix out-of-range issue with iter_lines
+ - Fix iter_content default size
+ - Fix POST redirects containing files
+
+ 0.12.0 (2012-05-02)
+ +++++++++++++++++++
+
+ - EXPERIMENTAL OAUTH SUPPORT!
+ - Proper CookieJar-backed cookies interface with awesome dict-like interface.
+ - Speed fix for non-iterated content chunks.
+ - Move ``pre_request`` to a more usable place.
+ - New ``pre_send`` hook.
+ - Lazily encode data, params, files
+ - Load system Certificate Bundle if ``certify`` isn't available.
+ - Cleanups, fixes.
+
0.11.2 (2012-04-22)
+++++++++++++++++++
diff --git a/requests.egg-info/SOURCES.txt b/requests.egg-info/SOURCES.txt
index f228744..ec1a22a 100644
--- a/requests.egg-info/SOURCES.txt
+++ b/requests.egg-info/SOURCES.txt
@@ -9,6 +9,7 @@ requests/api.py
requests/async.py
requests/auth.py
requests/compat.py
+requests/cookies.py
requests/defaults.py
requests/exceptions.py
requests/hooks.py
@@ -40,6 +41,7 @@ requests/packages/urllib3/packages/__init__.py
requests/packages/urllib3/packages/six.py
requests/packages/urllib3/packages/mimetools_choose_boundary/__init__.py
requests/packages/urllib3/packages/ssl_match_hostname/__init__.py
+tests/test_cookies.py
tests/test_requests.py
tests/test_requests_async.py
tests/test_requests_ext.py
diff --git a/requests.egg-info/requires.txt b/requests.egg-info/requires.txt
index a8c0e5c..ccff72e 100644
--- a/requests.egg-info/requires.txt
+++ b/requests.egg-info/requires.txt
@@ -1,2 +1,6 @@
certifi>=0.0.7
-chardet>=1.0.0 \ No newline at end of file
+oauthlib>=0.1.0,<0.2.0
+chardet>=1.0.0
+
+[async]
+gevent \ No newline at end of file