- Fiddler是一款使用起来非常方便的抓包工具,安装起来很方便。
实战:抓取腾讯视频下的评论
import urllib.request
import re
# 抓取腾讯视频下的评论
cid = "0"
for i in range(0,100):
print("第"+str(i+1)+"页的评论数据")
url = "https://video.coral.qq.com/varticle/4831064204/comment/v2?callback=_varticle4831064204commentv2&orinum=10&oriorder=o&pageflag=1&cursor=" + str(
cid) + "&scorecursor=0&orirepnum=2&reporder=o&reppageflag=1&source=132&_=1582873152540"
data = urllib.request.urlopen(url).read().decode("utf-8","ignore")
pat = '"content":"(.*?)"'
comments = re.compile(pat,re.S).findall(data)
for item in comments:
print(str(item))
print("------------------")
pat2 = '"last":"(.*?)"'
cid = re.compile(pat2,re.S).findall(data)[0]
I'm so cute. Please give me money.
- 本文链接:https://wentianhao.github.io/2020/02/27/%E6%8A%93%E5%8C%85%E5%88%86%E6%9E%90%E6%8A%80%E6%9C%AF%E7%B2%BE%E8%AE%B2/
- 版权声明:本博客所有文章除特别声明外,均默认采用 许可协议。
若没有本文 Issue,您可以使用 Comment 模版新建。