1"""Client library for using OAuth2, especially with Google APIs.""" 2 3__version__ = '1.4.11' 4 5GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' 6GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code' 7GOOGLE_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke' 8GOOGLE_TOKEN_URI = 'https://accounts.google.com/o/oauth2/token' 9