我正在尝试使用 gpread 和 python 来编辑谷歌电子表格。我遵循了本教程:http : //gspread.readthedocs.org/en/latest/oauth2.html 当我运行我的代码时,它说没有名为 oauth2client.client 的模块。我是否需要安装其他东西才能使其正常工作?
更新 这里是我的代码:
import json
import gspread
from oauth2client.client import SignedJwtAssertionCredentials
json_key = json.load(open('GraduationCash-c4b4c0667c75.json'))
scope = ['https://spreadsheets.google.com/feeds']
credentials = SignedJwtAssertionCredentials(json_key['client_email'], json_key['private_key'], scope)
gc = gspread.authorize(credentials)
wks = gc.open("Where is the money Lebowski?").sheet1
raw_input()
另外我应该提到我在 Windows 8 上,所以这些命令不起作用。它仍然说没有可用的加密库