タイトルが大きく不安定であることは承知しており、申し訳ありません。私が抱えているジレンマは、gspreadが Session を使用し、Python 用の Google API クライアント ライブラリがHTTPLib2 を使用することです。Google API クライアントを操作しているサービス アカウントがあり、認証されたhttplib2.Http()
インスタンスを取得してラップし、gspread がそれを Session オブジェクトのように使用できるようにしたいと考えています。
更新: gspreadの更新 103で修正されました。以下の Jay Lee のすばらしい回答に基づいて、Python 2.7 でサービス アカウントを使用して gspread を初期化する方法を次に示します (置き換えて設定Client
する必要があります)。/path/to/service-account.p12
sa_id
import gspread
from oauth2client.client import SignedJwtAssertionCredentials
from apiclient.discovery import build
# ...
with open('/path/to/service-account.p12') as f: sa_key = f.read()
credentials = SignedJwtAssertionCredentials(
sa_id, sa_key, 'https://spreadsheets.google.com/feeds')
http = httplib2.Http()
http = credentials.authorize(http)
build('drive', 'v2', http = http)
access_token = http.request.credentials.access_token
gspread_auth_headers = {'Authorization' : 'Bearer %s' % access_token}
gspread_session = gspread.httpsession.HTTPSession(headers=gspread_auth_headers)
fakeauth = ('notmyusername@gmail.com', 'notmypassword')
client = gspread.Client(fakeauth, http_session=gspread_session)
# https://github.com/burnash/gspread/issues/103
if False == hasattr(client, "session"):
client = gspread.Client(fakeauth)
client.session = gspread_session
client
これで、通常どおり使用できます。うわー!