溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用python實(shí)怎么編寫(xiě)一個(gè)自動(dòng)發(fā)送彈幕功能

發(fā)布時(shí)間:2021-02-20 13:59:09 來(lái)源:億速云 閱讀:238 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)使用python實(shí)怎么編寫(xiě)一個(gè)自動(dòng)發(fā)送彈幕功能,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

基本開(kāi)發(fā)環(huán)境

· Python 3.6

· Pycharm

相關(guān)模塊使用

import requests
import time
from tkinter import *
import random

完整代碼:

import requests
import time
from tkinter import *
import random

lis_text = ['666', '主播真厲害',
   '愛(ài)了,愛(ài)了',
   '關(guān)注走一走,活到99',
   '牛逼!?。?#39;,
   '秀兒,是你嗎?']


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ě)一個(gè)自動(dòng)發(fā)送彈幕功能了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI