blob: e908a46d9233d88aac6d6706d2851650151a5d73 [file] [log] [blame]
joe.gregorio258eefb2008-09-06 01:30:25 +00001<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
Joe Gregorio24c916a2011-06-13 15:13:11 -04002 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
4<html xmlns="http://www.w3.org/1999/xhtml">
joe.gregorio258eefb2008-09-06 01:30:25 +00005 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Joe Gregorio26763712013-02-19 15:57:37 -05007
Joe Gregoriodf935b02012-08-28 12:19:28 -04008 <title>httplib2 A comprehensive HTTP client library. &mdash; httplib2 v0.4 documentation</title>
joe.gregorio258eefb2008-09-06 01:30:25 +00009 <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 = {
Joe Gregoriodf935b02012-08-28 12:19:28 -040013 URL_ROOT: '#',
Joe Gregorio24c916a2011-06-13 15:13:11 -040014 VERSION: '0.4',
Joe Gregoriodf935b02012-08-28 12:19:28 -040015 COLLAPSE_MODINDEX: false,
Joe Gregorio24c916a2011-06-13 15:13:11 -040016 FILE_SUFFIX: '.html',
17 HAS_SOURCE: true
joe.gregorio258eefb2008-09-06 01:30:25 +000018 };
19 </script>
20 <script type="text/javascript" src="_static/jquery.js"></script>
joe.gregorio258eefb2008-09-06 01:30:25 +000021 <script type="text/javascript" src="_static/doctools.js"></script>
Joe Gregoriodf935b02012-08-28 12:19:28 -040022 <link rel="top" title="httplib2 v0.4 documentation" href="index.html" />
Joe Gregorio26763712013-02-19 15:57:37 -050023 <link rel="prev" title="The httplib2 Library" href="index.html" />
joe.gregorio258eefb2008-09-06 01:30:25 +000024 </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" >
Joe Gregoriodf935b02012-08-28 12:19:28 -040033 <a href="modindex.html" title="Global Module Index"
34 accesskey="M">modules</a> |</li>
joe.gregorio258eefb2008-09-06 01:30:25 +000035 <li class="right" >
36 <a href="index.html" title="The httplib2 Library"
37 accesskey="P">previous</a> |</li>
Joe Gregorio26763712013-02-19 15:57:37 -050038 <li><a href="index.html">httplib2 v0.4 documentation</a> &raquo;</li>
joe.gregorio258eefb2008-09-06 01:30:25 +000039 </ul>
Joe Gregorio26763712013-02-19 15:57:37 -050040 </div>
Joe Gregorio24c916a2011-06-13 15:13:11 -040041
joe.gregorio258eefb2008-09-06 01:30:25 +000042 <div class="document">
43 <div class="documentwrapper">
44 <div class="bodywrapper">
45 <div class="body">
Joe Gregorio26763712013-02-19 15:57:37 -050046
joe.gregorio258eefb2008-09-06 01:30:25 +000047 <div class="section" id="module-httplib2">
Joe Gregoriodf935b02012-08-28 12:19:28 -040048<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
joe.gregorio258eefb2008-09-06 01:30:25 +000050following features:</p>
51<dl class="describe">
52<dt>
53<tt class="descname">HTTP and HTTPS</tt></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -040054<dd>HTTPS support is only available if the socket module was compiled with SSL
55support.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +000056
57<dl class="describe">
58<dt>
59<tt class="descname">Keep-Alive</tt></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -040060<dd>Supports HTTP 1.1 Keep-Alive, keeping the socket open and performing multiple
61requests over the same connection if possible.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +000062
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>
Joe Gregoriodf935b02012-08-28 12:19:28 -040069<ul class="simple">
joe.gregorio258eefb2008-09-06 01:30:25 +000070<li>Digest</li>
71<li>Basic</li>
72<li>WSSE</li>
73</ul>
Joe Gregoriodf935b02012-08-28 12:19:28 -040074</blockquote>
joe.gregorio258eefb2008-09-06 01:30:25 +000075</dd></dl>
76
77<dl class="describe">
78<dt>
79<tt class="descname">Caching</tt></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -040080<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>
joe.gregorio258eefb2008-09-06 01:30:25 +000082
83<dl class="describe">
84<dt>
85<tt class="descname">All Methods</tt></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -040086<dd>The module can handle any HTTP request method, not just GET and POST.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +000087
88<dl class="describe">
89<dt>
90<tt class="descname">Redirects</tt></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -040091<dd>Automatically follows 3XX redirects on GETs.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +000092
93<dl class="describe">
94<dt>
95<tt class="descname">Compression</tt></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -040096<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>
joe.gregorio258eefb2008-09-06 01:30:25 +000097
98<dl class="describe">
99<dt>
100<tt class="descname">Lost update support</tt></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400101<dd>Automatically adds back ETags into PUT requests to resources we have already
joe.gregorio258eefb2008-09-06 01:30:25 +0000102cached. This implements Section 3.2 of Detecting the Lost Update Problem Using
Joe Gregoriodf935b02012-08-28 12:19:28 -0400103Unreserved Checkout</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000104
Joe Gregoriodf935b02012-08-28 12:19:28 -0400105<p>The <tt class="xref docutils literal"><span class="pre">httplib2</span></tt> module defines the following variables:</p>
joe.gregorio258eefb2008-09-06 01:30:25 +0000106<dl class="data">
107<dt id="httplib2.debuglevel">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400108<tt class="descclassname">httplib2.</tt><tt class="descname">debuglevel</tt><a class="headerlink" href="#httplib2.debuglevel" title="Permalink to this definition">ΒΆ</a></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400109<dd>The amount of debugging information to print. The default is 0.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000110
Joe Gregorio3b089c92012-04-17 12:40:39 -0400111<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400114<dd>A request will be tried &#8216;RETRIES&#8217; times if it fails at the socket/connection level.
115The default is 2.</dd></dl>
Joe Gregorio3b089c92012-04-17 12:40:39 -0400116
Joe Gregoriodf935b02012-08-28 12:19:28 -0400117<p>The <tt class="xref docutils literal"><span class="pre">httplib2</span></tt> module may raise the following Exceptions. Note that there
joe.gregorio258eefb2008-09-06 01:30:25 +0000118is an option that turns exceptions into normal responses with an HTTP status
119code indicating an error occured. See
Joe Gregoriodf935b02012-08-28 12:19:28 -0400120<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000121<dl class="exception">
122<dt id="httplib2.HttpLib2Error">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400123<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400124<dd>The Base Exception for all exceptions raised by httplib2.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000125
126<dl class="exception">
127<dt id="httplib2.RedirectMissingLocation">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400128<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400129<dd>A 3xx redirect response code was provided but no Location: header was provided
130to point to the new location.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000131
132<dl class="exception">
133<dt id="httplib2.RedirectLimit">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400134<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400135<dd>The maximum number of redirections was reached without coming to a final URI.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000136
137<dl class="exception">
138<dt id="httplib2.ServerNotFoundError">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400139<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400140<dd>Unable to resolve the host name given.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000141
142<dl class="exception">
143<dt id="httplib2.RelativeURIError">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400144<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400145<dd>A relative, as opposed to an absolute URI, was passed into request().</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000146
147<dl class="exception">
148<dt id="httplib2.FailedToDecompressContent">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400149<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400150<dd>The headers claimed that the content of the response was compressed but the
151decompression algorithm applied to the content failed.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000152
153<dl class="exception">
154<dt id="httplib2.UnimplementedDigestAuthOptionError">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400155<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400156<dd>The server requested a type of Digest authentication that we are unfamiliar
157with.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000158
159<dl class="exception">
160<dt id="httplib2.UnimplementedHmacDigestAuthOptionError">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400161<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400162<dd>The server requested a type of HMACDigest authentication that we are unfamiliar
163with.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000164
165<dl class="class">
166<dt id="httplib2.Http">
Joe Gregoriodf935b02012-08-28 12:19:28 -0400167<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
joe.gregorio258eefb2008-09-06 01:30:25 +0000169either 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
Joe Gregorio24c916a2011-06-13 15:13:11 -0400171is 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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400174is done. The <em>proxy_info</em> parameter is an object of type :class:ProxyInfo.</dd></dl>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400175
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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000184
185<dl class="class">
186<dt id="httplib2.Response">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400187<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400188<dd>Response is a subclass of <tt class="xref docutils literal"><span class="pre">dict</span></tt> and instances of this class are
joe.gregorio258eefb2008-09-06 01:30:25 +0000189returned from calls to Http.request. The <em>info</em> parameter is either an
Joe Gregoriodf935b02012-08-28 12:19:28 -0400190<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000191
192<dl class="class">
193<dt id="httplib2.FileCache">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400194<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400195<dd>FileCache implements a Cache as a directory of files. The <em>dir_name</em> parameter
joe.gregorio258eefb2008-09-06 01:30:25 +0000196is 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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400200constructor 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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000201
202<p>Http objects have the following methods:</p>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400203<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000205<dl class="method">
206<dt id="httplib2.Http.request">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400207<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000208<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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400222of 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
joe.gregorio258eefb2008-09-06 01:30:25 +0000223response entity body.</p>
224</dd></dl>
225
226<dl class="method">
227<dt id="httplib2.Http.add_credentials">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400228<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400229<dd>Adds a name and password that will be used when a request requires
joe.gregorio258eefb2008-09-06 01:30:25 +0000230authentication. 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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400233401 challenge.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000234
235<dl class="method">
236<dt id="httplib2.Http.add_certificate">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400237<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400238<dd>Add a <em>key</em> and <em>cert</em> that will be used for an SSL connection to the specified
joe.gregorio258eefb2008-09-06 01:30:25 +0000239domain. <em>keyfile</em> is the name of a PEM formatted file that contains your
Joe Gregoriodf935b02012-08-28 12:19:28 -0400240private key. <em>certfile</em> is a PEM formatted certificate chain file.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000241
242<dl class="method">
243<dt id="httplib2.Http.clear_credentials">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400244<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400245<dd>Remove all the names and passwords used for authentication.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000246
247<dl class="attribute">
248<dt id="httplib2.Http.follow_redirects">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400249<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400250<dd>If <tt class="xref docutils literal"><span class="pre">True</span></tt>, which is the default, safe redirects are followed, where safe means
joe.gregorio258eefb2008-09-06 01:30:25 +0000251that 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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400252being redirected. If <tt class="xref docutils literal"><span class="pre">False</span></tt> then no redirects are followed. Note that a False
joe.gregorio258eefb2008-09-06 01:30:25 +0000253&#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,
Joe Gregoriodf935b02012-08-28 12:19:28 -0400255&#8216;follow_redirects&#8217; must be True.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000256
257<dl class="attribute">
258<dt id="httplib2.Http.follow_all_redirects">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400259<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400260<dd>If <tt class="xref docutils literal"><span class="pre">False</span></tt>, which is the default, only safe redirects are followed, where safe
joe.gregorio258eefb2008-09-06 01:30:25 +0000261means 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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400262is being redirected. If <tt class="xref docutils literal"><span class="pre">True</span></tt> then all redirects are followed. Note that a
joe.gregorio258eefb2008-09-06 01:30:25 +0000263False &#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,
Joe Gregoriodf935b02012-08-28 12:19:28 -0400265&#8216;follow_redirects&#8217; must be True.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000266
267<dl class="attribute">
Joe Gregorio0f0f99d2012-07-23 14:45:17 -0400268<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400270<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
Joe Gregorio0f0f99d2012-07-23 14:45:17 -0400272in place when following redirects. This parameter only applies if following
273redirects is turned on. Note that turning this on could cause your credentials
Joe Gregoriodf935b02012-08-28 12:19:28 -0400274to leak, so carefully consider the consequences.</dd></dl>
Joe Gregorio0f0f99d2012-07-23 14:45:17 -0400275
276<dl class="attribute">
joe.gregorio258eefb2008-09-06 01:30:25 +0000277<dt id="httplib2.Http.force_exception_to_status_code">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400278<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400279<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000281objects that will be returned normally.</p>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400282<p>If <tt class="xref docutils literal"><span class="pre">False</span></tt>, which is the default, then exceptions will be thrown.</p>
joe.gregorio258eefb2008-09-06 01:30:25 +0000283</dd></dl>
284
285<dl class="attribute">
joe.gregorio700f04d2008-09-06 04:46:32 +0000286<dt id="httplib2.Http.optimistic_concurrency_methods">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400287<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400288<dd>By default a list that only contains &#8220;PUT&#8221;, this attribute
joe.gregorio700f04d2008-09-06 04:46:32 +0000289controls 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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400292get this support, such as &#8220;PATCH&#8221;.</dd></dl>
joe.gregorio700f04d2008-09-06 04:46:32 +0000293
294<dl class="attribute">
joe.gregorio258eefb2008-09-06 01:30:25 +0000295<dt id="httplib2.Http.ignore_etag">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400296<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400297<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
joe.gregorio258eefb2008-09-06 01:30:25 +0000298response 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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400301change it capriciously.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000302
303<p>If you wish to supply your own caching implementation then you will need to pass
Joe Gregoriodf935b02012-08-28 12:19:28 -0400304in an object that supports the following methods. Note that the <tt class="xref docutils literal"><span class="pre">memcache</span></tt>
joe.gregorio258eefb2008-09-06 01:30:25 +0000305module supports this interface natively.</p>
306</div>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400307<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000309<dl class="method">
310<dt id="httplib2.Cache.get">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400311<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400312<dd>Takes a string <em>key</em> and returns the value as a string.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000313
314<dl class="method">
315<dt id="httplib2.Cache.set">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400316<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400317<dd>Takes a string <em>key</em> and <em>value</em> and stores it in the cache.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000318
319<dl class="method">
320<dt id="httplib2.Cache.delete">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400321<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>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400322<dd>Deletes the cached value stored at <em>key</em>. The value of <em>key</em> is a string.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000323
Joe Gregoriodf935b02012-08-28 12:19:28 -0400324<p>Response objects are derived from <tt class="xref docutils literal"><span class="pre">dict</span></tt> and map header names (lower case
joe.gregorio258eefb2008-09-06 01:30:25 +0000325with the trailing colon removed) to header values. In addition to the dict
326methods a Response object also has:</p>
327</div>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400328<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000330<dl class="attribute">
331<dt id="httplib2.Response.fromcache">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400332<tt class="descclassname">Response.</tt><tt class="descname">fromcache</tt><a class="headerlink" href="#httplib2.Response.fromcache" title="Permalink to this definition">ΒΆ</a></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400333<dd>If <tt class="docutils literal"><span class="pre">true</span></tt> the the response was returned from the cache.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000334
335<dl class="attribute">
336<dt id="httplib2.Response.version">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400337<tt class="descclassname">Response.</tt><tt class="descname">version</tt><a class="headerlink" href="#httplib2.Response.version" title="Permalink to this definition">ΒΆ</a></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400338<dd>The version of HTTP that the server supports. A value of 11 means &#8216;1.1&#8217;.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000339
340<dl class="attribute">
341<dt id="httplib2.Response.status">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400342<tt class="descclassname">Response.</tt><tt class="descname">status</tt><a class="headerlink" href="#httplib2.Response.status" title="Permalink to this definition">ΒΆ</a></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400343<dd>The numerical HTTP status code returned in the response.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000344
345<dl class="attribute">
346<dt id="httplib2.Response.reason">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400347<tt class="descclassname">Response.</tt><tt class="descname">reason</tt><a class="headerlink" href="#httplib2.Response.reason" title="Permalink to this definition">ΒΆ</a></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400348<dd>The human readable component of the HTTP response status code.</dd></dl>
joe.gregorio258eefb2008-09-06 01:30:25 +0000349
350<dl class="attribute">
351<dt id="httplib2.Response.previous">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400352<tt class="descclassname">Response.</tt><tt class="descname">previous</tt><a class="headerlink" href="#httplib2.Response.previous" title="Permalink to this definition">ΒΆ</a></dt>
Joe Gregoriodf935b02012-08-28 12:19:28 -0400353<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
joe.gregorio258eefb2008-09-06 01:30:25 +0000354the very last HTTP request and <em>previous</em> points to the previous
Joe Gregoriodf935b02012-08-28 12:19:28 -0400355<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000358
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
Joe Gregoriodf935b02012-08-28 12:19:28 -0400364<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
joe.gregorio258eefb2008-09-06 01:30:25 +0000365redirects has exceeded the number of allowed number of redirects then the
Joe Gregoriodf935b02012-08-28 12:19:28 -0400366<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
joe.gregorio258eefb2008-09-06 01:30:25 +0000367complete 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">
Joe Gregorio24c916a2011-06-13 15:13:11 -0400371<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000373<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>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400375<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000376<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>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400378</div>
joe.gregorio258eefb2008-09-06 01:30:25 +0000379<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>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400382<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">httplib2</span>
joe.gregorio258eefb2008-09-06 01:30:25 +0000383<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>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400389</div>
joe.gregorio258eefb2008-09-06 01:30:25 +0000390<p>Here is an example that connects to a server that supports the Atom Publishing
391Protocol.</p>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400392<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">httplib2</span>
joe.gregorio258eefb2008-09-06 01:30:25 +0000393<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>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400409</div>
joe.gregorio258eefb2008-09-06 01:30:25 +0000410<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>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400414<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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000415<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>
Joe Gregorio24c916a2011-06-13 15:13:11 -0400425</div>
joe.gregorio258eefb2008-09-06 01:30:25 +0000426
427
428 </div>
429 </div>
430 </div>
431 <div class="sphinxsidebar">
432 <div class="sphinxsidebarwrapper">
Joe Gregoriodf935b02012-08-28 12:19:28 -0400433 <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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000440</ul>
441</li>
442</ul>
443
Joe Gregoriodf935b02012-08-28 12:19:28 -0400444 <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>
joe.gregorio258eefb2008-09-06 01:30:25 +0000465 </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"
Joe Gregorio24c916a2011-06-13 15:13:11 -0400474 >index</a></li>
joe.gregorio258eefb2008-09-06 01:30:25 +0000475 <li class="right" >
Joe Gregoriodf935b02012-08-28 12:19:28 -0400476 <a href="modindex.html" title="Global Module Index"
Joe Gregorio24c916a2011-06-13 15:13:11 -0400477 >modules</a> |</li>
joe.gregorio258eefb2008-09-06 01:30:25 +0000478 <li class="right" >
479 <a href="index.html" title="The httplib2 Library"
Joe Gregorio24c916a2011-06-13 15:13:11 -0400480 >previous</a> |</li>
Joe Gregorio26763712013-02-19 15:57:37 -0500481 <li><a href="index.html">httplib2 v0.4 documentation</a> &raquo;</li>
joe.gregorio258eefb2008-09-06 01:30:25 +0000482 </ul>
483 </div>
484 <div class="footer">
Joe Gregoriodf935b02012-08-28 12:19:28 -0400485 &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.
joe.gregorio258eefb2008-09-06 01:30:25 +0000488 </div>
489 </body>
Joe Gregorio26763712013-02-19 15:57:37 -0500490</html>