~ubuntu-branches/ubuntu/raring/requests/raring

« back to all changes in this revision

Viewing changes to README.rst

  • Committer: Package Import Robot
  • Author(s): Daniele Tricoli
  • Date: 2012-04-23 16:06:33 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120423160633-ddwtive3t84ozcr4
Tags: 0.11.2-1
* New upstream release
* debian/patches/01_do-not-use-python-certifi.patch
  - Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Requests: HTTP for Humans
2
2
=========================
3
3
 
 
4
 
4
5
.. image:: https://secure.travis-ci.org/kennethreitz/requests.png?branch=develop
5
6
 
6
7
Requests is an ISC Licensed HTTP library, written in Python, for human
26
27
 
27
28
See `the same code, without Requests <https://gist.github.com/973705>`_.
28
29
 
29
 
Requests allow you to send  **HEAD**, **GET**, **POST**, **PUT**,
30
 
**PATCH**, and **DELETE** HTTP requests. You can add headers, form data,
 
30
Requests allow you to send HTTP/1.1 requests. You can add headers, form data,
31
31
multipart files, and parameters with simple Python dictionaries, and access the
32
32
response data in the same way. It's powered by httplib and `urllib3
33
33
<https://github.com/shazow/urllib3>`_, but it does all the hard work and crazy