Google Auth Library for httplib2
A transport for Google Authentication Library using httplib2. The current version is 0.3.0, released on 2025-12-12. The library has a regular release cadence with updates to support new Python versions.
Warnings
- breaking Requires httplib2 >= 0.19.0 and < 1.0.0 from version 0.2.1.
- deprecated Older versions of this library may use deprecated imports.
Install
-
pip install google-auth-httplib2
Imports
- AuthorizedHttp
from google_auth_httplib2 import AuthorizedHttp
Quickstart
import os from google.auth.transport.requests import Request from google_auth_httplib2 import AuthorizedHttp credentials = ... # Obtain your credentials here http = AuthorizedHttp(credentials)