Google API。导入的库没有属性

时间:2019-05-06 15:57:05

标签: python attributes member google-api-client

您好,希望有人能提供帮助=) 我正在尝试使用Google API,并且构建实例没有属性。 Google的示例项目甚至都不起作用:https://developers.google.com/calendar/quickstart/python

我尝试使用以下方法重新安装库并强制重新安装: “ pip install --force-reinstall google-api-python-client”。

来自另一个Google网站的代码也不起作用:

from googleapiclient.discovery import build

API_KEY='my_apiKey'

GPLUS = build('plus', 'v1', developerKey=API_KEY)
TMPL = '''
    User: %s
    Date: %s
    Post: %s
'''
items = GPLUS.event()  # AttributeError: 'Resource' object has no attribute 'event'

2 个答案:

答案 0 :(得分:0)

您使用提供的代码构建的服务是Google+ API客户端。根据该客户端的docs,没有名为event()的属性或函数,因此在运行代码时会收到相应的错误消息。看看这些文档,看看您应该如何使用此客户端。 Github上似乎有一个快速示例。

答案 1 :(得分:0)

经过更多测试之后,由于代码正在运行,我可以验证是否存在属性,但是VS Code中的pylint找不到属性,因此将其标记为不存在。

我不知道为什么会这样。