Python3下的Google日历API错误

时间:2016-04-06 17:26:20

标签: python python-3.4 google-api-client google-api-python-client

我正在使用 google-api-python-client 库进行以下设置:

  • 虚拟环境中的Python3.4.3(使用pip8.1.1)

我从以下代码中收到错误: AttributeError:'module'对象没有属性'file'

store = oauth2client.file.Storage(credential_path)

代码来自Google Python Quickstart示例,并在Python 2.7.10下正常运行

提前致谢!

1 个答案:

答案 0 :(得分:1)

我能够通过重写import语句来使它工作: from oauth2client.file import Storage 不知道为什么会这样,但确实如此。