python 爬取腾讯视频评论

import urllib.request
import re
import urllib.error
headers=('user-agent','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:63.0) Gecko/20100101 Firefox/63.0')
opener=urllib.request.build_opener()
opener.addheaders=[headers]
urllib.request.install_opener(opener)
lastid = "6534646827828360320"
for i in range(1,3):
    url = "https://video.coral.qq.com/varticle/3889738104/comment/v2?callback=_varticle3889738104commentv2&orinum=10&oriorder=o&pageflag=1&cursor="+lastid+"&scorecursor=0&orirepnum=2&reporder=o&reppageflag=1&source=132&_=155840371506"+str(i)
    print(url)
    data=urllib.request.urlopen(url).read().decode("utf-8","ignore")
    patlast='"last":"(.*?)"'
    lastid=re.compile(patlast).findall(data)[0]
    patcontent='"content":"(.*?)"'
    content=re.compile(patcontent).findall(data)
    print('-----第%s页评论-----' % str(i))
    for j in range(1,len(content)):
        print('第%d条评论: ' %j + content[j])

结果:

 

转载于:https://www.cnblogs.com/shanhua-fu/p/10899642.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值