oauth2client.tools
index
/home/jcgregorio/projects/google-api-python-client/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
generated credentials in a common file that is used by other example apps in
the same directory.

 
Modules
       
BaseHTTPServer
gflags
socket
sys
webbrowser

 
Functions
       
run(flow, storage, http=None)
Core code for a command-line application.
 
Args:
  flow: Flow, an OAuth 2.0 Flow to step through.
  storage: Storage, a Storage to store the credential in.
  http: An instance of httplib2.Http.request
       or something that acts like it.
 
Returns:
  Credentials, the obtained credential.

 
Data
        __all__ = ['run']
__author__ = 'jcgregorio@google.com (Joe Gregorio)'

 
Author
        jcgregorio@google.com (Joe Gregorio)