如上圖所示,先打開(kāi)開(kāi)發(fā)者工具,定位到xhr輸入發(fā)送內(nèi)容,點(diǎn)擊發(fā)送,會(huì)有一個(gè)post請(qǐng)求的send數(shù)據(jù)接口。
所以只需要請(qǐng)求這個(gè)數(shù)據(jù)接口即可發(fā)送彈幕。就是正常的時(shí)候爬取數(shù)據(jù),使用requests請(qǐng)求網(wǎng)頁(yè)一樣,一般情況大家都是使用的get請(qǐng)求,這里則是需要使用post請(qǐng)求。
之后,只要給請(qǐng)求的時(shí)候來(lái)一個(gè)死循環(huán),那么就可以一直發(fā)送彈幕了,然后再自定義一個(gè)彈幕內(nèi)容,讓它每次都是隨機(jī)抽選一句話發(fā)送即可。
import requests
import time
from tkinter import *
import random
lis_text = ['666', '主播真厲害',
'愛(ài)了,愛(ài)了',
'關(guān)注走一走,活到99',
'牛逼?。?!',
'秀兒,是你嗎?']
def send():
a = 0
while True:
time.sleep(2)
send_meg = random.choice(lis_text)
roomid = entry.get()
ti = int(time.time())
url = 'https://api.live.bilibili.com/msg/send'
data = {
'color': '16777215',
'fontsize': '25',
'mode': '1',
'msg': send_meg,
'rnd': '{}'.format(ti),
'roomid': '{}'.format(roomid),
'bubble': '0',
'csrf_token': '復(fù)制自己的',
'csrf': '復(fù)制自己的',
}
headers = {
'cookie': '使用你自己的cookie',
'origin': 'https://live.bilibili.com',
'referer': 'https://live.bilibili.com/blanc/1029?liteVersion=true',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',
}
a += 1
response = requests.post(url=url, data=data, headers=headers)
print(response)
text.insert(END, '第{}條彈幕發(fā)送成功'.format(a))
# 文本框滾動(dòng)
text.see(END)
# 更新
text.update()
text.insert(END, '發(fā)送內(nèi)容:{}'.format(send_meg))
root = Tk()
root.title('B站自動(dòng)發(fā)送彈幕')
root.geometry('560x450+400+200')
label = Label(root, text='請(qǐng)輸入房間ID:', font=('華文行楷', 20))
label.grid()
entry = Entry(root, font=('隸書(shū)', 20))
entry.grid(row=0, column=1)
text = Listbox(root, font=('隸書(shū)', 16), width=50, heigh=15)
text.grid(row=2, columnspan=2)
button1 = Button(root, text='開(kāi)始發(fā)送', font=('隸書(shū)', 15), command=send)
button1.grid(row=3, column=0)
button2 = Button(root, text='退出程序', font=('隸書(shū)', 15), command=root.quit)
button2.grid(row=3, column=1)
root.mainloop()
以上就是python實(shí)現(xiàn)b站直播自動(dòng)發(fā)送彈幕的詳細(xì)內(nèi)容,更多關(guān)于python 自動(dòng)發(fā)送彈幕的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!