溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么爬取B站視頻彈幕

發(fā)布時間:2021-11-23 11:28:11 來源:億速云 閱讀:498 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹“Python怎么爬取B站視頻彈幕”,在日常操作中,相信很多人在Python怎么爬取B站視頻彈幕問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Python怎么爬取B站視頻彈幕”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

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

  • Python 3.6

  • Pycharm

相關模塊的使用

  • requests

  • re

安裝Python并添加到環(huán)境變量,pip安裝需要的相關模塊即可。

一、明確需求

找一個彈幕比較多的視頻爬取

二、網(wǎng)頁數(shù)據(jù)分析

以前的B站彈幕視頻,點擊查看歷史的彈幕,會給你返回一個json數(shù)據(jù),包含了所有的彈幕內(nèi)容。
現(xiàn)在點擊歷史彈幕數(shù)據(jù),同樣是有數(shù)據(jù)加載出來,但是里面的都是亂碼了。


請求這個鏈接還是會得到想要的數(shù)據(jù)內(nèi)容。


只需要使用正則表達匹配中文字符就可以匹配出來

三、解析數(shù)據(jù)并多頁爬取

彈幕分頁是根據(jù)日期來的,當點擊 2021-01-01 的使用,返回的給我的數(shù)據(jù)并不是彈幕數(shù)據(jù),而是所有的日期。


那么看到這里有人就會問了,那我想要爬取 2021-01-01 的彈幕數(shù)據(jù)怎么辦?


這兩個的url地址是不一樣的,seg.so 才是彈幕數(shù)據(jù)url地址。

import requests
import re


def get_response(html_url):
    headers = {
        'cookie': '你自己的cookie',
        'origin': 'https://www.bilibili.com',
        'referer': 'https://www.bilibili.com/video/BV19E41197Kc',
        'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',
    }
    response = requests.get(url=html_url, headers=headers)
    return response


def get_date(html_url):
    response = get_response(html_url)
    json_data = response.json()
    date = json_data['data']
    print(date)
    return date
    
if __name__ == '__main__':
    one_url = 'https://api.bilibili.com/x/v2/dm/history/index?type=1&oid=120004475&month=2021-01'
    get_date(one_url)

返回的數(shù)據(jù)是json數(shù)據(jù),根據(jù)字典鍵值對取值就可以得到相關數(shù)據(jù)。

Python怎么爬取B站視頻彈幕

四、保存數(shù)據(jù)(數(shù)據(jù)持久化)

def main(html_url):
    data = get_date(html_url)
    for date in data:
        url = f'https://api.bilibili.com/x/v2/dm/web/history/seg.so?type=1&oid=120004475&date={date}'
        html_data = get_response(url).text
        result = re.findall(".*?([\u4E00-\u9FA5]+).*?", html_data)
        for i in result:
            with open('B站彈幕.txt', mode='a', encoding='utf-8') as f:
                f.write(i)
                f.write('\n')

五、完整代碼

import requests
import re


def get_response(html_url):
    headers = {
        'cookie': '你自己的cookie',
        'origin': 'https://www.bilibili.com',
        'referer': 'https://www.bilibili.com/video/BV19E41197Kc',
        'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',
    }
    response = requests.get(url=html_url, headers=headers)
    return response


def get_date(html_url):
    response = get_response(html_url)
    json_data = response.json()
    date = json_data['data']
    print(date)
    return date


def save(content):
    for i in content:
        with open('B站彈幕.txt', mode='a', encoding='utf-8') as f:
            f.write(i)
            f.write('\n')
            print(i)


def main(html_url):
    data = get_date(html_url)
    for date in data:
        url = f'https://api.bilibili.com/x/v2/dm/web/history/seg.so?type=1&oid=120004475&date={date}'
        html_data = get_response(url).text
        result = re.findall(".*?([\u4E00-\u9FA5]+).*?", html_data)
        save(result)


if __name__ == '__main__':
    one_url = 'https://api.bilibili.com/x/v2/dm/history/index?type=1&oid=120004475&month=2021-01'
    main(one_url)

到此,關于“Python怎么爬取B站視頻彈幕”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

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

AI