-
大小: 1.55MB文件类型: .zip金币: 1下载: 0 次发布日期: 2023-11-18
- 语言: Python
- 标签:
资源简介
Bilibili_Live_Barrage实时监控B站直播弹幕并发送跟随弹幕
代码片段和文件信息
# !/user/bin/env python
# -*- coding:utf-8 -*-
# time: 2018/2/2--21:19
__author__ = ‘Henry‘
‘‘‘
爬取B站直播弹幕并发送跟随弹幕
‘‘‘
import requests re
import time
import random
def main():
print(‘*‘ * 30 + ‘欢迎来到B站直播弹幕小助手‘ + ‘*‘ * 30)
url = input(‘请输出您要查看的直播房间网址链接:‘)
cookie = input(‘请输入账号登录后的Cookie值:‘)
token = re.search(r‘bili_jct=(.*?);‘ cookie).group(1)
# 获取roomid
html = requests.get(url).text
if re.search(r‘room_id“:(.*?)‘ html):
roomid = re.search(r‘room_id“:(.*?)‘ html).group(1)
print(‘直播房间号为:‘ + roomid)
else:
print(‘抱歉未找到此直播房间号~‘)
while True:
# 爬取:
url = ‘https://api.live.bilibili.com/ajax/msg‘
form = {
‘roomid‘: roomid
‘visit_id‘: ‘‘
‘csrf_token‘: token # csrf_token就是cookie中的bili_jct字段;且有效期是7天!!!
}
headers = {
‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/55.0.2883.87 Safari/537.36‘
‘Cookie‘: cookie
}
html = requests.post(url data=form)
result = html.json()[‘data‘][‘room‘]
for i in result:
print(‘[‘ + i[‘nickname‘] + ‘]:‘ + i[‘text‘])
barrage = result[random.randint(0 len(result) - 1)][‘text‘] + ‘666‘ # 随机取出第789条弹幕中的任一条来发送
# 跟随发送:
url_send = ‘https://api.live.bilibili.com/msg/send‘
data = {
‘color‘: ‘16777215‘
‘fontsize‘: ‘25‘
‘mode‘: ‘1‘
‘msg‘: barrage
‘rnd‘: int(time.time())
‘roomid‘: roomid
‘csrf_token‘: token
}
try:
html_send = requests.post(url_send data=data headers=headers)
result = html_send.json()
if result[‘msg‘] == ‘你被禁言啦‘:
print(‘*‘ * 30 + ‘您被禁言啦!!! 跟随弹幕发送失败~‘ + ‘*‘ * 30)
exit()
if result[‘code‘] == 0 and result[‘msg‘] == ‘‘:
print(‘*‘ * 30 + ‘[‘ + barrage + ‘]‘ + ‘ 跟随弹幕发送成功~‘ + ‘*‘ * 30)
else:
print(‘*‘ * 30 + ‘[‘ + barrage + ‘]‘ + ‘ 跟随弹幕发送失败‘ + ‘*‘ * 30)
except:
print(‘*‘ * 30 + ‘[‘ + barrage + ‘]‘ + ‘ 跟随弹幕发送失败‘ + ‘*‘ * 30)
time.sleep(1)
if __name__ == ‘__main__‘:
main()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-20 02:42 Bilibili_Live_Barrage-master\
目录 0 2018-10-20 02:42 Bilibili_Live_Barrage-master\Pic\
文件 330626 2018-10-20 02:42 Bilibili_Live_Barrage-master\Pic\find_cookie.png
文件 9325 2018-10-20 02:42 Bilibili_Live_Barrage-master\Pic\logo.jpg
文件 19104 2018-10-20 02:42 Bilibili_Live_Barrage-master\Pic\logo.png
文件 1294678 2018-10-20 02:42 Bilibili_Live_Barrage-master\Pic\run.gif
文件 1380 2018-10-20 02:42 Bilibili_Live_Barrage-master\README.md
目录 0 2018-10-20 02:42 Bilibili_Live_Barrage-master\Spiders\
文件 2573 2018-10-20 02:42 Bilibili_Live_Barrage-master\Spiders\bilibili_live_barrage.py
文件 17 2018-10-20 02:42 Bilibili_Live_Barrage-master\requirements.txt
相关资源
- Python-用pyqt5和parametrics实现很酷的动画
- Python-在线网络小说搜索阅读网站
- Python-Camelot一个可以轻松地从PDF文件中
- Python-一个用手势控制的计算器
- Python-最全中华古诗词数据库
- Python-导出qq音乐歌单的小工具导出格
- Python-利用keras模仿汪峰生成歌词
- Python-洛谷冬日绘板脚本
- Python-PermaNote是基于Sandstorm开源的个人
- Python-当朋友给你发iMessage时自动回复
- Python-中国县级行政区划的边界数据并
- Python-垃圾分类助手猜测可能是什么垃
- Python-csv2tex将csv数据变成LaTeX表格
- Python-这是一个DSStore文件泄漏利用脚本
- Python-基于itchat库和图灵机器人实现的
- Python-农业知识图谱农业领域的命名实
- Python-从Python高效处理FASTQ文件
- Python-一个WindowsLinux和Mac的简单键盘记
- Python-Binance虚拟货币交易机器人
- Python-AWDHunter一个基于Python27的AWD自动
- Python-ArkNights自动作战脚本
- Python-导出安卓微信聊天数据工具
- Python-这是一个简单的Web聊天系统可以
评论
共有 条评论