因为 Youtube 工程师使用与 Youtube API v3 相关的标签监控堆栈溢出
执行时:
#!/usr/bin/python
from apiclient.discovery import build
from apiclient.errors import HttpError
from oauth2client.tools import argparser
我收到以下错误:
从 apiclient.discovery 导入构建导入错误:没有名为 apiclient.discovery 的模块
请 Google 工程师更正示例,以便开始使用 API 的人不会遇到此类错误。
错误随着以下微小更改而消失:
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
from oauth2client.tools import argparser
所有这些都适用于Python 2.7.X