blob: adc081ec7e5d6011da26c963156b50af66b7126a [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>The httplib2 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="#" />
Joe Gregorio26763712013-02-19 15:57:37 -050023 <link rel="next" title="httplib2 A comprehensive HTTP client library." href="libhttplib2.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="libhttplib2.html" title="httplib2 A comprehensive HTTP client library."
37 accesskey="N">next</a> |</li>
Joe Gregorio26763712013-02-19 15:57:37 -050038 <li><a href="#">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="the-httplib2-library">
Joe Gregorio24c916a2011-06-13 15:13:11 -040048<h1>The httplib2 Library<a class="headerlink" href="#the-httplib2-library" title="Permalink to this headline"></a></h1>
joe.gregorio258eefb2008-09-06 01:30:25 +000049<table class="docutils field-list" frame="void" rules="none">
50<col class="field-name" />
51<col class="field-body" />
52<tbody valign="top">
Joe Gregoriodf935b02012-08-28 12:19:28 -040053<tr class="field"><th class="field-name">Author:</th><td class="field-body">Joe Gregorio</td>
joe.gregorio258eefb2008-09-06 01:30:25 +000054</tr>
Joe Gregoriodf935b02012-08-28 12:19:28 -040055<tr class="field"><th class="field-name">Date:</th><td class="field-body">Mar 8, 2007</td>
joe.gregorio258eefb2008-09-06 01:30:25 +000056</tr>
57</tbody>
58</table>
59<div class="topic">
60<p class="topic-title first">Abstract</p>
Joe Gregoriodf935b02012-08-28 12:19:28 -040061<p>The <a title="" class="reference external" href="libhttplib2.html#module-httplib2"><tt class="xref docutils literal"><span class="pre">httplib2</span></tt></a> module is a comprehensive HTTP client library that handles
joe.gregorio258eefb2008-09-06 01:30:25 +000062caching, keep-alive, compression, redirects and many kinds of authentication.</p>
63</div>
64<p>Contents:</p>
65<ul>
Joe Gregoriodf935b02012-08-28 12:19:28 -040066<li class="toctree-l1"><a class="reference external" href="libhttplib2.html"><tt class="docutils literal"><span class="pre">httplib2</span></tt> A comprehensive HTTP client library.</a><ul>
67<li class="toctree-l2"><a class="reference external" href="libhttplib2.html#http-objects">Http Objects</a></li>
68<li class="toctree-l2"><a class="reference external" href="libhttplib2.html#cache-objects">Cache Objects</a></li>
69<li class="toctree-l2"><a class="reference external" href="libhttplib2.html#response-objects">Response Objects</a></li>
70<li class="toctree-l2"><a class="reference external" href="libhttplib2.html#examples">Examples</a></li>
joe.gregorio258eefb2008-09-06 01:30:25 +000071</ul>
72</li>
73</ul>
74<div class="section" id="indices-and-tables">
Joe Gregorio24c916a2011-06-13 15:13:11 -040075<h2>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline"></a></h2>
joe.gregorio258eefb2008-09-06 01:30:25 +000076<ul class="simple">
Joe Gregoriodf935b02012-08-28 12:19:28 -040077<li><a class="reference external" href="genindex.html"><em>Index</em></a></li>
78<li><a class="reference external" href="modindex.html"><em>Module Index</em></a></li>
79<li><a class="reference external" href="search.html"><em>Search Page</em></a></li>
joe.gregorio258eefb2008-09-06 01:30:25 +000080</ul>
81</div>
82</div>
83
84
85 </div>
86 </div>
87 </div>
88 <div class="sphinxsidebar">
89 <div class="sphinxsidebarwrapper">
Joe Gregoriodf935b02012-08-28 12:19:28 -040090 <h3><a href="#">Table Of Contents</a></h3>
91 <ul>
92<li><a class="reference external" href="#">The httplib2 Library</a><ul>
93<li><a class="reference external" href="#indices-and-tables">Indices and tables</a></li>
joe.gregorio258eefb2008-09-06 01:30:25 +000094</ul>
95</li>
96</ul>
97
Joe Gregoriodf935b02012-08-28 12:19:28 -040098 <h4>Next topic</h4>
99 <p class="topless"><a href="libhttplib2.html"
100 title="next chapter"><tt class="docutils literal"><span class="pre">httplib2</span></tt> A comprehensive HTTP client library.</a></p>
101 <h3>This Page</h3>
102 <ul class="this-page-menu">
103 <li><a href="_sources/index.txt"
104 rel="nofollow">Show Source</a></li>
105 </ul>
106 <div id="searchbox" style="display: none">
107 <h3>Quick search</h3>
108 <form class="search" action="search.html" method="get">
109 <input type="text" name="q" size="18" />
110 <input type="submit" value="Go" />
111 <input type="hidden" name="check_keywords" value="yes" />
112 <input type="hidden" name="area" value="default" />
113 </form>
114 <p class="searchtip" style="font-size: 90%">
115 Enter search terms or a module, class or function name.
116 </p>
117 </div>
118 <script type="text/javascript">$('#searchbox').show(0);</script>
joe.gregorio258eefb2008-09-06 01:30:25 +0000119 </div>
120 </div>
121 <div class="clearer"></div>
122 </div>
123 <div class="related">
124 <h3>Navigation</h3>
125 <ul>
126 <li class="right" style="margin-right: 10px">
127 <a href="genindex.html" title="General Index"
Joe Gregorio24c916a2011-06-13 15:13:11 -0400128 >index</a></li>
joe.gregorio258eefb2008-09-06 01:30:25 +0000129 <li class="right" >
Joe Gregoriodf935b02012-08-28 12:19:28 -0400130 <a href="modindex.html" title="Global Module Index"
Joe Gregorio24c916a2011-06-13 15:13:11 -0400131 >modules</a> |</li>
joe.gregorio258eefb2008-09-06 01:30:25 +0000132 <li class="right" >
133 <a href="libhttplib2.html" title="httplib2 A comprehensive HTTP client library."
Joe Gregorio24c916a2011-06-13 15:13:11 -0400134 >next</a> |</li>
Joe Gregorio26763712013-02-19 15:57:37 -0500135 <li><a href="#">httplib2 v0.4 documentation</a> &raquo;</li>
joe.gregorio258eefb2008-09-06 01:30:25 +0000136 </ul>
137 </div>
138 <div class="footer">
Joe Gregoriodf935b02012-08-28 12:19:28 -0400139 &copy; Copyright 2008, Joe Gregorio.
140 Last updated on Aug 28, 2012.
141 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.4.
joe.gregorio258eefb2008-09-06 01:30:25 +0000142 </div>
143 </body>
Joe Gregorio26763712013-02-19 15:57:37 -0500144</html>