oauth2client.file
index
/home/jcgregorio/projects/apiary/oauth2client/file.py

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

 
Modules
       
pickle

 
Classes
       
__builtin__.object
Storage

 
class Storage(__builtin__.object)
    Store and retrieve a single credential to and from a file.
 
  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 defined here:
__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)