mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
v0.14.0
This commit is contained in:
@@ -12,3 +12,5 @@ requests.egg-info/
|
||||
*.pyc
|
||||
*.swp
|
||||
env/
|
||||
|
||||
.workon
|
||||
|
||||
@@ -3,6 +3,11 @@
|
||||
History
|
||||
-------
|
||||
|
||||
0.14.0 (2012-09-02)
|
||||
++++++++++++++++++++
|
||||
|
||||
- No more iter_content errors if already downloaded.
|
||||
|
||||
0.13.9 (2012-08-25)
|
||||
+++++++++++++++++++
|
||||
|
||||
|
||||
@@ -25,16 +25,16 @@ usage:
|
||||
>>> r = requests.post("http://httpbin.org/post", data=payload)
|
||||
>>> print r.text
|
||||
{
|
||||
// ...snip... //
|
||||
...
|
||||
"form": {
|
||||
"key2": "value2",
|
||||
"key1": "value1"
|
||||
},
|
||||
// ...snip... //
|
||||
...
|
||||
}
|
||||
|
||||
The other HTTP methods are supported - see `requests.api`. Full documentation
|
||||
is at <http://requests.rtfd.org/>.
|
||||
is at <http://python-requests.org>.
|
||||
|
||||
:copyright: (c) 2012 by Kenneth Reitz.
|
||||
:license: ISC, see LICENSE for more details.
|
||||
@@ -42,8 +42,8 @@ is at <http://requests.rtfd.org/>.
|
||||
"""
|
||||
|
||||
__title__ = 'requests'
|
||||
__version__ = '0.13.9'
|
||||
__build__ = 0x001309
|
||||
__version__ = '0.14.0'
|
||||
__build__ = 0x001400
|
||||
__author__ = 'Kenneth Reitz'
|
||||
__license__ = 'ISC'
|
||||
__copyright__ = 'Copyright 2012 Kenneth Reitz'
|
||||
|
||||
Reference in New Issue
Block a user