当前位置: 首页 > 知识库问答 >
问题:

'属性错误:'模块'对象没有属性'文件"当使用oAuth2Client与谷歌日历

丁俊爽
2023-03-14

我正在使用谷歌日历python api(https://developers.google.com/google-apps/calendar/quickstart/python#step_3_set_up_the_sample)的示例脚本来尝试打印所有日历事件。然而,我得到一个错误:

AttributeError: 'module' object has no attribute 'file'

排队

store = oauth2client.file.Storage(credential_path)

我在文档中找不到这样一个错误的参考文献。以前有人遇到过这个吗?

干杯,杰克

共有1个答案

景辰钊
2023-03-14

原样

https://developers.google.com/google-apps/calendar/quickstart/python#step_3_set_up_the_sample

缺少导入条目:

   from oauth2client import file 

添加此行,然后再次尝试运行脚本

 类似资料: