Files
deb-python-oauth2client/oauth2client/__init__.py
Nathaniel Manista f287b05611 Release v1.4.6.
2015-01-16 19:27:36 +00:00

9 lines
355 B
Python

"""Client library for using OAuth2, especially with Google APIs."""
__version__ = '1.4.6'
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth'
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'
GOOGLE_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke'
GOOGLE_TOKEN_URI = 'https://accounts.google.com/o/oauth2/token'