apiclient.ext.file
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.

 
Modules
       
pickle
threading

 
Classes
       
apiclient.oauth.Storage(__builtin__.object)
Storage

 
class Storage(apiclient.oauth.Storage)
    Store and retrieve a single credential to and from a file.
 
 
Method resolution order:
Storage
apiclient.oauth.Storage
__builtin__.object

Methods defined here:
__init__(self, filename)
get(self)
Retrieve Credential from file.
 
Returns:
  apiclient.oauth.Credentials
put(self, credentials)
Write a pickled Credentials to file.
 
Args:
  credentials: Credentials, the credentials to store.

Data descriptors inherited from apiclient.oauth.Storage:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Data
        __author__ = 'jcgregorio@google.com (Joe Gregorio)'

 
Author
        jcgregorio@google.com (Joe Gregorio)