Google Auth Library for httplib2

0.3.0 · active · verified Sat Mar 28

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

Install

Imports

Quickstart

This quickstart shows you how to use AuthorizedHttp with Google Authentication Library.

import os
from google.auth.transport.requests import Request
from google_auth_httplib2 import AuthorizedHttp

credentials = ... # Obtain your credentials here
http = AuthorizedHttp(credentials)

view raw JSON →