本文的思路是利用googleapiclient.discovery连接Google API服务,获取油管视频的评论。Google API可以为开发人员提供很多有用的工具和数据,使用起来也非常简单方便。注意,连接Google API服务需要设置代理,这里需要用到httplib2库,利用该库设置代理信息,然后传入googleapiclient.discovery.build方法即可。
安装googleapiclient库的命令如下:
pip install --upgrade google-api-python-client
代码如下:
import googleapiclient.discovery
import googleapiclient.errors
import httplib2
import csvclass YouTubeSpider:def __init__(self):passdef get_video_comments(self, api_key, video_id): # 设置代理proxy_info = httplib2.ProxyInfo(proxy_type=httplib2.socks.PROXY_TYPE_HTTP,proxy_host="127.0.0.1", # 本机ip地址proxy_port=7890, # 代理端口)http = httplib2.Http(proxy_info=proxy_info)youtube = googleapiclient.discovery.build("youtube", "v3&