python3写爬取B站视频弹幕功能
作者:laozhang 时间:2023-10-31 10:00:50
需要准备的环境:
一个B站账号,需要先登录,否则不能查看历史弹幕记录
联网的电脑和顺手的浏览器,我用的Chrome
Python3环境以及request模块,安装使用命令,换源比较快:
pip3 install request -i http://pypi.douban.com/simple
爬取步骤: 登录后打开需要爬取的视频页面,打开开发者工具台,Chrome可以使用F12快捷键,选择network监听请求
点击查看历史弹幕,获取请求
其中rolldate后面的数字表示该视频对应的弹幕号,返回的数据中timestamp表示弹幕日期,new表示数目
在查看历史弹幕中任选一天,查看,会发出新的请求
dmroll ,时间戳,弹幕号,表示获取该日期的弹幕,1507564800 表示2017/10/10 0:0:0
该请求返回xml数据
使用正则表达式获取所有弹幕消息,匹配模式
'<d p=".*?">(.*?)</d>'
拼接字符串,将所有弹幕保存到本地文件即可
with open('content.txt', mode='w+', encoding='utf8') as f: f.write(content)
参考代码如下,将弹幕按照日期保存为单个文件...因为太多了...
import requests
import re
import time
"""
爬取哔哩哔哩视频弹幕信息
"""
# 2043618 是视频的弹幕标号,这个地址会返回时间列表
# https://www.bilibili.com/video/av1349282
url = 'https://comment.bilibili.com/rolldate,2043618'
# 获取弹幕的id 2043618
video_id = url.split(',')[-1]
print(video_id)
# 获取json文件
html = requests.get(url)
# print(html.json())
# 生成时间戳列表
time_list = [i['timestamp'] for i in html.json()]
# print(time_list)
# 获取弹幕网址格式 'https://comment.bilibili.com/dmroll,时间戳,弹幕号'
# 弹幕内容,由于总弹幕量太大,将每个弹幕文件分别保存
for i in time_list:
content = ''
j = 'https://comment.bilibili.com/dmroll,{0},{1}'.format(i, video_id)
print(j)
text = requests.get(j).text
# 匹配弹幕内容
res = re.findall('<d p=".*?">(.*?)</d>', text)
# 将时间戳转化为日期形式,需要把字符串转为整数
timeArray = time.localtime(int(i))
date_time = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print(date_time)
content += date_time + '\n'
for k in res:
content += k + '\n'
content += '\n'
file_path = 'txt/{}.txt'.format(time.strftime("%Y_%m_%d", timeArray))
print(file_path)
with open(file_path, mode='w+', encoding='utf8') as f:
f.write(content)
最终效果
之后可以 做一些分词生成词云或者进行情感分析,有时间在说吧....
大家可以在下方给小编留言你学习的心得,也感谢你对脚本之家的支持。
来源:https://my.oschina.net/ahaoboy/blog/1579979
标签:python3,B站视频弹幕
0
投稿
猜你喜欢
Django中间件工作流程及写法实例代码
2021-09-01 17:47:38
ASP模拟POST提交数据的方法
2010-01-14 20:06:00
Python logging模块handlers用法详解
2022-08-24 18:08:08
基于python实现获取网页图片过程解析
2023-10-08 21:57:59
Python ord函数()案例详解
2023-06-25 04:50:28
fgetcvs在linux的问题
2024-06-05 09:37:56
python中bs4.BeautifulSoup的基本用法
2023-06-22 10:43:49
什么是gzip,人肉gzip?
2008-11-20 13:01:00
python单元测试unittest实例详解
2023-10-16 08:26:49
几款好用的前端开发编辑器推荐安利
2023-11-21 13:30:00
Python中GIL的使用详解
2022-02-08 13:36:30
asp中提取HTML中图片的SRC路径
2008-10-24 08:42:00
一些CSS样式书写技巧
2007-10-16 12:57:00
本地机apache配置基于域名的虚拟主机详解
2023-11-17 07:40:37
在 Django/Flask 开发服务器上使用 HTTPS
2023-02-21 22:15:33
Python遍历字典方式就实例详解
2021-02-16 08:50:58
Pickle模块中的dump()和load()方法简介
2023-03-21 04:18:06
python图形界面开发之wxPython树控件使用方法详解
2022-05-04 04:39:28
python实现Nao机器人的单目测距
2021-04-09 16:37:10
[译]艺术和设计的差异 (1)
2009-09-25 12:38:00