• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
4<html xmlns="http://www.w3.org/1999/xhtml">
5  <head>
6    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
8    <title>httplib2 A comprehensive HTTP client library. &mdash; httplib2 v0.4 documentation</title>
9    <link rel="stylesheet" href="_static/default.css" type="text/css" />
10    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
11    <script type="text/javascript">
12      var DOCUMENTATION_OPTIONS = {
13        URL_ROOT:    '#',
14        VERSION:     '0.4',
15        COLLAPSE_MODINDEX: false,
16        FILE_SUFFIX: '.html',
17        HAS_SOURCE:  true
18      };
19    </script>
20    <script type="text/javascript" src="_static/jquery.js"></script>
21    <script type="text/javascript" src="_static/doctools.js"></script>
22    <link rel="top" title="httplib2 v0.4 documentation" href="index.html" />
23    <link rel="prev" title="The httplib2 Library" href="index.html" />
24  </head>
25  <body>
26    <div class="related">
27      <h3>Navigation</h3>
28      <ul>
29        <li class="right" style="margin-right: 10px">
30          <a href="genindex.html" title="General Index"
31             accesskey="I">index</a></li>
32        <li class="right" >
33          <a href="modindex.html" title="Global Module Index"
34             accesskey="M">modules</a> |</li>
35        <li class="right" >
36          <a href="index.html" title="The httplib2 Library"
37             accesskey="P">previous</a> |</li>
38        <li><a href="index.html">httplib2 v0.4 documentation</a> &raquo;</li>
39      </ul>
40    </div>
41
42    <div class="document">
43      <div class="documentwrapper">
44        <div class="bodywrapper">
45          <div class="body">
46
47  <div class="section" id="module-httplib2">
48<h1><tt class="xref docutils literal"><span class="pre">httplib2</span></tt>  A comprehensive HTTP client library.<a class="headerlink" href="#module-httplib2" title="Permalink to this headline">¶</a></h1>
49<p>The <tt class="xref docutils literal"><span class="pre">httplib2</span></tt> module is a comprehensive HTTP client library with the
50following features:</p>
51<dl class="describe">
52<dt>
53<tt class="descname">HTTP and HTTPS</tt></dt>
54<dd>HTTPS support is only available if the socket module was compiled with SSL
55support.</dd></dl>
56
57<dl class="describe">
58<dt>
59<tt class="descname">Keep-Alive</tt></dt>
60<dd>Supports HTTP 1.1 Keep-Alive, keeping the socket open and performing multiple
61requests over the same connection if possible.</dd></dl>
62
63<dl class="describe">
64<dt>
65<tt class="descname">Authentication</tt></dt>
66<dd><p>The following three types of HTTP Authentication are supported. These can be
67used over both HTTP and HTTPS.</p>
68<blockquote>
69<ul class="simple">
70<li>Digest</li>
71<li>Basic</li>
72<li>WSSE</li>
73</ul>
74</blockquote>
75</dd></dl>
76
77<dl class="describe">
78<dt>
79<tt class="descname">Caching</tt></dt>
80<dd>The module can optionally operate with a private cache that understands the
81Cache-Control: header and uses both the ETag and Last-Modified cache validators.</dd></dl>
82
83<dl class="describe">
84<dt>
85<tt class="descname">All Methods</tt></dt>
86<dd>The module can handle any HTTP request method, not just GET and POST.</dd></dl>
87
88<dl class="describe">
89<dt>
90<tt class="descname">Redirects</tt></dt>
91<dd>Automatically follows 3XX redirects on GETs.</dd></dl>
92
93<dl class="describe">
94<dt>
95<tt class="descname">Compression</tt></dt>
96<dd>Handles both <tt class="docutils literal"><span class="pre">deflate</span></tt> and <tt class="docutils literal"><span class="pre">gzip</span></tt> types of compression.</dd></dl>
97
98<dl class="describe">
99<dt>
100<tt class="descname">Lost update support</tt></dt>
101<dd>Automatically adds back ETags into PUT requests to resources we have already
102cached. This implements Section 3.2 of Detecting the Lost Update Problem Using
103Unreserved Checkout</dd></dl>
104
105<p>The <tt class="xref docutils literal"><span class="pre">httplib2</span></tt> module defines the following variables:</p>
106<dl class="data">
107<dt id="httplib2.debuglevel">
108<tt class="descclassname">httplib2.</tt><tt class="descname">debuglevel</tt><a class="headerlink" href="#httplib2.debuglevel" title="Permalink to this definition">¶</a></dt>
109<dd>The amount of debugging information to print. The default is 0.</dd></dl>
110
111<dl class="data">
112<dt id="httplib2.RETRIES">
113<tt class="descclassname">httplib2.</tt><tt class="descname">RETRIES</tt><a class="headerlink" href="#httplib2.RETRIES" title="Permalink to this definition">¶</a></dt>
114<dd>A request will be tried &#8216;RETRIES&#8217; times if it fails at the socket/connection level.
115The default is 2.</dd></dl>
116
117<p>The <tt class="xref docutils literal"><span class="pre">httplib2</span></tt> module may raise the following Exceptions. Note that  there
118is an option that turns exceptions into  normal responses with an HTTP status
119code indicating an error occured. See
120<a title="httplib2.Http.force_exception_to_status_code" class="reference internal" href="#httplib2.Http.force_exception_to_status_code"><tt class="xref docutils literal"><span class="pre">Http.force_exception_to_status_code</span></tt></a></p>
121<dl class="exception">
122<dt id="httplib2.HttpLib2Error">
123<em class="property">exception </em><tt class="descclassname">httplib2.</tt><tt class="descname">HttpLib2Error</tt><a class="headerlink" href="#httplib2.HttpLib2Error" title="Permalink to this definition">¶</a></dt>
124<dd>The Base Exception for all exceptions raised by httplib2.</dd></dl>
125
126<dl class="exception">
127<dt id="httplib2.RedirectMissingLocation">
128<em class="property">exception </em><tt class="descclassname">httplib2.</tt><tt class="descname">RedirectMissingLocation</tt><a class="headerlink" href="#httplib2.RedirectMissingLocation" title="Permalink to this definition">¶</a></dt>
129<dd>A 3xx redirect response code was provided but no Location: header  was provided
130to point to the new location.</dd></dl>
131
132<dl class="exception">
133<dt id="httplib2.RedirectLimit">
134<em class="property">exception </em><tt class="descclassname">httplib2.</tt><tt class="descname">RedirectLimit</tt><a class="headerlink" href="#httplib2.RedirectLimit" title="Permalink to this definition">¶</a></dt>
135<dd>The maximum number of redirections was reached without coming to a final URI.</dd></dl>
136
137<dl class="exception">
138<dt id="httplib2.ServerNotFoundError">
139<em class="property">exception </em><tt class="descclassname">httplib2.</tt><tt class="descname">ServerNotFoundError</tt><a class="headerlink" href="#httplib2.ServerNotFoundError" title="Permalink to this definition">¶</a></dt>
140<dd>Unable to resolve the host name given.</dd></dl>
141
142<dl class="exception">
143<dt id="httplib2.RelativeURIError">
144<em class="property">exception </em><tt class="descclassname">httplib2.</tt><tt class="descname">RelativeURIError</tt><a class="headerlink" href="#httplib2.RelativeURIError" title="Permalink to this definition">¶</a></dt>
145<dd>A relative, as opposed to an absolute URI, was passed into request().</dd></dl>
146
147<dl class="exception">
148<dt id="httplib2.FailedToDecompressContent">
149<em class="property">exception </em><tt class="descclassname">httplib2.</tt><tt class="descname">FailedToDecompressContent</tt><a class="headerlink" href="#httplib2.FailedToDecompressContent" title="Permalink to this definition">¶</a></dt>
150<dd>The headers claimed that the content of the response was compressed but the
151decompression algorithm applied to the content failed.</dd></dl>
152
153<dl class="exception">
154<dt id="httplib2.UnimplementedDigestAuthOptionError">
155<em class="property">exception </em><tt class="descclassname">httplib2.</tt><tt class="descname">UnimplementedDigestAuthOptionError</tt><a class="headerlink" href="#httplib2.UnimplementedDigestAuthOptionError" title="Permalink to this definition">¶</a></dt>
156<dd>The server requested a type of Digest authentication that we are unfamiliar
157with.</dd></dl>
158
159<dl class="exception">
160<dt id="httplib2.UnimplementedHmacDigestAuthOptionError">
161<em class="property">exception </em><tt class="descclassname">httplib2.</tt><tt class="descname">UnimplementedHmacDigestAuthOptionError</tt><a class="headerlink" href="#httplib2.UnimplementedHmacDigestAuthOptionError" title="Permalink to this definition">¶</a></dt>
162<dd>The server requested a type of HMACDigest authentication that we are unfamiliar
163with.</dd></dl>
164
165<dl class="class">
166<dt id="httplib2.Http">
167<em class="property">class </em><tt class="descclassname">httplib2.</tt><tt class="descname">Http</tt><big>(</big><span class="optional">[</span><em>cache=None</em><span class="optional">]</span><span class="optional">[</span>, <em>timeout=None</em><span class="optional">]</span><span class="optional">[</span>, <em>proxy_info==ProxyInfo.from_environment</em><span class="optional">]</span><span class="optional">[</span>, <em>ca_certs=None</em><span class="optional">]</span><span class="optional">[</span>, <em>disable_ssl_certificate_validation=False</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#httplib2.Http" title="Permalink to this definition">¶</a></dt>
168<dd>The class that represents a client HTTP interface. The <em>cache</em> parameter is
169either the name of a directory to be used as a flat file cache, or it must an
170object that  implements the required caching interface. The <em>timeout</em> parameter
171is the socket level timeout. The <em>ca_certs</em> parameter is the filename of the
172CA certificates to use. If none is given a default set is used. The
173<em>disable_ssl_certificate_validation</em> boolean flag determines if ssl certificate validation
174is done. The <em>proxy_info</em> parameter is an object of type :class:ProxyInfo.</dd></dl>
175
176<dl class="class">
177<dt id="httplib2.ProxyInfo">
178<em class="property">class </em><tt class="descclassname">httplib2.</tt><tt class="descname">ProxyInfo</tt><big>(</big><em>proxy_type</em>, <em>proxy_host</em>, <em>proxy_port</em><span class="optional">[</span>, <em>proxy_rdns=None</em><span class="optional">]</span><span class="optional">[</span>, <em>proxy_user=None</em><span class="optional">]</span><span class="optional">[</span>, <em>proxy_pass=None</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#httplib2.ProxyInfo" title="Permalink to this definition">¶</a></dt>
179<dd><p>Collect information required to use a proxy.
180The parameter proxy_type must be set to one of socks.PROXY_TYPE_XXX
181constants. For example:</p>
182<p>p = ProxyInfo(proxy_type=socks.PROXY_TYPE_HTTP, proxy_host=&#8217;localhost&#8217;, proxy_port=8000)</p>
183</dd></dl>
184
185<dl class="class">
186<dt id="httplib2.Response">
187<em class="property">class </em><tt class="descclassname">httplib2.</tt><tt class="descname">Response</tt><big>(</big><em>info</em><big>)</big><a class="headerlink" href="#httplib2.Response" title="Permalink to this definition">¶</a></dt>
188<dd>Response is a subclass of <tt class="xref docutils literal"><span class="pre">dict</span></tt> and instances of this  class are
189returned from calls to Http.request. The <em>info</em> parameter is either  an
190<tt class="xref docutils literal"><span class="pre">rfc822.Message</span></tt> or an <tt class="xref docutils literal"><span class="pre">httplib.HTTPResponse</span></tt> object.</dd></dl>
191
192<dl class="class">
193<dt id="httplib2.FileCache">
194<em class="property">class </em><tt class="descclassname">httplib2.</tt><tt class="descname">FileCache</tt><big>(</big><em>dir_name</em><span class="optional">[</span>, <em>safe=safename</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#httplib2.FileCache" title="Permalink to this definition">¶</a></dt>
195<dd>FileCache implements a Cache as a directory of files. The <em>dir_name</em> parameter
196is the name of the directory to use. If the directory does not exist then
197FileCache attempts to create the directory. The optional <em>safe</em> parameter is a
198funtion which generates the cache filename for each URI. A FileCache object is
199constructed and used for caching when you pass a directory name into the
200constructor of <a title="httplib2.Http" class="reference internal" href="#httplib2.Http"><tt class="xref docutils literal"><span class="pre">Http</span></tt></a>.</dd></dl>
201
202<p>Http objects have the following methods:</p>
203<div class="section" id="http-objects">
204<span id="id1"></span><h2>Http Objects<a class="headerlink" href="#http-objects" title="Permalink to this headline">¶</a></h2>
205<dl class="method">
206<dt id="httplib2.Http.request">
207<tt class="descclassname">Http.</tt><tt class="descname">request</tt><big>(</big><em>uri</em><span class="optional">[</span>, <em>method=&quot;GET&quot;</em>, <em>body=None</em>, <em>headers=None</em>, <em>redirections=DEFAULT_MAX_REDIRECTS</em>, <em>connection_type=None</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#httplib2.Http.request" title="Permalink to this definition">¶</a></dt>
208<dd><p>Performs a single HTTP request. The <em>uri</em> is the URI of the HTTP resource and
209can begin with either <tt class="docutils literal"><span class="pre">http</span></tt> or <tt class="docutils literal"><span class="pre">https</span></tt>. The value of <em>uri</em> must be an
210absolute URI.</p>
211<p>The <em>method</em> is the HTTP method to perform, such as <tt class="docutils literal"><span class="pre">GET</span></tt>, <tt class="docutils literal"><span class="pre">POST</span></tt>,
212<tt class="docutils literal"><span class="pre">DELETE</span></tt>, etc. There is no restriction on the methods allowed.</p>
213<p>The <em>body</em> is the entity body to be sent with the request. It is a string
214object.</p>
215<p>Any extra headers that are to be sent with the request should be provided in the
216<em>headers</em> dictionary.</p>
217<p>The maximum number of redirect to follow before raising an exception is
218<em>redirections</em>. The default is 5.</p>
219<p>The <em>connection_type</em> is the type of connection object to use. The supplied
220class should implement the interface of httplib.HTTPConnection.</p>
221<p>The return value is a tuple of (response, content), the first being and instance
222of the <a title="httplib2.Response" class="reference internal" href="#httplib2.Response"><tt class="xref docutils literal"><span class="pre">Response</span></tt></a> class, the second being a string that contains the
223response entity body.</p>
224</dd></dl>
225
226<dl class="method">
227<dt id="httplib2.Http.add_credentials">
228<tt class="descclassname">Http.</tt><tt class="descname">add_credentials</tt><big>(</big><em>name</em>, <em>password</em><span class="optional">[</span>, <em>domain=None</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#httplib2.Http.add_credentials" title="Permalink to this definition">¶</a></dt>
229<dd>Adds a name and password that will be used when a request  requires
230authentication. Supplying the optional <em>domain</em> name will restrict these
231credentials to only be sent to the specified domain. If <em>domain</em> is not
232specified then the given credentials will be used to try to satisfy every HTTP
233401 challenge.</dd></dl>
234
235<dl class="method">
236<dt id="httplib2.Http.add_certificate">
237<tt class="descclassname">Http.</tt><tt class="descname">add_certificate</tt><big>(</big><em>key</em>, <em>cert</em>, <em>domain</em><big>)</big><a class="headerlink" href="#httplib2.Http.add_certificate" title="Permalink to this definition">¶</a></dt>
238<dd>Add a <em>key</em> and <em>cert</em> that will be used for an SSL connection to the specified
239domain. <em>keyfile</em> is the name of a PEM formatted  file that contains your
240private key. <em>certfile</em> is a PEM formatted certificate chain file.</dd></dl>
241
242<dl class="method">
243<dt id="httplib2.Http.clear_credentials">
244<tt class="descclassname">Http.</tt><tt class="descname">clear_credentials</tt><big>(</big><big>)</big><a class="headerlink" href="#httplib2.Http.clear_credentials" title="Permalink to this definition">¶</a></dt>
245<dd>Remove all the names and passwords used for authentication.</dd></dl>
246
247<dl class="attribute">
248<dt id="httplib2.Http.follow_redirects">
249<tt class="descclassname">Http.</tt><tt class="descname">follow_redirects</tt><a class="headerlink" href="#httplib2.Http.follow_redirects" title="Permalink to this definition">¶</a></dt>
250<dd>If <tt class="xref docutils literal"><span class="pre">True</span></tt>, which is the default, safe redirects are followed, where safe means
251that the client is only doing a <tt class="docutils literal"><span class="pre">GET</span></tt> or <tt class="docutils literal"><span class="pre">HEAD</span></tt> on the URI to which it is
252being redirected. If <tt class="xref docutils literal"><span class="pre">False</span></tt> then no redirects are followed. Note that a False
253&#8216;follow_redirects&#8217; takes precedence over a True &#8216;follow_all_redirects&#8217;. Another
254way of saying that is for &#8216;follow_all_redirects&#8217; to have any affect,
255&#8216;follow_redirects&#8217; must be True.</dd></dl>
256
257<dl class="attribute">
258<dt id="httplib2.Http.follow_all_redirects">
259<tt class="descclassname">Http.</tt><tt class="descname">follow_all_redirects</tt><a class="headerlink" href="#httplib2.Http.follow_all_redirects" title="Permalink to this definition">¶</a></dt>
260<dd>If <tt class="xref docutils literal"><span class="pre">False</span></tt>, which is the default, only safe redirects are followed, where safe
261means that the client is only doing a <tt class="docutils literal"><span class="pre">GET</span></tt> or <tt class="docutils literal"><span class="pre">HEAD</span></tt> on the URI to which it
262is being redirected. If <tt class="xref docutils literal"><span class="pre">True</span></tt> then all redirects are followed. Note that a
263False &#8216;follow_redirects&#8217; takes precedence over a True &#8216;follow_all_redirects&#8217;.
264Another way of saying that is for &#8216;follow_all_redirects&#8217; to have any affect,
265&#8216;follow_redirects&#8217; must be True.</dd></dl>
266
267<dl class="attribute">
268<dt id="httplib2.Http.forward_authorization_headers">
269<tt class="descclassname">Http.</tt><tt class="descname">forward_authorization_headers</tt><a class="headerlink" href="#httplib2.Http.forward_authorization_headers" title="Permalink to this definition">¶</a></dt>
270<dd>If <tt class="xref docutils literal"><span class="pre">False</span></tt>, which is the default, then Authorization: headers are
271stripped from redirects. If <tt class="xref docutils literal"><span class="pre">True</span></tt> then Authorization: headers are left
272in place when following redirects. This parameter only applies if following
273redirects is turned on. Note that turning this on could cause your credentials
274to leak, so carefully consider the consequences.</dd></dl>
275
276<dl class="attribute">
277<dt id="httplib2.Http.force_exception_to_status_code">
278<tt class="descclassname">Http.</tt><tt class="descname">force_exception_to_status_code</tt><a class="headerlink" href="#httplib2.Http.force_exception_to_status_code" title="Permalink to this definition">¶</a></dt>
279<dd><p>If <tt class="xref docutils literal"><span class="pre">True</span></tt> then no <tt class="xref docutils literal"><span class="pre">httplib2</span></tt> exceptions will be
280thrown. Instead, those error conditions will be turned into <a title="httplib2.Response" class="reference internal" href="#httplib2.Response"><tt class="xref docutils literal"><span class="pre">Response</span></tt></a>
281objects that will be returned normally.</p>
282<p>If <tt class="xref docutils literal"><span class="pre">False</span></tt>, which is the default, then exceptions will be thrown.</p>
283</dd></dl>
284
285<dl class="attribute">
286<dt id="httplib2.Http.optimistic_concurrency_methods">
287<tt class="descclassname">Http.</tt><tt class="descname">optimistic_concurrency_methods</tt><a class="headerlink" href="#httplib2.Http.optimistic_concurrency_methods" title="Permalink to this definition">¶</a></dt>
288<dd>By default a list that only contains &#8220;PUT&#8221;, this attribute
289controls which methods will get &#8216;if-match&#8217; headers attached
290to them from cached responses with etags. You can append
291new items to this list to add new methods that should
292get this support, such as &#8220;PATCH&#8221;.</dd></dl>
293
294<dl class="attribute">
295<dt id="httplib2.Http.ignore_etag">
296<tt class="descclassname">Http.</tt><tt class="descname">ignore_etag</tt><a class="headerlink" href="#httplib2.Http.ignore_etag" title="Permalink to this definition">¶</a></dt>
297<dd>Defaults to <tt class="xref docutils literal"><span class="pre">False</span></tt>. If <tt class="xref docutils literal"><span class="pre">True</span></tt>, then any etags present in the cached
298response are ignored when processing the current request, i.e. httplib2 does
299<strong>not</strong> use &#8216;if-match&#8217; for PUT or &#8216;if-none-match&#8217; when GET or HEAD requests are
300made. This is mainly to deal with broken servers which supply an etag, but
301change it capriciously.</dd></dl>
302
303<p>If you wish to supply your own caching implementation then you will need to pass
304in an object that supports the  following methods. Note that the <tt class="xref docutils literal"><span class="pre">memcache</span></tt>
305module supports this interface natively.</p>
306</div>
307<div class="section" id="cache-objects">
308<span id="id2"></span><h2>Cache Objects<a class="headerlink" href="#cache-objects" title="Permalink to this headline">¶</a></h2>
309<dl class="method">
310<dt id="httplib2.Cache.get">
311<tt class="descclassname">Cache.</tt><tt class="descname">get</tt><big>(</big><em>key</em><big>)</big><a class="headerlink" href="#httplib2.Cache.get" title="Permalink to this definition">¶</a></dt>
312<dd>Takes a string <em>key</em> and returns the value as a string.</dd></dl>
313
314<dl class="method">
315<dt id="httplib2.Cache.set">
316<tt class="descclassname">Cache.</tt><tt class="descname">set</tt><big>(</big><em>key</em>, <em>value</em><big>)</big><a class="headerlink" href="#httplib2.Cache.set" title="Permalink to this definition">¶</a></dt>
317<dd>Takes a string <em>key</em> and <em>value</em> and stores it in the cache.</dd></dl>
318
319<dl class="method">
320<dt id="httplib2.Cache.delete">
321<tt class="descclassname">Cache.</tt><tt class="descname">delete</tt><big>(</big><em>key</em><big>)</big><a class="headerlink" href="#httplib2.Cache.delete" title="Permalink to this definition">¶</a></dt>
322<dd>Deletes the cached value stored at <em>key</em>. The value of <em>key</em> is a string.</dd></dl>
323
324<p>Response objects are derived from <tt class="xref docutils literal"><span class="pre">dict</span></tt> and map header names (lower case
325with the trailing colon removed) to header values. In addition to the dict
326methods a Response object also has:</p>
327</div>
328<div class="section" id="response-objects">
329<span id="id3"></span><h2>Response Objects<a class="headerlink" href="#response-objects" title="Permalink to this headline">¶</a></h2>
330<dl class="attribute">
331<dt id="httplib2.Response.fromcache">
332<tt class="descclassname">Response.</tt><tt class="descname">fromcache</tt><a class="headerlink" href="#httplib2.Response.fromcache" title="Permalink to this definition">¶</a></dt>
333<dd>If <tt class="docutils literal"><span class="pre">true</span></tt> the the response was returned from the cache.</dd></dl>
334
335<dl class="attribute">
336<dt id="httplib2.Response.version">
337<tt class="descclassname">Response.</tt><tt class="descname">version</tt><a class="headerlink" href="#httplib2.Response.version" title="Permalink to this definition">¶</a></dt>
338<dd>The version of HTTP that the server supports. A value of 11 means &#8216;1.1&#8217;.</dd></dl>
339
340<dl class="attribute">
341<dt id="httplib2.Response.status">
342<tt class="descclassname">Response.</tt><tt class="descname">status</tt><a class="headerlink" href="#httplib2.Response.status" title="Permalink to this definition">¶</a></dt>
343<dd>The numerical HTTP status code returned in the response.</dd></dl>
344
345<dl class="attribute">
346<dt id="httplib2.Response.reason">
347<tt class="descclassname">Response.</tt><tt class="descname">reason</tt><a class="headerlink" href="#httplib2.Response.reason" title="Permalink to this definition">¶</a></dt>
348<dd>The human readable component of the HTTP response status code.</dd></dl>
349
350<dl class="attribute">
351<dt id="httplib2.Response.previous">
352<tt class="descclassname">Response.</tt><tt class="descname">previous</tt><a class="headerlink" href="#httplib2.Response.previous" title="Permalink to this definition">¶</a></dt>
353<dd>If redirects are followed then the <a title="httplib2.Response" class="reference internal" href="#httplib2.Response"><tt class="xref docutils literal"><span class="pre">Response</span></tt></a> object returned is just for
354the very last HTTP request and <em>previous</em> points to the previous
355<a title="httplib2.Response" class="reference internal" href="#httplib2.Response"><tt class="xref docutils literal"><span class="pre">Response</span></tt></a> object. In this manner they form a chain going back through
356the responses to the very first response. Will be <tt class="xref docutils literal"><span class="pre">None</span></tt> if there are no
357previous respones.</dd></dl>
358
359<p>The Response object also populates the header <tt class="docutils literal"><span class="pre">content-location</span></tt>, that
360contains the URI that was ultimately requested. This is useful if redirects were
361encountered, you can determine the ultimate URI that the request was sent to.
362All Response objects contain this key value, including <tt class="docutils literal"><span class="pre">previous</span></tt> responses so
363you can determine the entire chain of redirects. If
364<a title="httplib2.Http.force_exception_to_status_code" class="reference internal" href="#httplib2.Http.force_exception_to_status_code"><tt class="xref docutils literal"><span class="pre">Http.force_exception_to_status_code</span></tt></a> is <tt class="xref docutils literal"><span class="pre">True</span></tt> and the number of
365redirects has exceeded the number of allowed number  of redirects then the
366<a title="httplib2.Response" class="reference internal" href="#httplib2.Response"><tt class="xref docutils literal"><span class="pre">Response</span></tt></a> object will report the error in the status code, but the
367complete chain of previous responses will still be in tact.</p>
368<p>To do a simple <tt class="docutils literal"><span class="pre">GET</span></tt> request just supply the absolute URI of the resource:</p>
369</div>
370<div class="section" id="examples">
371<span id="httplib2-example"></span><h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
372<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">httplib2</span>
373<span class="n">h</span> <span class="o">=</span> <span class="n">httplib2</span><span class="o">.</span><span class="n">Http</span><span class="p">()</span>
374<span class="n">resp</span><span class="p">,</span> <span class="n">content</span> <span class="o">=</span> <span class="n">h</span><span class="o">.</span><span class="n">request</span><span class="p">(</span><span class="s">&quot;http://bitworking.org/&quot;</span><span class="p">)</span>
375<span class="k">assert</span> <span class="n">resp</span><span class="o">.</span><span class="n">status</span> <span class="o">==</span> <span class="mi">200</span>
376<span class="k">assert</span> <span class="n">resp</span><span class="p">[</span><span class="s">&#39;content-type&#39;</span><span class="p">]</span> <span class="o">==</span> <span class="s">&#39;text/html&#39;</span>
377</pre></div>
378</div>
379<p>Here is more complex example that does a PUT  of some text to a resource that
380requires authentication. The Http instance also uses a file cache in the
381directory <tt class="docutils literal"><span class="pre">.cache</span></tt>.</p>
382<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">httplib2</span>
383<span class="n">h</span> <span class="o">=</span> <span class="n">httplib2</span><span class="o">.</span><span class="n">Http</span><span class="p">(</span><span class="s">&quot;.cache&quot;</span><span class="p">)</span>
384<span class="n">h</span><span class="o">.</span><span class="n">add_credentials</span><span class="p">(</span><span class="s">&#39;name&#39;</span><span class="p">,</span> <span class="s">&#39;password&#39;</span><span class="p">)</span>
385<span class="n">resp</span><span class="p">,</span> <span class="n">content</span> <span class="o">=</span> <span class="n">h</span><span class="o">.</span><span class="n">request</span><span class="p">(</span><span class="s">&quot;https://example.org/chap/2&quot;</span><span class="p">,</span>
386    <span class="s">&quot;PUT&quot;</span><span class="p">,</span> <span class="n">body</span><span class="o">=</span><span class="s">&quot;This is text&quot;</span><span class="p">,</span>
387    <span class="n">headers</span><span class="o">=</span><span class="p">{</span><span class="s">&#39;content-type&#39;</span><span class="p">:</span><span class="s">&#39;text/plain&#39;</span><span class="p">}</span> <span class="p">)</span>
388</pre></div>
389</div>
390<p>Here is an example that connects to a server that  supports the Atom Publishing
391Protocol.</p>
392<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">httplib2</span>
393<span class="n">h</span> <span class="o">=</span> <span class="n">httplib2</span><span class="o">.</span><span class="n">Http</span><span class="p">()</span>
394<span class="n">h</span><span class="o">.</span><span class="n">add_credentials</span><span class="p">(</span><span class="n">myname</span><span class="p">,</span> <span class="n">mypasswd</span><span class="p">)</span>
395<span class="n">h</span><span class="o">.</span><span class="n">follow_all_redirects</span> <span class="o">=</span> <span class="bp">True</span>
396<span class="n">headers</span> <span class="o">=</span> <span class="p">{</span><span class="s">&#39;Content-Type&#39;</span><span class="p">:</span> <span class="s">&#39;application/atom+xml&#39;</span><span class="p">}</span>
397<span class="n">body</span>    <span class="o">=</span> <span class="s">&quot;&quot;&quot;&lt;?xml version=&quot;1.0&quot; ?&gt;</span>
398<span class="s">    &lt;entry xmlns=&quot;http://www.w3.org/2005/Atom&quot;&gt;</span>
399<span class="s">      &lt;title&gt;Atom-Powered Robots Run Amok&lt;/title&gt;</span>
400<span class="s">      &lt;id&gt;urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a&lt;/id&gt;</span>
401<span class="s">      &lt;updated&gt;2003-12-13T18:30:02Z&lt;/updated&gt;</span>
402<span class="s">      &lt;author&gt;&lt;name&gt;John Doe&lt;/name&gt;&lt;/author&gt;</span>
403<span class="s">      &lt;content&gt;Some text.&lt;/content&gt;</span>
404<span class="s">&lt;/entry&gt;</span>
405<span class="s">&quot;&quot;&quot;</span>
406<span class="n">uri</span>     <span class="o">=</span> <span class="s">&quot;http://www.example.com/collection/&quot;</span>
407<span class="n">resp</span><span class="p">,</span> <span class="n">content</span> <span class="o">=</span> <span class="n">h</span><span class="o">.</span><span class="n">request</span><span class="p">(</span><span class="n">uri</span><span class="p">,</span> <span class="s">&quot;POST&quot;</span><span class="p">,</span> <span class="n">body</span><span class="o">=</span><span class="n">body</span><span class="p">,</span> <span class="n">headers</span><span class="o">=</span><span class="n">headers</span><span class="p">)</span>
408</pre></div>
409</div>
410<p>Here is an example of providing data to an HTML form processor. In this case we
411presume this is a POST form. We need to take our  data and format it as
412&#8220;application/x-www-form-urlencoded&#8221; data and use that as a  body for a POST
413request.</p>
414<div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="kn">import</span> <span class="nn">httplib2</span>
415<span class="gp">&gt;&gt;&gt; </span><span class="kn">import</span> <span class="nn">urllib</span>
416<span class="gp">&gt;&gt;&gt; </span><span class="n">data</span> <span class="o">=</span> <span class="p">{</span><span class="s">&#39;name&#39;</span><span class="p">:</span> <span class="s">&#39;fred&#39;</span><span class="p">,</span> <span class="s">&#39;address&#39;</span><span class="p">:</span> <span class="s">&#39;123 shady lane&#39;</span><span class="p">}</span>
417<span class="gp">&gt;&gt;&gt; </span><span class="n">body</span> <span class="o">=</span> <span class="n">urllib</span><span class="o">.</span><span class="n">urlencode</span><span class="p">(</span><span class="n">data</span><span class="p">)</span>
418<span class="gp">&gt;&gt;&gt; </span><span class="n">body</span>
419<span class="go">&#39;name=fred&amp;address=123+shady+lane&#39;</span>
420<span class="gp">&gt;&gt;&gt; </span><span class="n">h</span> <span class="o">=</span> <span class="n">httplib2</span><span class="o">.</span><span class="n">Http</span><span class="p">()</span>
421<span class="gp">&gt;&gt;&gt; </span><span class="n">resp</span><span class="p">,</span> <span class="n">content</span> <span class="o">=</span> <span class="n">h</span><span class="o">.</span><span class="n">request</span><span class="p">(</span><span class="s">&quot;http://example.com&quot;</span><span class="p">,</span> <span class="n">method</span><span class="o">=</span><span class="s">&quot;POST&quot;</span><span class="p">,</span> <span class="n">body</span><span class="o">=</span><span class="n">body</span><span class="p">)</span>
422</pre></div>
423</div>
424</div>
425</div>
426
427
428          </div>
429        </div>
430      </div>
431      <div class="sphinxsidebar">
432        <div class="sphinxsidebarwrapper">
433            <h3><a href="index.html">Table Of Contents</a></h3>
434            <ul>
435<li><a class="reference external" href="#"><tt class="docutils literal"><span class="pre">httplib2</span></tt>  A comprehensive HTTP client library.</a><ul>
436<li><a class="reference external" href="#http-objects">Http Objects</a></li>
437<li><a class="reference external" href="#cache-objects">Cache Objects</a></li>
438<li><a class="reference external" href="#response-objects">Response Objects</a></li>
439<li><a class="reference external" href="#examples">Examples</a></li>
440</ul>
441</li>
442</ul>
443
444            <h4>Previous topic</h4>
445            <p class="topless"><a href="index.html"
446                                  title="previous chapter">The httplib2 Library</a></p>
447            <h3>This Page</h3>
448            <ul class="this-page-menu">
449              <li><a href="_sources/libhttplib2.txt"
450                     rel="nofollow">Show Source</a></li>
451            </ul>
452          <div id="searchbox" style="display: none">
453            <h3>Quick search</h3>
454              <form class="search" action="search.html" method="get">
455                <input type="text" name="q" size="18" />
456                <input type="submit" value="Go" />
457                <input type="hidden" name="check_keywords" value="yes" />
458                <input type="hidden" name="area" value="default" />
459              </form>
460              <p class="searchtip" style="font-size: 90%">
461              Enter search terms or a module, class or function name.
462              </p>
463          </div>
464          <script type="text/javascript">$('#searchbox').show(0);</script>
465        </div>
466      </div>
467      <div class="clearer"></div>
468    </div>
469    <div class="related">
470      <h3>Navigation</h3>
471      <ul>
472        <li class="right" style="margin-right: 10px">
473          <a href="genindex.html" title="General Index"
474             >index</a></li>
475        <li class="right" >
476          <a href="modindex.html" title="Global Module Index"
477             >modules</a> |</li>
478        <li class="right" >
479          <a href="index.html" title="The httplib2 Library"
480             >previous</a> |</li>
481        <li><a href="index.html">httplib2 v0.4 documentation</a> &raquo;</li>
482      </ul>
483    </div>
484    <div class="footer">
485      &copy; Copyright 2008, Joe Gregorio.
486      Last updated on Aug 28, 2012.
487      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.4.
488    </div>
489  </body>
490</html>
491