主頁 > 知識(shí)庫 > python基于selenium爬取斗魚彈幕

python基于selenium爬取斗魚彈幕

熱門標(biāo)簽:千呼ai電話機(jī)器人免費(fèi) 申請辦個(gè)400電話號(hào)碼 400電話辦理費(fèi)用收費(fèi) 高德地圖標(biāo)注字母 鎮(zhèn)江人工外呼系統(tǒng)供應(yīng)商 外呼系統(tǒng)前面有錄音播放嗎 柳州正規(guī)電銷機(jī)器人收費(fèi) 深圳網(wǎng)絡(luò)外呼系統(tǒng)代理商 騰訊地圖標(biāo)注有什么版本

針對彈幕的爬取我們?nèi)绻恍枰@取看到的網(wǎng)頁里面的而數(shù)據(jù),使用selenium就能實(shí)現(xiàn),對于直播平臺(tái)來說,往往有第三方平臺(tái)api讓你獲取數(shù)據(jù)(可以獲取發(fā)彈幕,發(fā)彈幕者的名字禮物等等,這需要客戶端向彈幕服務(wù)器發(fā)送登錄請求,心跳信息的發(fā)送等等)只獲取彈幕信息儲(chǔ)存到txt文件中,上代碼,上圖片

代碼如下:

import time
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
# 使用headless無界面瀏覽器模式
# chrome_options.add_argument('--headless')
# chrome_options.add_argument('--disable-gpu')
prefs = {"profile.managed_default_content_settings.images": 2}
chrome_options.add_experimental_option("prefs", prefs)
browser = webdriver.Chrome(chrome_options=chrome_options)
url = 'https://www.douyu.com/'


def getDanmu(homeId):
  homeHref = url+str(homeId)
  browser.get(homeHref)

  while 1: 
    time.sleep(2)
    try:
      for i in browser.find_elements_by_xpath('.//div[@class=" danmu-6e95c1"]/div/div'):
        if len(i.text) > 0:
          try:
            print(i.text)
          except:
            pass
          saveDanmu(i.text)
        else:
          continue
    except:
      time.sleep(2)
      for i in browser.find_elements_by_xpath('.//div[@class=" danmu-6e95c1"]/div/div'):
        if len(i.text) > 0:
          try:
            print(i.text)
          except:
            pass
          saveDanmu(i.text)
        else:
          continue


def saveDanmu(danmu):
  with open('danmu.txt', 'a+', encoding='utf-8')as f:
    f.write(danmu+'\n')

if __name__ == '__main__':
  num = input('請輸入需要查詢的房間號(hào):')
  getDanmu(num)

以上就是python基于selenium爬取斗魚彈幕的詳細(xì)內(nèi)容,更多關(guān)于python 爬取斗魚彈幕的資料請關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • Python基于Tkinter開發(fā)一個(gè)爬取B站直播彈幕的工具
  • 使用python tkinter開發(fā)一個(gè)爬取B站直播彈幕工具的實(shí)現(xiàn)代碼
  • Python爬蟲自動(dòng)化爬取b站實(shí)時(shí)彈幕實(shí)例方法
  • 詳解python爬取彈幕與數(shù)據(jù)分析
  • Python爬蟲爬取Bilibili彈幕過程解析
  • python3寫爬取B站視頻彈幕功能
  • Python繪制詞云圖之可視化神器pyecharts的方法
  • python中實(shí)現(xiàn)詞云圖的示例
  • Python實(shí)現(xiàn)Wordcloud生成詞云圖的示例
  • Python爬取英雄聯(lián)盟MSI直播間彈幕并生成詞云圖

標(biāo)簽:海南 平頂山 哈爾濱 合肥 烏蘭察布 烏蘭察布 大慶 郴州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python基于selenium爬取斗魚彈幕》,本文關(guān)鍵詞  python,基于,selenium,爬取,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python基于selenium爬取斗魚彈幕》相關(guān)的同類信息!
  • 本頁收集關(guān)于python基于selenium爬取斗魚彈幕的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章