oauth2client.file
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
credentials.

 
Modules
       
pickle
threading

 
Classes
       
oauth2client.client.Storage(__builtin__.object)
Storage

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

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

Data descriptors inherited from oauth2client.client.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)