aboutsummaryrefslogtreecommitdiff
path: root/README.rst
blob: ce4eb5815814429016399ec39dce248133bc9f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
Requests: The Simple (e.g. usable) HTTP Module
==============================================

Most existing Python modules for dealing HTTP requests are insane. I have to look up *everything* that I want to do. Most of my worst Python experiences are a result of the various built-in HTTP libraries (yes, even worse than Logging).

But this one's different. This one's going to be awesome. And simple.

Really simple.

Features
--------

- Extremely simple GET, HEAD, POST, PUT, DELETE Requests
    + Simple HTTP Header Request Attachment
    + Simple Data/Params Request Attachment
    + Simple Multipart File Uploads
    + CookieJar Support
    + Redirection History
    + Redirection Recursion Urllib Fix
    + Auto Decompression of GZipped Content
    + Unicode URL Support

- Simple Authentication
    + Simple URL + HTTP Auth Registry


Usage
-----

It couldn't be simpler. ::

    >>> import requests
    >>> r = requests.get('http://google.com')


HTTPS? Basic Authentication? ::

    >>> r = requests.get('https://convore.com/api/account/verify.json')
    >>> r.status_code
    401


Uh oh, we're not authorized! Let's add authentication. ::

    >>> conv_auth = ('requeststest', 'requeststest')
    >>> r = requests.get('https://convore.com/api/account/verify.json', auth=conv_auth)

    >>> r.status_code
    200

    >>> r.headers['content-type']
    'application/json'

    >>> r.content
    '{"username": "requeststest", "url": "/users/requeststest/", "id": "9408", "img": "censored-long-url"}'



API
---

**Requests:**

All request functions return a Response object (see below).

If a {filename: fileobject} dictionary is passed in (files=...), a multipart_encode upload will be performed.
If CookieJar object is is passed in (cookies=...), the cookies will be sent with the request.

  GET Requests
    >>> requests.get(url, params={}, headers={}, cookies=None, auth=None)
    <Response [200]>

  HEAD Requests
    >>> requests.head(url, params={}, headers={}, cookies=None, auth=None)
    <Response [200]>

  PUT Requests
    >>> requests.put(url, data='', headers={}, files={}, cookies=None, auth=None)
    <Response [200]>

  POST Requests
    >>> requests.post(url, data={}, headers={}, files={}, cookies=None, auth=None)
    <Response [200]>

  DELETE Requests
    >>> requests.delete(url, params={}, headers={}, cookies=None, auth=None)
    <Response [200]>


**Responses:**

    Response.status_code
         (Integer) Received HTTP Status Code Response

    Response.headers
        ((CaseInsensitive) Dictionary) Received HTTP Response Headers.

    Response.content
        (Bytes) Received Content.

    Response.history
        (List of Responses) Redirection History.

    Response.url
        (String) URL of response. Useful for detecting redirects.

    Response.ok
        (Bool) True if no errors occurred during the request, and the status_code is kosher.

    Response.cached
        (Bool) True if Response.content is stored within the object.

    Response.error
        (HTTPError) If an HTTPError occurred (e.g. status of 404), Otherwise this is None.

    Response.raise_for_status()
        Raises HTTPError if a request is not kosher.


**HTTP Authentication Registry:**

    You can register AuthObjects to automatically enable HTTP Authentication on requests that contain a registered base URL string.

    >>> requests.auth_manager.add_auth(url, authobject)



Installation
------------

To install requests, simply: ::

    $ pip install requests

Or, if you absolutely must: ::

    $ easy_install requests

But, you really shouldn't do that.



Contribute
----------

If you'd like to contribute, simply fork `the repository`_, commit your changes to the **develop** branch (or branch off of it), and send a pull request. Make sure you add yourself to AUTHORS_.



Roadmap
-------

- Sphinx Documentation

.. _`the repository`: http://github.com/kennethreitz/requests
.. _AUTHORS: http://github.com/kennethreitz/requests/blob/master/AUTHORS