Youtube API v3 python 示例中的错误
Errors in the Youtube API v3 python examples
因为 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
因为 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