diff --git a/docs/apiclient.anyjson.html b/docs/apiclient.anyjson.html index 8cd9037..df64fcd 100644 --- a/docs/apiclient.anyjson.html +++ b/docs/apiclient.anyjson.html @@ -8,7 +8,7 @@  
 
apiclient.anyjson
index
/home/jcgregorio/projects/google-api-python-client/apiclient/anyjson.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/anyjson.py

Utility module to import a JSON module
 
Hides all the messy details of exactly where
diff --git a/docs/apiclient.contrib.buzz.html b/docs/apiclient.contrib.buzz.html index c0180e9..d188914 100644 --- a/docs/apiclient.contrib.buzz.html +++ b/docs/apiclient.contrib.buzz.html @@ -8,7 +8,7 @@  
 
apiclient.contrib.buzz
index
/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/buzz/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/contrib/buzz/__init__.py

diff --git a/docs/apiclient.contrib.html b/docs/apiclient.contrib.html index c190bda..1b772a9 100644 --- a/docs/apiclient.contrib.html +++ b/docs/apiclient.contrib.html @@ -8,7 +8,7 @@
 
 
apiclient.contrib
index
/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/contrib/__init__.py

diff --git a/docs/apiclient.contrib.latitude.html b/docs/apiclient.contrib.latitude.html index 1aa202d..8b6d296 100644 --- a/docs/apiclient.contrib.latitude.html +++ b/docs/apiclient.contrib.latitude.html @@ -8,7 +8,7 @@
 
 
apiclient.contrib.latitude
index
/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/latitude/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/contrib/latitude/__init__.py

diff --git a/docs/apiclient.contrib.moderator.html b/docs/apiclient.contrib.moderator.html index 9f8377b..91aea14 100644 --- a/docs/apiclient.contrib.moderator.html +++ b/docs/apiclient.contrib.moderator.html @@ -8,7 +8,7 @@
 
 
apiclient.contrib.moderator
index
/home/jcgregorio/projects/google-api-python-client/apiclient/contrib/moderator/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/contrib/moderator/__init__.py

diff --git a/docs/apiclient.discovery.html b/docs/apiclient.discovery.html index c5df758..6916fcd 100644 --- a/docs/apiclient.discovery.html +++ b/docs/apiclient.discovery.html @@ -8,7 +8,7 @@
 
 
apiclient.discovery
index
/home/jcgregorio/projects/google-api-python-client/apiclient/discovery.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/discovery.py

Client for discovery based APIs
 
A client library for Google's discovery based APIs.

@@ -21,12 +21,14 @@ A client library for Google's discovery based         
httplib2
logging
-
os
+apiclient.mimeparse
+
mimetypes
+os
re
simplejson
uritemplate
-
urllib
-urlparse
+urllib
+
urlparse

diff --git a/docs/apiclient.errors.html b/docs/apiclient.errors.html index 629124f..3a31c12 100644 --- a/docs/apiclient.errors.html +++ b/docs/apiclient.errors.html @@ -8,7 +8,7 @@
 
 
apiclient.errors
index
/home/jcgregorio/projects/google-api-python-client/apiclient/errors.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/errors.py

Errors for the library.
 
All exceptions defined by the library
@@ -37,6 +37,8 @@ should be defined in this file.

HttpError
InvalidJsonError +
MediaUploadSizeError +
UnacceptableMimeTypeError
UnknownLinkType
@@ -217,6 +219,128 @@ Use of negative indices is not supported.
__unicode__(...)
+
+Data descriptors inherited from exceptions.BaseException:
+
__dict__
+
+
args
+
+
message
+
+

+ + + + + + + +
 
+class MediaUploadSizeError(Error)
   Media is larger than the method can accept.
 
 
Method resolution order:
+
MediaUploadSizeError
+
Error
+
exceptions.Exception
+
exceptions.BaseException
+
__builtin__.object
+
+
+Data descriptors inherited from Error:
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+Methods inherited from exceptions.Exception:
+
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
+ +
+Data and other attributes inherited from exceptions.Exception:
+
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
+ +
+Methods inherited from exceptions.BaseException:
+
__delattr__(...)
x.__delattr__('name') <==> del x.name
+ +
__getattribute__(...)
x.__getattribute__('name') <==> x.name
+ +
__getitem__(...)
x.__getitem__(y) <==> x[y]
+ +
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]

+Use of negative indices is not supported.
+ +
__reduce__(...)
+ +
__repr__(...)
x.__repr__() <==> repr(x)
+ +
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
+ +
__setstate__(...)
+ +
__str__(...)
x.__str__() <==> str(x)
+ +
__unicode__(...)
+ +
+Data descriptors inherited from exceptions.BaseException:
+
__dict__
+
+
args
+
+
message
+
+

+ + + + + + + +
 
+class UnacceptableMimeTypeError(Error)
   That is an unacceptable mimetype for this operation.
 
 
Method resolution order:
+
UnacceptableMimeTypeError
+
Error
+
exceptions.Exception
+
exceptions.BaseException
+
__builtin__.object
+
+
+Data descriptors inherited from Error:
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+Methods inherited from exceptions.Exception:
+
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
+ +
+Data and other attributes inherited from exceptions.Exception:
+
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
+ +
+Methods inherited from exceptions.BaseException:
+
__delattr__(...)
x.__delattr__('name') <==> del x.name
+ +
__getattribute__(...)
x.__getattribute__('name') <==> x.name
+ +
__getitem__(...)
x.__getitem__(y) <==> x[y]
+ +
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]

+Use of negative indices is not supported.
+ +
__reduce__(...)
+ +
__repr__(...)
x.__repr__() <==> repr(x)
+ +
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
+ +
__setstate__(...)
+ +
__str__(...)
x.__str__() <==> str(x)
+ +
__unicode__(...)
+
Data descriptors inherited from exceptions.BaseException:
__dict__
diff --git a/docs/apiclient.ext.authtools.html b/docs/apiclient.ext.authtools.html index c481dda..b1cfd41 100644 --- a/docs/apiclient.ext.authtools.html +++ b/docs/apiclient.ext.authtools.html @@ -8,7 +8,7 @@
 
 
apiclient.ext.authtools
index
/home/jcgregorio/projects/google-api-python-client/apiclient/ext/authtools.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/ext/authtools.py

Command-line tools for authenticating via OAuth 1.0
 
Do the OAuth 1.0 Three Legged Dance for
@@ -23,10 +23,11 @@ other example apps in the same directory.

       
BaseHTTPServer
+gflags
logging
-
socket
+socket
sys
-

+

 
diff --git a/docs/apiclient.ext.file.html b/docs/apiclient.ext.file.html index 8a8c479..49df8e2 100644 --- a/docs/apiclient.ext.file.html +++ b/docs/apiclient.ext.file.html @@ -8,7 +8,7 @@
 
 
apiclient.ext.file
index
/home/jcgregorio/projects/google-api-python-client/apiclient/ext/file.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/ext/file.py

Utilities for OAuth.
 
Utilities for making it easier to work with OAuth 1.0 credentials.

diff --git a/docs/apiclient.ext.html b/docs/apiclient.ext.html index 639d3db..f121463 100644 --- a/docs/apiclient.ext.html +++ b/docs/apiclient.ext.html @@ -8,7 +8,7 @@  
 
apiclient.ext
index
/home/jcgregorio/projects/google-api-python-client/apiclient/ext/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/ext/__init__.py

diff --git a/docs/apiclient.html b/docs/apiclient.html index 5e8ff49..11a41b8 100644 --- a/docs/apiclient.html +++ b/docs/apiclient.html @@ -8,7 +8,7 @@
 
 
apiclient
index
/home/jcgregorio/projects/google-api-python-client/apiclient/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/__init__.py

@@ -19,11 +19,12 @@
       
anyjson
contrib (package)
-
discovery
-errors
-
ext (package)
+discovery
+
errors
+ext (package)
http
-
model
+
mimeparse
+model
oauth
-
+ \ No newline at end of file diff --git a/docs/apiclient.http.html b/docs/apiclient.http.html index f2d9b11..477790e 100644 --- a/docs/apiclient.http.html +++ b/docs/apiclient.http.html @@ -8,7 +8,7 @@  
 
apiclient.http
index
/home/jcgregorio/projects/google-api-python-client/apiclient/http.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/http.py

Classes to encapsulate a single HTTP request.
 
The classes implement a command pattern, with every
diff --git a/docs/apiclient.mimeparse.html b/docs/apiclient.mimeparse.html new file mode 100644 index 0000000..0ce36c1 --- /dev/null +++ b/docs/apiclient.mimeparse.html @@ -0,0 +1,117 @@ + + +Python: module apiclient.mimeparse + + + + +
 
+ 
apiclient.mimeparse (version 0.1.3)
index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/mimeparse.py
+

MIME-Type Parser

+This module provides basic functions for handling mime-types. It can handle
+matching mime-types against a list of media-ranges. See section 14.1 of the
+HTTP specification [RFC 2616] for a complete explanation.

+   http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1

+Contents:
+ - parse_mime_type():   Parses a mime-type into its component parts.
+ - parse_media_range(): Media-ranges are mime-types with wild-cards and a 'q'
+                          quality parameter.
+ - quality():           Determines the quality ('q') of a mime-type when
+                          compared against a list of media-ranges.
+ - quality_parsed():    Just like quality() except the second parameter must be
+                          pre-parsed.
+ - best_match():        Choose the mime-type with the highest quality ('q')
+                          from a list of candidates.

+

+ + + + + +
 
+Functions
       
best_match(supported, header)
Return mime-type with the highest quality ('q') from list of candidates.

+Takes a list of supported mime-types and finds the best match for all the
+media-ranges listed in header. The value of header must be a string that
+conforms to the format of the HTTP Accept: header. The value of 'supported'
+is a list of mime-types. The list of supported mime-types should be sorted
+in order of increasing desirability, in case of a situation where there is
+a tie.

+>>> best_match(['application/xbel+xml', 'text/xml'],
+               'text/*;q=0.5,*/*; q=0.1')
+'text/xml'
+
fitness_and_quality_parsed(mime_type, parsed_ranges)
Find the best match for a mime-type amongst parsed media-ranges.

+Find the best match for a given mime-type against a list of media_ranges
+that have already been parsed by parse_media_range(). Returns a tuple of
+the fitness value and the value of the 'q' quality parameter of the best
+match, or (-1, 0) if no match was found. Just as for quality_parsed(),
+'parsed_ranges' must be a list of parsed media ranges.
+
parse_media_range(range)
Parse a media-range into its component parts.

+Carves up a media range and returns a tuple of the (type, subtype,
+params) where 'params' is a dictionary of all the parameters for the media
+range.  For example, the media range 'application/*;q=0.5' would get parsed
+into:

+   ('application', '*', {'q', '0.5'})

+In addition this function also guarantees that there is a value for 'q'
+in the params dictionary, filling it in with a proper default if
+necessary.
+
parse_mime_type(mime_type)
Parses a mime-type into its component parts.

+Carves up a mime-type and returns a tuple of the (type, subtype, params)
+where 'params' is a dictionary of all the parameters for the media range.
+For example, the media range 'application/xhtml;q=0.5' would get parsed
+into:

+   ('application', 'xhtml', {'q', '0.5'})
+
quality(mime_type, ranges)
Return the quality ('q') of a mime-type against a list of media-ranges.

+Returns the quality 'q' of a mime-type when compared against the
+media-ranges in ranges. For example:

+>>> quality('text/html','text/*;q=0.3, text/html;q=0.7,
+              text/html;level=1, text/html;level=2;q=0.4, */*;q=0.5')
+0.7
+
quality_parsed(mime_type, parsed_ranges)
Find the best match for a mime-type amongst parsed media-ranges.

+Find the best match for a given mime-type against a list of media_ranges
+that have already been parsed by parse_media_range(). Returns the 'q'
+quality parameter of the best match, 0 if no match was found. This function
+bahaves the same as quality() except that 'parsed_ranges' must be a list of
+parsed media ranges.
+

+ + + + + +
 
+Data
       __author__ = 'Joe Gregorio'
+__credits__ = ''
+__email__ = 'joe@bitworking.org'
+__license__ = 'MIT License'
+__version__ = '0.1.3'

+ + + + + +
 
+Author
       Joe Gregorio

+ + + + + +
 
+Credits
       
+ \ No newline at end of file diff --git a/docs/apiclient.model.html b/docs/apiclient.model.html index 9b26d10..0d7e5e1 100644 --- a/docs/apiclient.model.html +++ b/docs/apiclient.model.html @@ -8,7 +8,7 @@  
 
apiclient.model
index
/home/jcgregorio/projects/google-api-python-client/apiclient/model.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/model.py

Model objects for requests and responses.
 
Each API may support one or more serializations, such
@@ -354,6 +354,32 @@ Data descriptors inherited from Model:<

+ + + + +
 
+Functions
       
makepatch(original, modified)
Create a patch object.

+Some methods support PATCH, an efficient way to send updates to a resource.
+This method allows the easy construction of patch bodies by looking at the
+differences between a resource before and after it was modified.

+Args:
+  original: object, the original deserialized resource
+  modified: object, the modified deserialized resource
+Returns:
+  An object that contains only the changes from original to modified, in a
+  form suitable to pass to a PATCH method.

+Example usage:
+  item = service.activities().get(postid=postid, userid=userid).execute()
+  original = copy.deepcopy(item)
+  item['object']['content'] = 'This is updated.'
+  service.activities.patch(postid=postid, userid=userid,
+    body=makepatch(original, item)).execute()
+

+ diff --git a/docs/apiclient.oauth.html b/docs/apiclient.oauth.html index dc94786..1926583 100644 --- a/docs/apiclient.oauth.html +++ b/docs/apiclient.oauth.html @@ -8,7 +8,7 @@
 
Data
 
 
apiclient.oauth
index
/home/jcgregorio/projects/google-api-python-client/apiclient/oauth.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/oauth.py

Utilities for OAuth.
 
Utilities for making it easier to work with OAuth.

@@ -41,6 +41,7 @@ Utilities for making it easier to work with&n
OAuthCredentials +
TwoLeggedOAuthCredentials
Flow @@ -365,7 +366,9 @@ user_agent - The HTTP User-Agent to provide f
__setstate__(self, state)
Reconstitute the state of the object from being pickled.
-
authorize(self, http)
Args:
+
authorize(self, http)
Authorize an httplib2.Http instance with these Credentials

+Args:
   http - An instance of httplib2.Http
       or something that acts like it.
 
@@ -497,6 +500,95 @@ Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)
+

+ + + + + + + +
 
+class TwoLeggedOAuthCredentials(Credentials)
   Two Legged Credentials object for OAuth 1.0a.

+The Two Legged object is created directly, not from a flow.  Once you
+authorize and httplib2.Http instance you can change the requestor and that
+change will propogate to the authorized httplib2.Http instance. For example:

+  http = httplib2.Http()
+  http = credentials.authorize(http)

+  credentials.requestor = 'foo@example.info'
+  http.request(...)
+  credentials.requestor = 'bar@example.info'
+  http.request(...)
 
 
Method resolution order:
+
TwoLeggedOAuthCredentials
+
Credentials
+
__builtin__.object
+
+
+Methods defined here:
+
__getstate__(self)
Trim the state down to something that can be pickled.
+ +
__init__(self, consumer_key, consumer_secret, user_agent)
Args:
+  consumer_key: string, An OAuth 1.0 consumer key
+  consumer_secret: string, An OAuth 1.0 consumer secret
+  user_agent: string, The HTTP User-Agent to provide for this application.
+ +
__setstate__(self, state)
Reconstitute the state of the object from being pickled.
+ +
authorize(self, http)
Authorize an httplib2.Http instance with these Credentials

+Args:
+   http - An instance of httplib2.Http
+       or something that acts like it.

+Returns:
+   A modified instance of http that was passed in.

+Example:

+  h = httplib2.Http()
+  h = credentials.authorize(h)

+You can't create a new OAuth
+subclass of httplib2.Authenication because
+it never gets passed the absolute URI, which is
+needed for signing. So instead we have to overload
+'request' with a closure that adds in the
+Authorization header and then calls the original version
+of 'request()'.
+ +
getrequestor(self)
+ +
set_store(self, store)
Set the storage for the credential.

+Args:
+  store: callable, a callable that when passed a Credential
+    will store the credential back to where it came from.
+    This is needed to store the latest access_token if it
+    has been revoked.
+ +
setrequestor(self, email)
+ +
+Data descriptors defined here:
+
invalid
+
True if the credentials are invalid, such as being revoked.

+Always returns False for Two Legged Credentials.
+
+
requestor
+
The email address of the user to act on behalf of
+
+
+Data descriptors inherited from Credentials:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+

diff --git a/docs/dyn/books.v1.bookshelves.html b/docs/dyn/books.v1.bookshelves.html new file mode 100644 index 0000000..072ab78 --- /dev/null +++ b/docs/dyn/books.v1.bookshelves.html @@ -0,0 +1,41 @@ + + +Python: class Resource + +

+

+ + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
get = method(self, **kwargs)
Retrieves a specific bookshelf for the specified user.

+Args:
+  source: string, String to identify the originator of this request.
+  shelf: string, Id of bookshelf to retrieve. (required)
+  userId: string, Id of user for whom to retrieve bookshelves. (required)
+ +
list = method(self, **kwargs)
Retrieves a list of public bookshelves for the specified user.

+Args:
+  source: string, String to identify the originator of this request.
+  userId: string, Id of user for whom to retrieve bookshelves. (required)
+ +
volumes = methodResource(self)
A collection resource.
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/books.v1.bookshelves.volumes.html b/docs/dyn/books.v1.bookshelves.volumes.html new file mode 100644 index 0000000..52700fe --- /dev/null +++ b/docs/dyn/books.v1.bookshelves.volumes.html @@ -0,0 +1,33 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
list = method(self, **kwargs)
Retrieves volumes in a specific bookshelf for the specified user.

+Args:
+  source: string, String to identify the originator of this request.
+  shelf: string, Id of bookshelf to retrieve volumes. (required)
+  userId: string, Id of user for whom to retrieve bookshelf volumes. (required)
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/books.v1.html b/docs/dyn/books.v1.html new file mode 100644 index 0000000..cdc7eba --- /dev/null +++ b/docs/dyn/books.v1.html @@ -0,0 +1,32 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
bookshelves = methodResource(self)
A collection resource.
+ +
mylibrary = methodResource(self)
A collection resource.
+ +
volumes = methodResource(self)
A collection resource.
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/books.v1.mylibrary.bookshelves.html b/docs/dyn/books.v1.mylibrary.bookshelves.html new file mode 100644 index 0000000..1aa5484 --- /dev/null +++ b/docs/dyn/books.v1.mylibrary.bookshelves.html @@ -0,0 +1,62 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
addVolume = method(self, **kwargs)
Adds a volume to a bookshelf.

+Args:
+  body: object, The request body. (required)
+  source: string, String to identify the originator of this request.
+  shelf: string, Id of bookshelf to which to add a volume. (required)
+  volumeId: string, Id of volume to add. (required)
+ +
clearVolumes = method(self, **kwargs)
Clears all volumes from a bookshelf.

+Args:
+  body: object, The request body. (required)
+  source: string, String to identify the originator of this request.
+  shelf: string, Id of bookshelf from which to remove a volume. (required)
+ +
get = method(self, **kwargs)
Retrieves a specific bookshelf belonging to the authenticated user.

+Args:
+  shelf: string, Id of bookshelf to retrieve. (required)
+  source: string, String to identify the originator of this request.
+ +
list = method(self, **kwargs)
Retrieves a list of bookshelves belonging to the authenticated user.

+Args:
+  source: string, String to identify the originator of this request.
+ +
removeVolume = method(self, **kwargs)
Removes a volume from a bookshelf.

+Args:
+  body: object, The request body. (required)
+  source: string, String to identify the originator of this request.
+  shelf: string, Id of bookshelf from which to remove a volume. (required)
+  volumeId: string, Id of volume to remove. (required)
+ +
volumes = methodResource(self)
A collection resource.
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/books.v1.mylibrary.bookshelves.volumes.html b/docs/dyn/books.v1.mylibrary.bookshelves.volumes.html new file mode 100644 index 0000000..52afb4b --- /dev/null +++ b/docs/dyn/books.v1.mylibrary.bookshelves.volumes.html @@ -0,0 +1,38 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
list = method(self, **kwargs)
Gets volume information for volumes on a bookshelf.

+Args:
+  projection: string, Restrict information returned to a set of selected fields.
+    Allowed values
+      full - Includes all volume data.
+      lite - Includes a subset of fields in volumeInfo and accessInfo.
+  source: string, String to identify the originator of this request.
+  shelf: string, The bookshelf id or name retrieve volumes for.
+  maxResults: integer, Maximum number of results to return
+  startIndex: integer, Index of the first element to return (starts at 0)
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/books.v1.mylibrary.html b/docs/dyn/books.v1.mylibrary.html new file mode 100644 index 0000000..9ac898f --- /dev/null +++ b/docs/dyn/books.v1.mylibrary.html @@ -0,0 +1,28 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
bookshelves = methodResource(self)
A collection resource.
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/books.v1.volumes.html b/docs/dyn/books.v1.volumes.html new file mode 100644 index 0000000..fd7730b --- /dev/null +++ b/docs/dyn/books.v1.volumes.html @@ -0,0 +1,68 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
get = method(self, **kwargs)
Gets volume information for a single volume.

+Args:
+  projection: string, Restrict information returned to a set of selected fields.
+    Allowed values
+      full - Includes all volume data.
+      lite - Includes a subset of fields in volumeInfo and accessInfo.
+  source: string, String to identify the originator of this request.
+  volumeId: string, Id of volume to retrieve. (required)
+ +
list = method(self, **kwargs)
Performs a book search.

+Args:
+  orderBy: string, Sort search results.
+    Allowed values
+      newest - Most recently published.
+      relevance - Relevance to search terms.
+  filter: string, Filter search results.
+    Allowed values
+      ebooks - All Google eBooks.
+      free-ebooks - Google eBook with full volume text viewability.
+      full - Public can view entire volume text.
+      paid-ebooks - Google eBook with a price.
+      partial - Public able to see parts of text.
+  projection: string, Restrict information returned to a set of selected fields.
+    Allowed values
+      full - Includes all volume data.
+      lite - Includes a subset of fields in volumeInfo and accessInfo.
+  source: string, String to identify the originator of this request.
+  langRestrict: string, Restrict results to books with this language code.
+  printType: string, Restrict to books or magazines.
+    Allowed values
+      all - All volume content types.
+      books - Just books.
+      magazines - Just magazines.
+  maxResults: integer, Maximum number of results to return.
+  q: string, Full-text search query string. (required)
+  startIndex: integer, Index of the first result to return (starts at 0)
+  download: string, Restrict to volumes by download availability.
+    Allowed values
+      epub - All volumes with epub.
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/buzz.v1.activities.html b/docs/dyn/buzz.v1.activities.html index d93169f..d643864 100644 --- a/docs/dyn/buzz.v1.activities.html +++ b/docs/dyn/buzz.v1.activities.html @@ -108,6 +108,25 @@ in the collection.
Returns None if there are no more items in
the collection.

+
patch = method(self, **kwargs)
Update an activity. This method supports patch semantics.

+Args:
+  body: object, The request body. (required)
+  userId: string, ID of the user whose post to update. (required)
+  abuseType: string, A parameter
+  hl: string, Language code to limit language results.
+  scope: string, The collection to which the activity belongs. (required)
+    Allowed values
+      @abuse - Activities reported by the user.
+      @liked - Activities liked by the user.
+      @muted - Activities muted by the user.
+      @self - Activities posted by the user.
+  alt: string, Specifies an alternative representation type.
+    Allowed values
+      atom - Use Atom XML format
+      json - Use JSON format
+  postId: string, ID of the activity to update. (required)
+
search = method(self, **kwargs)
Search for activities
 
Args:
diff --git a/docs/dyn/buzz.v1.comments.html b/docs/dyn/buzz.v1.comments.html index cae1aa5..12aa3a4 100644 --- a/docs/dyn/buzz.v1.comments.html +++ b/docs/dyn/buzz.v1.comments.html @@ -66,6 +66,24 @@ Args:
      json - Use JSON format
  postId: string, ID of the activity for which to get comments. (required)
+
patch = method(self, **kwargs)
Update a comment. This method supports patch semantics.

+Args:
+  body: object, The request body. (required)
+  userId: string, ID of the user being referenced. (required)
+  abuseType: string, A parameter
+  hl: string, Language code to limit language results.
+  commentId: string, ID of the comment being referenced. (required)
+  scope: string, The collection to which the activity belongs. (required)
+    Allowed values
+      @abuse - Comments reported by the user.
+      @self - Comments posted by the user.
+  alt: string, Specifies an alternative representation type.
+    Allowed values
+      atom - Use Atom XML format
+      json - Use JSON format
+  postId: string, ID of the activity for which to update the comment. (required)
+
update = method(self, **kwargs)
Update a comment
 
Args:
diff --git a/docs/dyn/buzz.v1.groups.html b/docs/dyn/buzz.v1.groups.html index 257bcff..33acb76 100644 --- a/docs/dyn/buzz.v1.groups.html +++ b/docs/dyn/buzz.v1.groups.html @@ -66,6 +66,18 @@ in the collection.
Returns None if there are no more items in
the collection.
+
patch = method(self, **kwargs)
Update a group. This method supports patch semantics.

+Args:
+  body: object, The request body. (required)
+  userId: string, ID of the user being referenced. (required)
+  hl: string, Language code to limit language results.
+  alt: string, Specifies an alternative representation type.
+    Allowed values
+      atom - Use Atom XML format
+      json - Use JSON format
+  groupId: string, ID of the group to update. (required)
+
update = method(self, **kwargs)
Update a group
 
Args:
diff --git a/docs/dyn/buzz.v1.people.html b/docs/dyn/buzz.v1.people.html index e2ac0af..aa883d8 100644 --- a/docs/dyn/buzz.v1.people.html +++ b/docs/dyn/buzz.v1.people.html @@ -73,6 +73,19 @@ Args:
      json - Use JSON format
  groupId: string, ID of the group for which to list users. (required)
+
patch = method(self, **kwargs)
Add a person to a group. This method supports patch semantics.

+Args:
+  body: object, The request body. (required)
+  personId: string, ID of the person to add to the group. (required)
+  userId: string, ID of the owner of the group. (required)
+  hl: string, Language code to limit language results.
+  alt: string, Specifies an alternative representation type.
+    Allowed values
+      atom - Use Atom XML format
+      json - Use JSON format
+  groupId: string, ID of the group to which to add the person. (required)
+
reshared = method(self, **kwargs)
Get people who reshared an activity
 
Args:
diff --git a/docs/dyn/moderator.v1.profiles.html b/docs/dyn/moderator.v1.profiles.html index d99ab25..0273442 100644 --- a/docs/dyn/moderator.v1.profiles.html +++ b/docs/dyn/moderator.v1.profiles.html @@ -18,6 +18,11 @@  
Args:
+
patch = method(self, **kwargs)
Updates the profile information for the authenticated user. This method supports patch semantics.

+Args:
+  body: object, The request body. (required)
+
update = method(self, **kwargs)
Updates the profile information for the authenticated user.
 
Args:
diff --git a/docs/dyn/moderator.v1.series.html b/docs/dyn/moderator.v1.series.html index 05bb4f8..67532b3 100644 --- a/docs/dyn/moderator.v1.series.html +++ b/docs/dyn/moderator.v1.series.html @@ -31,6 +31,12 @@ Args:
  max_results: integer, Maximum number of results to return.
  start_index: integer, Index of the first result to be retrieved.
+
patch = method(self, **kwargs)
Updates the specified series. This method supports patch semantics.

+Args:
+  seriesId: integer, The decimal ID of the Series. (required)
+  body: object, The request body. (required)
+
responses = methodResource(self)
A collection resource.
submissions = methodResource(self)
A collection resource.
diff --git a/docs/dyn/moderator.v1.votes.html b/docs/dyn/moderator.v1.votes.html index ce70da7..aa7c148 100644 --- a/docs/dyn/moderator.v1.votes.html +++ b/docs/dyn/moderator.v1.votes.html @@ -35,6 +35,14 @@ Args:
  max_results: integer, Maximum number of results to return.
  start_index: integer, Index of the first result to be retrieved.
+
patch = method(self, **kwargs)
Updates the votes by the authenticated user for the specified submission within the specified series. This method supports patch semantics.

+Args:
+  seriesId: integer, The decimal ID of the Series. (required)
+  body: object, The request body. (required)
+  userId: string, A parameter
+  submissionId: integer, The decimal ID of the Submission within the Series. (required)
+
update = method(self, **kwargs)
Updates the votes by the authenticated user for the specified submission within the specified series.
 
Args:
diff --git a/docs/dyn/pagespeedonline.v1.html b/docs/dyn/pagespeedonline.v1.html new file mode 100644 index 0000000..eb87afd --- /dev/null +++ b/docs/dyn/pagespeedonline.v1.html @@ -0,0 +1,28 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
pagespeedapi = methodResource(self)
A collection resource.
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/pagespeedonline.v1.pagespeedapi.html b/docs/dyn/pagespeedonline.v1.pagespeedapi.html new file mode 100644 index 0000000..2202a6c --- /dev/null +++ b/docs/dyn/pagespeedonline.v1.pagespeedapi.html @@ -0,0 +1,37 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
runpagespeed = method(self, **kwargs)
Runs Page Speed analysis on the page at the specified URL, and returns a Page Speed score, a list of suggestions to make that page faster, and other information.

+Args:
+  locale: string, The locale used to localize formatted results
+  rule: string, A Page Speed rule to run; if none are given, all rules are run (repeated)
+  strategy: string, The analysis strategy to use
+    Allowed values
+      desktop - Fetch and analyze the URL for desktop browsers
+      mobile - Fetch and analyze the URL for mobile devices
+  url: string, The URL to fetch and analyze (required)
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/shopping.v1.products.html b/docs/dyn/shopping.v1.products.html index 97991f7..2a12c9b 100644 --- a/docs/dyn/shopping.v1.products.html +++ b/docs/dyn/shopping.v1.products.html @@ -21,7 +21,7 @@ Args:
  taxonomy: string, Merchant taxonomy
  recommendations_useGcsConfig: boolean, This parameter is currently ignored
  productFields: string, Google Internal
-  accountId: string, Merchant center account id (required)
+  accountId: integer, Merchant center account id (required)
  source: string, Query source (required)
  recommendations_include: string, Recommendation specification
  debug_enabled: boolean, Google Internal
@@ -45,11 +45,13 @@ Args:
  debug_rdcRequest: boolean, Google Internal
  taxonomy: string, Taxonomy name
  promotions_enabled: boolean, Whether to return promotion information
+  shelfSpaceAds_enabled: boolean, Whether to return shelf space ads
  debug_rdcResponse: boolean, Google Internal
  productFields: string, Google Internal
  channels: string, Channels specification
  facets_discover: string, Facets to discover
  startIndex: integer, Index (1-based) of first product to return
+  attributeFilter: string, Comma separated list of attributes to return
  crowdBy: string, Crowding specification
  spelling_enabled: boolean, Whether to return spelling suggestions
  debug_enabled: boolean, Google Internal
@@ -66,7 +68,8 @@ Args:
  debug_enableLogging: boolean, Google Internal
  maxResults: integer, Maximum number of results to return
  categories_enabled: boolean, Whether to return category information
-  attributeFilter: string, Comma separated list of attributes to return
+  shelfSpaceAds_useGcsConfig: boolean, This parameter is currently ignored
+  shelfSpaceAds_maxResults: integer, The maximum number of shelf space ads to return
  categories_useGcsConfig: boolean, This parameter is currently ignored
  promotions_useGcsConfig: boolean, Whether to return promotion information as configured in the GCS account
  facets_include: string, Facets to include (applies when useGcsConfig == false)
diff --git a/docs/dyn/siteVerification.v1.webResource.html b/docs/dyn/siteVerification.v1.webResource.html index a0e4c9b..7944dc2 100644 --- a/docs/dyn/siteVerification.v1.webResource.html +++ b/docs/dyn/siteVerification.v1.webResource.html @@ -27,9 +27,9 @@ Args:

getToken = method(self, **kwargs)
Get a verification token for placing on a website or domain.
 
Args:
-  verificationMethod: string, The method to use for verifying a site or domain. (required)
-  identifier: string, The URL or domain to verify. (required)
-  type: string, Type of resource to verify. Can be 'site' (URL) or 'inet_domain' (domain name). (required)
+  verificationMethod: string, The method to use for verifying a site or domain.
+  identifier: string, The URL or domain to verify.
+  type: string, Type of resource to verify. Can be 'site' (URL) or 'inet_domain' (domain name).
insert = method(self, **kwargs)
Attempt verification of a website or domain.
 
@@ -41,6 +41,12 @@ Args:
 
Args:
+
patch = method(self, **kwargs)
Modify the list of owners for your website or domain. This method supports patch semantics.

+Args:
+  body: object, The request body. (required)
+  id: string, The id of a verified site or domain. (required)
+
update = method(self, **kwargs)
Modify the list of owners for your website or domain.
 
Args:
diff --git a/docs/dyn/tasks.v1.html b/docs/dyn/tasks.v1.html new file mode 100644 index 0000000..9829758 --- /dev/null +++ b/docs/dyn/tasks.v1.html @@ -0,0 +1,30 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
tasklists = methodResource(self)
A collection resource.
+ +
tasks = methodResource(self)
A collection resource.
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/tasks.v1.tasklists.html b/docs/dyn/tasks.v1.tasklists.html new file mode 100644 index 0000000..17537a2 --- /dev/null +++ b/docs/dyn/tasks.v1.tasklists.html @@ -0,0 +1,59 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
delete = method(self, **kwargs)
Deletes the authenticated user's specified task list.

+Args:
+  tasklist: string, Task list identifier. (required)
+ +
get = method(self, **kwargs)
Returns the authenticated user's specified task list.

+Args:
+  tasklist: string, Task list identifier. (required)
+ +
insert = method(self, **kwargs)
Creates a new task list and adds it to the authenticated user's task lists.

+Args:
+  body: object, The request body. (required)
+ +
list = method(self, **kwargs)
Returns all the authenticated user's task lists.

+Args:
+  pageToken: string, Token specifying the result page to return. Optional.
+  maxResults: integer, Maximum number of task lists returned on one page. Optional. The default is 100.
+ +
patch = method(self, **kwargs)
Updates the authenticated user's specified task list. This method supports patch semantics.

+Args:
+  body: object, The request body. (required)
+  tasklist: string, Task list identifier. (required)
+ +
update = method(self, **kwargs)
Updates the authenticated user's specified task list.

+Args:
+  body: object, The request body. (required)
+  tasklist: string, Task list identifier. (required)
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/tasks.v1.tasks.html b/docs/dyn/tasks.v1.tasks.html new file mode 100644 index 0000000..b0006cc --- /dev/null +++ b/docs/dyn/tasks.v1.tasks.html @@ -0,0 +1,90 @@ + + +Python: class Resource + +

+ + + + + + + +
 
+class Resource(__builtin__.object)
   A class for interacting with a resource.
 
 Methods defined here:
+
__init__(self)
+ +
clear = method(self, **kwargs)
Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.

+Args:
+  body: object, The request body. (required)
+  tasklist: string, Task list identifier. (required)
+ +
delete = method(self, **kwargs)
Deletes the specified task from the task list.

+Args:
+  tasklist: string, Task list identifier. (required)
+  task: string, Task identifier. (required)
+ +
get = method(self, **kwargs)
Returns the specified task.

+Args:
+  tasklist: string, Task list identifier. (required)
+  task: string, Task identifier. (required)
+ +
insert = method(self, **kwargs)
Creates a new task on the specified task list.

+Args:
+  body: object, The request body. (required)
+  tasklist: string, Task list identifier. (required)
+  parent: string, Parent task identifier. If the task is created at the top level, this parameter is omitted. Optional.
+  previous: string, Previous sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted. Optional.
+ +
list = method(self, **kwargs)
Returns all tasks in the specified task list.

+Args:
+  dueMax: string, Upper bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
+  tasklist: string, Task list identifier. (required)
+  pageToken: string, Token specifying the result page to return. Optional.
+  updatedMin: string, Lower bound for a task's last modification time (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by last modification time.
+  maxResults: integer, Maximum number of task lists returned on one page. Optional. The default is 100.
+  completedMin: string, Lower bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
+  showDeleted: boolean, Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.
+  completedMax: string, Upper bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
+  showHidden: boolean, Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.
+  showCompleted: boolean, Flag indicating whether completed tasks are returned in the result. Optional. The default is True.
+  dueMin: string, Lower bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
+ +
move = method(self, **kwargs)
Moves the specified task to another position in the task list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks.

+Args:
+  body: object, The request body. (required)
+  tasklist: string, Task list identifier. (required)
+  parent: string, New parent task identifier. If the task is moved to the top level, this parameter is omitted. Optional.
+  task: string, Task identifier. (required)
+  previous: string, New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.
+ +
patch = method(self, **kwargs)
Updates the specified task. This method supports patch semantics.

+Args:
+  body: object, The request body. (required)
+  tasklist: string, Task list identifier. (required)
+  task: string, Task identifier. (required)
+ +
update = method(self, **kwargs)
Updates the specified task.

+Args:
+  body: object, The request body. (required)
+  tasklist: string, Task list identifier. (required)
+  task: string, Task identifier. (required)
+ +
+Data descriptors defined here:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+ \ No newline at end of file diff --git a/docs/dyn/translate.v2.translations.html b/docs/dyn/translate.v2.translations.html index 8dd749b..5f3c574 100644 --- a/docs/dyn/translate.v2.translations.html +++ b/docs/dyn/translate.v2.translations.html @@ -18,6 +18,7 @@  
Args:
  target: string, The target language into which the text should be translated (required)
+  cid: string, The customization id for translate (repeated)
  format: string, The format of the text
    Allowed values
      html - Specifies the input is in HTML
diff --git a/docs/httplib2.html b/docs/httplib2.html index 1f68184..e6db3b2 100644 --- a/docs/httplib2.html +++ b/docs/httplib2.html @@ -6,9 +6,9 @@  
httplib2 (version 0.7.0)
 
- 
httplib2 (version $Rev$)
index
/home/jcgregorio/projects/google-api-python-client/httplib2/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/httplib2/__init__.py

@@ -142,7 +142,7 @@ Data descriptors inherited from exceptio and more.
 
  Methods defined here:
-
__init__(self, cache=None, timeout=None, proxy_info=None)
The value of proxy_info is a ProxyInfo instance.
+
__init__(self, cache=None, timeout=None, proxy_info=None, ca_certs=None, disable_ssl_certificate_validation=False)
The value of proxy_info is a ProxyInfo instance.
 
If 'cache' is a string then it is used as a directory name for
a disk cache. Otherwise it must be an object that supports the
@@ -151,7 +151,14 @@ same interface as FileCache.
All timeouts are in seconds. If None is passed for timeout
then Python's default timeout for sockets will be used. See
for example the docs of socket.setdefaulttimeout():
-http://docs.python.org/library/socket.html#socket.setdefaulttimeout
+http://docs.python.org/library/socket.html#socket.setdefaulttimeout

+ca_certs is the path of a file containing root CA certificates for SSL
+server certificate validation.  By default, a CA cert file bundled with
+httplib2 is used.

+If disable_ssl_certificate_validation is true, SSL cert validation will
+not be performed.
add_certificate(self, key, cert, domain)
Add a key and cert that will be used
any time a request requires authentication.
@@ -710,7 +717,7 @@ Data descriptors inherited from exceptio __contributors__ = ['Thomas Broyer (t.broyer@ltgt.net)', 'James Antill', 'Xavier Verges Farrero', 'Jonathan Feinberg', 'Blair Zajac', 'Sam Ruby', 'Louis Nyffenegger']
__copyright__ = 'Copyright 2006, Joe Gregorio'
__license__ = 'MIT'
-__version__ = '$Rev$'
+__version__ = '0.7.0'
debuglevel = 0

diff --git a/docs/httplib2.socks.html b/docs/httplib2.socks.html index e8b2af3..6766560 100644 --- a/docs/httplib2.socks.html +++ b/docs/httplib2.socks.html @@ -8,14 +8,14 @@
 
 
httplib2.socks
index
/home/jcgregorio/projects/google-api-python-client/httplib2/socks.py
+>
index
/usr/local/google/home/jcgregorio/projects/apiclient/httplib2/socks.py

SocksiPy - Python SOCKS module.
Version 1.00
 
Copyright 2006 Dan-Haim. All rights reserved.
 
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
@@ -24,7 +24,7 @@ modification, are permitted provided that the foll 3. Neither the name of Dan Haim nor the names of his contributors may be used
   to endorse or promote products derived from this software without specific
   prior written permission.

+   
THIS SOFTWARE IS PROVIDED BY DAN HAIM "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
@@ -33,7 +33,7 @@ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGE LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
-OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMANGE.
 
 
This module provides a standard socket-like interface for Python
@@ -92,17 +92,15 @@ for tunneling connections through SOCKS proxies.
exceptions.BaseException

__builtin__.object
-
-Methods defined here:
-
__init__(self, value)
- -
__str__(self)
-
Data descriptors inherited from ProxyError:
__weakref__
list of weak references to the object (if defined)
+
+Methods inherited from exceptions.Exception:
+
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
+
Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
@@ -127,6 +125,8 @@ Use of negative indices is not supported.
__setstate__(...)
+
__str__(...)
x.__str__() <==> str(x)
+
__unicode__(...)

@@ -151,17 +151,15 @@ Data descriptors inherited from exceptio
exceptions.BaseException
__builtin__.object
-
-Methods defined here:
-
__init__(self, value)
- -
__str__(self)
-
Data descriptors inherited from ProxyError:
__weakref__
list of weak references to the object (if defined)
+
+Methods inherited from exceptions.Exception:
+
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
+
Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
@@ -186,6 +184,8 @@ Use of negative indices is not supported.
__setstate__(...)
+
__str__(...)
x.__str__() <==> str(x)
+
__unicode__(...)

@@ -209,17 +209,15 @@ Data descriptors inherited from exceptio
exceptions.BaseException
__builtin__.object
-
-Methods defined here:
-
__init__(self, value)
- -
__str__(self)
-
Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)
+
+Methods inherited from exceptions.Exception:
+
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
+
Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
@@ -244,6 +242,8 @@ Use of negative indices is not supported.
__setstate__(...)
+
__str__(...)
x.__str__() <==> str(x)
+
__unicode__(...)

@@ -268,17 +268,15 @@ Data descriptors inherited from exceptio
exceptions.BaseException
__builtin__.object
-
-Methods defined here:
-
__init__(self, value)
- -
__str__(self)
-
Data descriptors inherited from ProxyError:
__weakref__
list of weak references to the object (if defined)
+
+Methods inherited from exceptions.Exception:
+
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
+
Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
@@ -303,6 +301,8 @@ Use of negative indices is not supported.
__setstate__(...)
+
__str__(...)
x.__str__() <==> str(x)
+
__unicode__(...)

@@ -327,17 +327,15 @@ Data descriptors inherited from exceptio
exceptions.BaseException
__builtin__.object
-
-Methods defined here:
-
__init__(self, value)
- -
__str__(self)
-
Data descriptors inherited from ProxyError:
__weakref__
list of weak references to the object (if defined)
+
+Methods inherited from exceptions.Exception:
+
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
+
Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
@@ -362,6 +360,8 @@ Use of negative indices is not supported.
__setstate__(...)
+
__str__(...)
x.__str__() <==> str(x)
+
__unicode__(...)

@@ -386,17 +386,15 @@ Data descriptors inherited from exceptio
exceptions.BaseException
__builtin__.object
-
-Methods defined here:
-
__init__(self, value)
- -
__str__(self)
-
Data descriptors inherited from ProxyError:
__weakref__
list of weak references to the object (if defined)
+
+Methods inherited from exceptions.Exception:
+
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
+
Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
@@ -421,6 +419,8 @@ Use of negative indices is not supported.
__setstate__(...)
+
__str__(...)
x.__str__() <==> str(x)
+
__unicode__(...)

@@ -439,7 +439,6 @@ Data descriptors inherited from exceptio     socksocket([family[, type[, proto]]]) -> socket object

Open a SOCKS enabled socket. The parameters are the same as
those of the standard socket init. In order for SOCKS to work,
you must specify family=AF_INET, type=SOCK_STREAM and proto=0.
 
@@ -453,7 +452,7 @@ you must specify family=AF_INET, type=SOCK_STREAM and&n Methods defined here:
__init__(self, family=2, type=1, proto=0, _sock=None)
-
connect(self, destpair)
connect(self,despair)
+
connect(self, destpair)
connect(self, despair)
Connects to the specified destination through a proxy.
destpar - A tuple of the IP/DNS address and the port number.
(identical to socket's connect).
@@ -469,8 +468,6 @@ Returns the IP and port number of the pr
getproxysockname(self)
getsockname() -> address info
Returns the bound IP address and port number at the proxy.
-
sendall(self, bytes)
-
setproxy(self, proxytype=None, addr=None, port=None, rdns=True, username=None, password=None)
setproxy(proxytype, addr[, port[, rdns[, username[, password]]]])
Sets the proxy to be used.
proxytype -    The type of the proxy to be used. Three types
@@ -551,6 +548,13 @@ will allow before refusing new connections.
and bufsize arguments are as for the built-in open() function.
+
sendall(...)
sendall(data[, flags])

+Send a data string to the socket.  For the optional flags
+argument, see the Unix manual.  This calls send() repeatedly
+until all data is sent.  If an error occurs, it's impossible
+to tell how much data has been sent.
+
setblocking(...)
setblocking(flag)
 
Set the socket to blocking (flag is true) or non-blocking (false).
@@ -607,10 +611,14 @@ Data descriptors inherited from socket._sock Functions         -
bytes(obj, enc=None)
-
setdefaultproxy(proxytype=None, addr=None, port=None, rdns=True, username=None, password=None)
setdefaultproxy(proxytype, addr[, port[, rdns[, username[, password]]]])
+
setdefaultproxy(proxytype=None, addr=None, port=None, rdns=True, username=None, password=None)
setdefaultproxy(proxytype, addr[, port[, rdns[, username[, password]]]])
Sets a default proxy which all further socksocket objects will use,
unless explicitly changed.
+
wrapmodule(module)
wrapmodule(module)
+Attempts to replace a module's socket library with a SOCKS socket. Must set
+a default proxy using setdefaultproxy(...) first.
+This will only work on modules that import socket directly into the namespace;
+most of the Python Standard Library falls into this category.

diff --git a/docs/oauth2client.client.html b/docs/oauth2client.client.html index 7f3ad61..82c7506 100644 --- a/docs/oauth2client.client.html +++ b/docs/oauth2client.client.html @@ -8,7 +8,7 @@
 
 
oauth2client.client
index
/home/jcgregorio/projects/google-api-python-client/oauth2client/client.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/oauth2client/client.py

An OAuth 2.0 client
 
Tools for interacting with OAuth 2.0 protected
@@ -45,6 +45,7 @@ resources.

AccessTokenCredentials +
AssertionCredentials
@@ -297,6 +298,88 @@ Data descriptors inherited from exceptio + + + + +
 
+class AssertionCredentials(OAuth2Credentials)
   Abstract Credentials object used for OAuth 2.0 assertion grants

+This credential does not require a flow to instantiate because it represents
+a two legged flow, and therefore has all of the required information to
+generate and refresh its own access tokens.  It must be subclassed to
+generate the appropriate assertion string.

+AssertionCredentials objects may be safely pickled and unpickled.
 
 
Method resolution order:
+
AssertionCredentials
+
OAuth2Credentials
+
Credentials
+
__builtin__.object
+
+
+Methods defined here:
+
__init__(self, assertion_type, user_agent, token_uri='https://accounts.google.com/o/oauth2/token', **kwargs)
Constructor for AssertionFlowCredentials

+Args:
+  assertion_type: string, assertion type that will be declared to the auth
+      server
+  user_agent: string, The HTTP User-Agent to provide for this application.
+  token_uri: string, URI for token endpoint. For convenience
+    defaults to Google's endpoints but any OAuth 2.0 provider can be used.
+ +
+Methods inherited from OAuth2Credentials:
+
__getstate__(self)
Trim the state down to something that can be pickled.
+ +
__setstate__(self, state)
Reconstitute the state of the object from being pickled.
+ +
authorize(self, http)
Authorize an httplib2.Http instance with these credentials.

+Args:
+   http: An instance of httplib2.Http
+       or something that acts like it.

+Returns:
+   A modified instance of http that was passed in.

+Example:

+  h = httplib2.Http()
+  h = credentials.authorize(h)

+You can't create a new OAuth
+subclass of httplib2.Authenication because
+it never gets passed the absolute URI, which is
+needed for signing. So instead we have to overload
+'request' with a closure that adds in the
+Authorization header and then calls the original version
+of 'request()'.
+ +
set_store(self, store)
Set the storage for the credential.

+Args:
+  store: callable, a callable that when passed a Credential
+    will store the credential back to where it came from.
+    This is needed to store the latest access_token if it
+    has expired and been refreshed.
+ +
+Data descriptors inherited from OAuth2Credentials:
+
invalid
+
True if the credentials are invalid, such as being revoked.
+
+
+Data descriptors inherited from Credentials:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+

+ + + diff --git a/docs/oauth2client.file.html b/docs/oauth2client.file.html index cc5ea82..8c76cbf 100644 --- a/docs/oauth2client.file.html +++ b/docs/oauth2client.file.html @@ -8,7 +8,7 @@
 
class Credentials(__builtin__.object)
    
 
oauth2client.file
index
/home/jcgregorio/projects/google-api-python-client/oauth2client/file.py
+>
index
/usr/local/google/home/jcgregorio/projects/apiclient/oauth2client/file.py

Utilities for OAuth.
 
Utilities for making it easier to work with OAuth 2.0
diff --git a/docs/oauth2client.html b/docs/oauth2client.html index 2a973c6..9ca5fd4 100644 --- a/docs/oauth2client.html +++ b/docs/oauth2client.html @@ -8,7 +8,7 @@  
 
oauth2client
index
/home/jcgregorio/projects/google-api-python-client/oauth2client/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/oauth2client/__init__.py

diff --git a/docs/oauth2client.tools.html b/docs/oauth2client.tools.html index f12e779..02c7842 100644 --- a/docs/oauth2client.tools.html +++ b/docs/oauth2client.tools.html @@ -8,7 +8,7 @@
 
 
oauth2client.tools
index
/home/jcgregorio/projects/google-api-python-client/oauth2client/tools.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/oauth2client/tools.py

Command-line tools for authenticating via OAuth 2.0
 
Do the OAuth 2.0 Web Server dance for a command line application. Stores the
diff --git a/docs/uritemplate.html b/docs/uritemplate.html index 585f50e..4801a0a 100644 --- a/docs/uritemplate.html +++ b/docs/uritemplate.html @@ -8,7 +8,7 @@  
 
uritemplate
index
/home/jcgregorio/projects/google-api-python-client/uritemplate/__init__.py
+>index
/usr/local/google/home/jcgregorio/projects/apiclient/uritemplate/__init__.py

# Early, and incomplete implementation of -04.
#