Updated docs
This commit is contained in:
15
CHANGELOG
15
CHANGELOG
@@ -1,3 +1,18 @@
|
||||
v1.0beta8
|
||||
- Updated meda upload support.
|
||||
- Many fixes for batch requests.
|
||||
- Better handling for requests that don't require a body.
|
||||
- Fix issues with Google App Engine Python 2.7 runtime.
|
||||
- Better support for proxies.
|
||||
- All Storages now have a .delete() method.
|
||||
- Important changes which might break your code:
|
||||
* apiclient.anyjson has moved to oauth2client.anyjson.
|
||||
* Some calls, for example, taskqueue().lease() used to require a parameter
|
||||
named body. In this new release only methods that really need to send a body
|
||||
require a body parameter, and so you may get errors about an unknown
|
||||
'body' parameter in your call. The solution is to remove the unneeded
|
||||
body={} parameter.
|
||||
|
||||
v1.0beta7
|
||||
- Support for batch requests. http://code.google.com/p/google-api-python-client/wiki/Batch
|
||||
- Support for media upload. http://code.google.com/p/google-api-python-client/wiki/MediaUpload
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.contrib</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/contrib/__init__.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/contrib/__init__.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/__init__.py">/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/__init__.py</a></font></td></tr></table>
|
||||
<p></p>
|
||||
<p>
|
||||
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.<a href="apiclient.contrib.html"><font color="#ffffff">contrib</font></a>.latitude</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/contrib/latitude/__init__.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/contrib/latitude/__init__.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/latitude/__init__.py">/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/latitude/__init__.py</a></font></td></tr></table>
|
||||
<p></p>
|
||||
<p>
|
||||
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.<a href="apiclient.contrib.html"><font color="#ffffff">contrib</font></a>.moderator</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/contrib/moderator/__init__.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/contrib/moderator/__init__.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/moderator/__init__.py">/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/moderator/__init__.py</a></font></td></tr></table>
|
||||
<p></p>
|
||||
<p>
|
||||
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.discovery</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/discovery.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/discovery.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/discovery.py">/home/jcgregorio/projects/google-api-python-client/apiclient/discovery.py</a></font></td></tr></table>
|
||||
<p><tt>Client for discovery based APIs<br>
|
||||
<br>
|
||||
A client library for Google's discovery based APIs.</tt></p>
|
||||
@@ -47,6 +47,8 @@ names from the Discovery service.<br>
|
||||
Args:<br>
|
||||
serviceName: string, name of the service<br>
|
||||
version: string, the version of the service<br>
|
||||
http: httplib2.Http, An instance of httplib2.Http or something that acts<br>
|
||||
like it that HTTP requests will be made through.<br>
|
||||
discoveryServiceUrl: string, a URI Template that points to<br>
|
||||
the location of the discovery service. It should have two<br>
|
||||
parameters {api} and {apiVersion} that when filled in<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.errors</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/errors.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/errors.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/errors.py">/home/jcgregorio/projects/google-api-python-client/apiclient/errors.py</a></font></td></tr></table>
|
||||
<p><tt>Errors for the library.<br>
|
||||
<br>
|
||||
All exceptions defined by the library<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.<a href="apiclient.ext.html"><font color="#ffffff">ext</font></a>.authtools</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/ext/authtools.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/ext/authtools.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/ext/authtools.py">/home/jcgregorio/projects/google-api-python-client/apiclient/ext/authtools.py</a></font></td></tr></table>
|
||||
<p><tt>Command-line tools for authenticating via OAuth 1.0<br>
|
||||
<br>
|
||||
Do the OAuth 1.0 Three Legged Dance for<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.<a href="apiclient.ext.html"><font color="#ffffff">ext</font></a>.file</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/ext/file.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/ext/file.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/ext/file.py">/home/jcgregorio/projects/google-api-python-client/apiclient/ext/file.py</a></font></td></tr></table>
|
||||
<p><tt>Utilities for OAuth.<br>
|
||||
<br>
|
||||
Utilities for making it easier to work with OAuth 1.0 credentials.</tt></p>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.ext</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/ext/__init__.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/ext/__init__.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/ext/__init__.py">/home/jcgregorio/projects/google-api-python-client/apiclient/ext/__init__.py</a></font></td></tr></table>
|
||||
<p></p>
|
||||
<p>
|
||||
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong>apiclient</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/__init__.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/__init__.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/__init__.py">/home/jcgregorio/projects/google-api-python-client/apiclient/__init__.py</a></font></td></tr></table>
|
||||
<p></p>
|
||||
<p>
|
||||
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.http</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/http.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/http.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/http.py">/home/jcgregorio/projects/google-api-python-client/apiclient/http.py</a></font></td></tr></table>
|
||||
<p><tt>Classes to encapsulate a single HTTP request.<br>
|
||||
<br>
|
||||
The classes implement a command pattern, with every<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.mimeparse</strong></big></big> (version 0.1.3)</font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/mimeparse.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/mimeparse.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/mimeparse.py">/home/jcgregorio/projects/google-api-python-client/apiclient/mimeparse.py</a></font></td></tr></table>
|
||||
<p><tt>MIME-Type Parser<br>
|
||||
<br>
|
||||
This module provides basic functions for handling mime-types. It can handle<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.model</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/model.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/model.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/model.py">/home/jcgregorio/projects/google-api-python-client/apiclient/model.py</a></font></td></tr></table>
|
||||
<p><tt><a href="#Model">Model</a> objects for requests and responses.<br>
|
||||
<br>
|
||||
Each API may support one or more serializations, such<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.oauth</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/oauth.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/oauth.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/oauth.py">/home/jcgregorio/projects/google-api-python-client/apiclient/oauth.py</a></font></td></tr></table>
|
||||
<p><tt>Utilities for OAuth.<br>
|
||||
<br>
|
||||
Utilities for making it easier to work with OAuth.</tt></p>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.schema</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/schema.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/apiclient/schema.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/schema.py">/home/jcgregorio/projects/google-api-python-client/apiclient/schema.py</a></font></td></tr></table>
|
||||
<p><tt>Schema processing for discovery based APIs<br>
|
||||
<br>
|
||||
<a href="#Schemas">Schemas</a> holds an APIs discovery schemas. It can return those schema as<br>
|
||||
|
||||
@@ -27,7 +27,7 @@ Args:<br>
|
||||
filter: string, Filters to be run on the report. (repeated)<br>
|
||||
startIndex: integer, Index of the first row of report data to return.<br>
|
||||
dimension: string, Dimensions to base the report on. (repeated)<br>
|
||||
accountId: string, Account upon which to report.<br>
|
||||
accountId: string, Account upon which to report. (required)<br>
|
||||
<br>
|
||||
Returns:<br>
|
||||
An object of the form<br>
|
||||
|
||||
@@ -29,7 +29,7 @@ Returns:<br>
|
||||
An object of the form<br>
|
||||
<br>
|
||||
{<br>
|
||||
"totalItems": 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated. Total number of volumes found.<br>
|
||||
"totalItems": 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated.<br>
|
||||
"items": [ # A list of volumes.<br>
|
||||
{<br>
|
||||
"kind": "books#volume", # Resource type for a volume. (In LITE projection.)<br>
|
||||
|
||||
@@ -105,7 +105,7 @@ Returns:<br>
|
||||
An object of the form<br>
|
||||
<br>
|
||||
{<br>
|
||||
"totalItems": 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated. Total number of volumes found.<br>
|
||||
"totalItems": 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated.<br>
|
||||
"items": [ # A list of volumes.<br>
|
||||
{<br>
|
||||
"kind": "books#volume", # Resource type for a volume. (In LITE projection.)<br>
|
||||
|
||||
@@ -35,6 +35,7 @@ Returns:<br>
|
||||
"kind": "books#annotation", # Resource type.<br>
|
||||
"updated": "A String", # Timestamp for the last time this annotation was modified.<br>
|
||||
"created": "A String", # Timestamp for the created time of this annotation.<br>
|
||||
"deleted": True or False, # Indicates that this annotation is deleted.<br>
|
||||
"beforeSelectedText": "A String", # Anchor text before excerpt.<br>
|
||||
"currentVersionRanges": { # Selection ranges for the most recent content version.<br>
|
||||
"contentVersion": "A String", # Content version applicable to ranges below.<br>
|
||||
@@ -101,6 +102,7 @@ Args:<br>
|
||||
"kind": "books#annotation", # Resource type.<br>
|
||||
"updated": "A String", # Timestamp for the last time this annotation was modified.<br>
|
||||
"created": "A String", # Timestamp for the created time of this annotation.<br>
|
||||
"deleted": True or False, # Indicates that this annotation is deleted.<br>
|
||||
"beforeSelectedText": "A String", # Anchor text before excerpt.<br>
|
||||
"currentVersionRanges": { # Selection ranges for the most recent content version.<br>
|
||||
"contentVersion": "A String", # Content version applicable to ranges below.<br>
|
||||
@@ -167,6 +169,7 @@ Returns:<br>
|
||||
"kind": "books#annotation", # Resource type.<br>
|
||||
"updated": "A String", # Timestamp for the last time this annotation was modified.<br>
|
||||
"created": "A String", # Timestamp for the created time of this annotation.<br>
|
||||
"deleted": True or False, # Indicates that this annotation is deleted.<br>
|
||||
"beforeSelectedText": "A String", # Anchor text before excerpt.<br>
|
||||
"currentVersionRanges": { # Selection ranges for the most recent content version.<br>
|
||||
"contentVersion": "A String", # Content version applicable to ranges below.<br>
|
||||
@@ -231,9 +234,10 @@ Args:<br>
|
||||
layerId: string, The layer id to limit annotation by.<br>
|
||||
volumeId: string, The volume to restrict annotations to.<br>
|
||||
maxResults: integer, Maximum number of results to return<br>
|
||||
source: string, String to identify the originator of this request.<br>
|
||||
showDeleted: boolean, Set to true to return deleted annotations. updatedMin must be in the request to use this. Defaults to false.<br>
|
||||
pageIds: string, The page id(s) for the volume that is being queried. (repeated)<br>
|
||||
contentVersion: string, The content version for the requested volume.<br>
|
||||
source: string, String to identify the originator of this request.<br>
|
||||
country: string, ISO-3166-1 code to override the IP-based location.<br>
|
||||
updatedMin: string, <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp to restrict to items updated since this timestamp (inclusive).<br>
|
||||
<br>
|
||||
@@ -247,6 +251,7 @@ Returns:<br>
|
||||
"kind": "books#annotation", # Resource type.<br>
|
||||
"updated": "A String", # Timestamp for the last time this annotation was modified.<br>
|
||||
"created": "A String", # Timestamp for the created time of this annotation.<br>
|
||||
"deleted": True or False, # Indicates that this annotation is deleted.<br>
|
||||
"beforeSelectedText": "A String", # Anchor text before excerpt.<br>
|
||||
"currentVersionRanges": { # Selection ranges for the most recent content version.<br>
|
||||
"contentVersion": "A String", # Content version applicable to ranges below.<br>
|
||||
@@ -327,6 +332,7 @@ Args:<br>
|
||||
"kind": "books#annotation", # Resource type.<br>
|
||||
"updated": "A String", # Timestamp for the last time this annotation was modified.<br>
|
||||
"created": "A String", # Timestamp for the created time of this annotation.<br>
|
||||
"deleted": True or False, # Indicates that this annotation is deleted.<br>
|
||||
"beforeSelectedText": "A String", # Anchor text before excerpt.<br>
|
||||
"currentVersionRanges": { # Selection ranges for the most recent content version.<br>
|
||||
"contentVersion": "A String", # Content version applicable to ranges below.<br>
|
||||
@@ -394,6 +400,7 @@ Returns:<br>
|
||||
"kind": "books#annotation", # Resource type.<br>
|
||||
"updated": "A String", # Timestamp for the last time this annotation was modified.<br>
|
||||
"created": "A String", # Timestamp for the created time of this annotation.<br>
|
||||
"deleted": True or False, # Indicates that this annotation is deleted.<br>
|
||||
"beforeSelectedText": "A String", # Anchor text before excerpt.<br>
|
||||
"currentVersionRanges": { # Selection ranges for the most recent content version.<br>
|
||||
"contentVersion": "A String", # Content version applicable to ranges below.<br>
|
||||
|
||||
@@ -27,13 +27,13 @@ Args:<br>
|
||||
maxResults: integer, Maximum number of results to return<br>
|
||||
q: string, Full-text search query string in this bookshelf.<br>
|
||||
startIndex: integer, Index of the first element to return (starts at 0)<br>
|
||||
shelf: string, The bookshelf id or name retrieve volumes for.<br>
|
||||
shelf: string, The bookshelf id or name retrieve volumes for. (required)<br>
|
||||
<br>
|
||||
Returns:<br>
|
||||
An object of the form<br>
|
||||
<br>
|
||||
{<br>
|
||||
"totalItems": 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated. Total number of volumes found.<br>
|
||||
"totalItems": 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated.<br>
|
||||
"items": [ # A list of volumes.<br>
|
||||
{<br>
|
||||
"kind": "books#volume", # Resource type for a volume. (In LITE projection.)<br>
|
||||
|
||||
@@ -204,7 +204,7 @@ Returns:<br>
|
||||
An object of the form<br>
|
||||
<br>
|
||||
{<br>
|
||||
"totalItems": 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated. Total number of volumes found.<br>
|
||||
"totalItems": 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated.<br>
|
||||
"items": [ # A list of volumes.<br>
|
||||
{<br>
|
||||
"kind": "books#volume", # Resource type for a volume. (In LITE projection.)<br>
|
||||
|
||||
@@ -24,14 +24,11 @@ Returns:<br>
|
||||
An object of the form<br>
|
||||
<br>
|
||||
{<br>
|
||||
"schemas": { # The schemas for this API.<br>
|
||||
},<br>
|
||||
"kind": "discovery#restDescription", # The kind for this response.<br>
|
||||
"labels": [ # Labels for the status of this API, such as labs or deprecated.<br>
|
||||
"A String",<br>
|
||||
],<br>
|
||||
"protocol": "rest", # The protocol described by this document.<br>
|
||||
"features": [ # A list of supported features for this API.<br>
|
||||
"A String",<br>
|
||||
],<br>
|
||||
"description": "A String", # The description of this API.<br>
|
||||
"parameters": { # Common parameters that apply across all apis.<br>
|
||||
},<br>
|
||||
"icons": { # Links to 16x16 and 32x32 icons representing the API.<br>
|
||||
@@ -39,7 +36,9 @@ Returns:<br>
|
||||
"x16": "A String", # The url of the 16x16 icon.<br>
|
||||
},<br>
|
||||
"basePath": "A String", # The base path for REST requests.<br>
|
||||
"description": "A String", # The description of this API.<br>
|
||||
"labels": [ # Labels for the status of this API, such as labs or deprecated.<br>
|
||||
"A String",<br>
|
||||
],<br>
|
||||
"baseUrl": "A String", # The base URL for REST requests.<br>
|
||||
"auth": { # Authentication information.<br>
|
||||
"oauth2": { # OAuth 2.0 authentication information.<br>
|
||||
@@ -51,9 +50,12 @@ Returns:<br>
|
||||
"methods": { # API-level methods for this API.<br>
|
||||
},<br>
|
||||
"version": "A String", # The version of this API.<br>
|
||||
"features": [ # A list of supported features for this API.<br>
|
||||
"A String",<br>
|
||||
],<br>
|
||||
"title": "A String", # The title of this API.<br>
|
||||
"schemas": { # The schemas for this API.<br>
|
||||
},<br>
|
||||
"discoveryVersion": "v1", # Indicate the version of the Discovery API used to generate this doc.<br>
|
||||
"revision": "A String", # The version of this API.<br>
|
||||
"id": "A String", # The id of this API.<br>
|
||||
"resources": { # The resources in this API.<br>
|
||||
},<br>
|
||||
@@ -96,6 +98,7 @@ Returns:<br>
|
||||
"documentationLink": "A String", # A link to human readable documentation for the API.<br>
|
||||
},<br>
|
||||
],<br>
|
||||
"discoveryVersion": "v1", # Indicate the version of the Discovery API used to generate this doc.<br>
|
||||
"kind": "discovery#directoryList", # The kind for this response.<br>
|
||||
}</tt></dd></dl>
|
||||
|
||||
|
||||
@@ -283,7 +283,6 @@ Args:<br>
|
||||
location: string, Location used to determine tax and shipping<br>
|
||||
maxVariants: integer, Maximum number of variant results to return per result<br>
|
||||
debug_searchRequest: boolean, Google Internal<br>
|
||||
app: string, The internal application that generated the request (if any).<br>
|
||||
relatedQueries_enabled: boolean, Whether to return related queries<br>
|
||||
facets_useGcsConfig: boolean, Whether to return facet information as configured in the GCS account<br>
|
||||
safe: boolean, Whether safe search is enabled. Default: true<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="oauth2client.html"><font color="#ffffff">oauth2client</font></a>.anyjson</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/anyjson.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/anyjson.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/oauth2client/anyjson.py">/home/jcgregorio/projects/google-api-python-client/oauth2client/anyjson.py</a></font></td></tr></table>
|
||||
<p><tt>Utility module to import a JSON module<br>
|
||||
<br>
|
||||
Hides all the messy details of exactly where<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="oauth2client.html"><font color="#ffffff">oauth2client</font></a>.client</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/client.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/client.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/oauth2client/client.py">/home/jcgregorio/projects/google-api-python-client/oauth2client/client.py</a></font></td></tr></table>
|
||||
<p><tt>An OAuth 2.0 client.<br>
|
||||
<br>
|
||||
Tools for interacting with OAuth 2.0 protected resources.</tt></p>
|
||||
@@ -489,7 +489,7 @@ Subclasses must define an <a href="#Credentials-authorize">a
|
||||
an HTTP transport.<br>
|
||||
<br>
|
||||
Subclasses must also specify a classmethod named 'from_json' that takes a JSON<br>
|
||||
string as input and returns an instaniated Crentials <a href="__builtin__.html#object">object</a>.<br> </tt></td></tr>
|
||||
string as input and returns an instaniated <a href="#Credentials">Credentials</a> <a href="__builtin__.html#object">object</a>.<br> </tt></td></tr>
|
||||
<tr><td> </td>
|
||||
<td width="100%">Methods defined here:<br>
|
||||
<dl><dt><a name="Credentials-apply"><strong>apply</strong></a>(self, headers)</dt><dd><tt>Add the authorization to the headers.<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="oauth2client.html"><font color="#ffffff">oauth2client</font></a>.clientsecrets</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/clientsecrets.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/clientsecrets.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/oauth2client/clientsecrets.py">/home/jcgregorio/projects/google-api-python-client/oauth2client/clientsecrets.py</a></font></td></tr></table>
|
||||
<p><tt>Utilities for reading OAuth 2.0 client secret files.<br>
|
||||
<br>
|
||||
A client_secrets.json file contains all the information needed to interact with<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="oauth2client.html"><font color="#ffffff">oauth2client</font></a>.crypt</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/crypt.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/crypt.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/oauth2client/crypt.py">/home/jcgregorio/projects/google-api-python-client/oauth2client/crypt.py</a></font></td></tr></table>
|
||||
<p><tt># -*- coding: utf-8 -*-<br>
|
||||
#<br>
|
||||
# Copyright (C) 2011 Google Inc.<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="oauth2client.html"><font color="#ffffff">oauth2client</font></a>.file</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/file.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/file.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/oauth2client/file.py">/home/jcgregorio/projects/google-api-python-client/oauth2client/file.py</a></font></td></tr></table>
|
||||
<p><tt>Utilities for OAuth.<br>
|
||||
<br>
|
||||
Utilities for making it easier to work with OAuth 2.0<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong>oauth2client</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/__init__.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/__init__.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/oauth2client/__init__.py">/home/jcgregorio/projects/google-api-python-client/oauth2client/__init__.py</a></font></td></tr></table>
|
||||
<p></p>
|
||||
<p>
|
||||
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="oauth2client.html"><font color="#ffffff">oauth2client</font></a>.multistore_file</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/multistore_file.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/multistore_file.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/oauth2client/multistore_file.py">/home/jcgregorio/projects/google-api-python-client/oauth2client/multistore_file.py</a></font></td></tr></table>
|
||||
<p><tt>Multi-credential file store with lock support.<br>
|
||||
<br>
|
||||
This module implements a JSON credential store where multiple<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="oauth2client.html"><font color="#ffffff">oauth2client</font></a>.tools</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/tools.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/oauth2client/tools.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/oauth2client/tools.py">/home/jcgregorio/projects/google-api-python-client/oauth2client/tools.py</a></font></td></tr></table>
|
||||
<p><tt>Command-line tools for authenticating via OAuth 2.0<br>
|
||||
<br>
|
||||
Do the OAuth 2.0 Web Server dance for a command line application. Stores the<br>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td valign=bottom> <br>
|
||||
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong>uritemplate</strong></big></big></font></td
|
||||
><td align=right valign=bottom
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient-release/uritemplate/__init__.py">/usr/local/google/home/jcgregorio/projects/apiclient-release/uritemplate/__init__.py</a></font></td></tr></table>
|
||||
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/uritemplate/__init__.py">/home/jcgregorio/projects/google-api-python-client/uritemplate/__init__.py</a></font></td></tr></table>
|
||||
<p><tt># Early, and incomplete implementation of -04.<br>
|
||||
#</tt></p>
|
||||
<p>
|
||||
|
||||
Reference in New Issue
Block a user