diff options
| author | Kenneth Reitz <me@kennethreitz.org> | 2016-02-03 04:00:14 -0500 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.org> | 2016-02-03 04:00:14 -0500 |
| commit | b1e97650f7e1bed302246e08ff1eea26ef832fda (patch) | |
| tree | 010f2aa2e0179002340253715848a48910f07a6d /README.rst | |
| parent | 6e35ec4c127206106165cacc0b91cc6156334caa (diff) | |
| download | python-requests-b1e97650f7e1bed302246e08ff1eea26ef832fda.tar.gz | |
Update README.rst
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,7 +15,7 @@ beings. Most existing Python modules for sending HTTP requests are extremely verbose and cumbersome. Python's builtin urllib2 module provides most of -the HTTP capabilities you should need, but the api is thoroughly broken. +the HTTP capabilities you should need, but the API is thoroughly broken. It requires an enormous amount of work (even method overrides) to perform the simplest of tasks. @@ -33,8 +33,8 @@ Things shouldn't be this way. Not in Python. See `the same code, without Requests <https://gist.github.com/973705>`_. -Requests allow you to send HTTP/1.1 requests. You can add headers, form data, -multipart files, and parameters with simple Python dictionaries, and access the +Requests allows you to send HTTP/1.1 requests. You can add headers, form data, +multi-part files, and parameters with simple Python dictionaries, and access the 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. |
