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:19 -0700
committerSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:19 -0700
commit365ef510aa3581a79709673e078401724601fc71 (patch)
tree44b2c6aae568684e93eb598d7a2069c1867fdaaf /requests.egg-info
parent1c0a691ebf468d42b7c0d6b0e9daf0b2ff82cc20 (diff)
downloadpython-requests-365ef510aa3581a79709673e078401724601fc71.tar
python-requests-365ef510aa3581a79709673e078401724601fc71.tar.gz
Imported Upstream version 0.10.1
Diffstat (limited to 'requests.egg-info')
-rw-r--r--requests.egg-info/PKG-INFO110
-rw-r--r--requests.egg-info/SOURCES.txt9
-rw-r--r--requests.egg-info/requires.txt2
3 files changed, 114 insertions, 7 deletions
diff --git a/requests.egg-info/PKG-INFO b/requests.egg-info/PKG-INFO
index 4d9f7cd..5943191 100644
--- a/requests.egg-info/PKG-INFO
+++ b/requests.egg-info/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
+ <https://github.com/shazow/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
diff --git a/requests.egg-info/SOURCES.txt b/requests.egg-info/SOURCES.txt
index f4cad3c..804f541 100644
--- a/requests.egg-info/SOURCES.txt
+++ b/requests.egg-info/SOURCES.txt
@@ -1,6 +1,7 @@
HISTORY.rst
LICENSE
MANIFEST.in
+NOTICE
README.rst
setup.py
test_requests.py
@@ -8,6 +9,7 @@ requests/__init__.py
requests/api.py
requests/async.py
requests/auth.py
+requests/compat.py
requests/defaults.py
requests/exceptions.py
requests/hooks.py
@@ -19,6 +21,7 @@ requests/utils.py
requests.egg-info/PKG-INFO
requests.egg-info/SOURCES.txt
requests.egg-info/dependency_links.txt
+requests.egg-info/requires.txt
requests.egg-info/top_level.txt
requests/packages/__init__.py
requests/packages/oreos/__init__.py
@@ -32,4 +35,8 @@ requests/packages/urllib3/exceptions.py
requests/packages/urllib3/filepost.py
requests/packages/urllib3/poolmanager.py
requests/packages/urllib3/request.py
-requests/packages/urllib3/response.py \ No newline at end of file
+requests/packages/urllib3/response.py
+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 \ No newline at end of file
diff --git a/requests.egg-info/requires.txt b/requests.egg-info/requires.txt
new file mode 100644
index 0000000..a8c0e5c
--- /dev/null
+++ b/requests.egg-info/requires.txt
@@ -0,0 +1,2 @@
+certifi>=0.0.7
+chardet>=1.0.0 \ No newline at end of file