最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

如何使用python爬取B站排行榜Top100的視頻數(shù)據(jù)

 更新時(shí)間:2021年09月27日 09:59:41   作者:小狐貍夢(mèng)想去童話鎮(zhèn)  
本文章向大家介紹python爬取b站排行榜,包括python爬取b站排行榜的具體代碼,對(duì)大家的學(xué)習(xí)或工作具有一定的參考價(jià)值,需要的朋友可以參考一下

記得收藏呀?。。?/p>

1、第三方庫(kù)導(dǎo)入

from bs4 import BeautifulSoup # 解析網(wǎng)頁(yè)
import re   # 正則表達(dá)式,進(jìn)行文字匹配
import urllib.request,urllib.error  # 通過(guò)瀏覽器請(qǐng)求數(shù)據(jù)
import sqlite3  # 輕型數(shù)據(jù)庫(kù)
import time  # 獲取當(dāng)前時(shí)間

2、程序運(yùn)行主函數(shù)

爬取過(guò)程主要包括聲明爬取網(wǎng)頁(yè) -> 爬取網(wǎng)頁(yè)數(shù)據(jù)并解析 -> 保存數(shù)據(jù)

def main():
	#聲明爬取網(wǎng)站
    baseurl = "https://www.bilibili.com/v/popular/rank/all"
    #爬取網(wǎng)頁(yè)
    datalist = getData(baseurl)
    # print(datalist)
    #保存數(shù)據(jù)
    dbname = time.strftime("%Y-%m-%d", time.localtime())
    dbpath = "BiliBiliTop100  " + dbname
    saveData(datalist,dbpath)

(1)在爬取的過(guò)程中采用的技術(shù)為:偽裝成瀏覽器對(duì)數(shù)據(jù)進(jìn)行請(qǐng)求;
(2)解析爬取到的網(wǎng)頁(yè)源碼時(shí):采用Beautifulsoup解析出需要的數(shù)據(jù),使用re正則表達(dá)式對(duì)數(shù)據(jù)進(jìn)行匹配;
(3)保存數(shù)據(jù)時(shí),考慮到B站排行榜是每日進(jìn)行刷新,故可以用當(dāng)前日期進(jìn)行保存數(shù)據(jù)庫(kù)命名。

3、程序運(yùn)行結(jié)果

在這里插入圖片描述

數(shù)據(jù)庫(kù)中包含的數(shù)據(jù)有:排名、視頻鏈接、標(biāo)題、播放量、評(píng)論量、作者、綜合分?jǐn)?shù)這7個(gè)數(shù)據(jù)。

在這里插入圖片描述

4、程序源代碼

from bs4 import BeautifulSoup #解析網(wǎng)頁(yè)
import re # 正則表達(dá)式,進(jìn)行文字匹配
import urllib.request,urllib.error
import sqlite3
import time


def main():
    #聲明爬取網(wǎng)站
    baseurl = "https://www.bilibili.com/v/popular/rank/all"
    #爬取網(wǎng)頁(yè)
    datalist = getData(baseurl)
    # print(datalist)
    #保存數(shù)據(jù)
    dbname = time.strftime("%Y-%m-%d", time.localtime())
    dbpath = "BiliBiliTop100  " + dbname
    saveData(datalist,dbpath)

#re正則表達(dá)式
findLink =re.compile(r'<a class="title" href="(.*?)" rel="external nofollow" ') #視頻鏈接
findOrder = re.compile(r'<div class="num">(.*?)</div>') #榜單次序
findTitle = re.compile(r'<a class="title" href=".*?" rel="external nofollow"  rel="external nofollow"  target="_blank">(.*?)</a>') #視頻標(biāo)題
findPlay = re.compile(r'<span class="data-box"><i class="b-icon play"></i>([\s\S]*)(.*?)</span> <span class="data-box">') #視頻播放量
findView = re.compile(r'<span class="data-box"><i class="b-icon view"></i>([\s\S]*)(.*?)</span> <a href=".*?" rel="external nofollow"  rel="external nofollow"  target="_blank"><span class="data-box up-name">') # 視頻評(píng)價(jià)數(shù)
findName = re.compile(r'<i class="b-icon author"></i>(.*?)</span></a>',re.S) #視頻作者
findScore = re.compile(r'<div class="pts"><div>(.*?)</div>綜合得分',re.S) #視頻得分
def getData(baseurl):
    datalist = []
    html = askURL(baseurl)
    #print(html)

    soup = BeautifulSoup(html,'html.parser')  #解釋器
    for item in soup.find_all('li',class_="rank-item"):
        # print(item)
        data = []
        item = str(item)

        Order = re.findall(findOrder,item)[0]
        data.append(Order)
        # print(Order)

        Link = re.findall(findLink,item)[0]
        Link = 'https:' + Link
        data.append(Link)
        # print(Link)

        Title = re.findall(findTitle,item)[0]
        data.append(Title)
        # print(Title)

        Play = re.findall(findPlay,item)[0][0]
        Play = Play.replace(" ","")
        Play = Play.replace("\n","")
        Play = Play.replace(".","")
        Play = Play.replace("萬(wàn)","0000")
        data.append(Play)
        # print(Play)

        View = re.findall(findView,item)[0][0]
        View = View.replace(" ","")
        View = View.replace("\n","")
        View = View.replace(".","")
        View = View.replace("萬(wàn)","0000")
        data.append(View)
        # print(View)

        Name = re.findall(findName,item)[0]
        Name = Name.replace(" ","")
        Name = Name.replace("\n","")
        data.append(Name)
        # print(Name)

        Score = re.findall(findScore,item)[0]
        data.append(Score)
        # print(Score)
        datalist.append(data)
    return datalist

def askURL(url):
    #設(shè)置請(qǐng)求頭
    head = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0;Win64;x64) AppleWebKit/537.36(KHTML, likeGecko) Chrome/80.0.3987.163Safari/537.36"
    }
    request = urllib.request.Request(url, headers = head)
    html = ""
    try:
        response = urllib.request.urlopen(request)
        html = response.read().decode("utf-8")
        #print(html)
    except urllib.error.URLError as e:
        if hasattr(e,"code"):
            print(e.code)
        if hasattr(e,"reason"):
            print(e.reason)
    return html

def saveData(datalist,dbpath):
    init_db(dbpath)
    conn = sqlite3.connect(dbpath)
    cur = conn.cursor()

    for data in datalist:
        sql = '''
        insert into Top100(
        id,info_link,title,play,view,name,score)
        values("%s","%s","%s","%s","%s","%s","%s")'''%(data[0],data[1],data[2],data[3],data[4],data[5],data[6])
        print(sql)
        cur.execute(sql)
        conn.commit()
    cur.close()
    conn.close()

def init_db(dbpath):
    sql = '''
    create table Top100
    (
    id integer primary key autoincrement,
    info_link text,
    title text,
    play numeric,
    view numeric,
    name text,
    score numeric
    )
    '''
    conn = sqlite3.connect(dbpath)
    cursor = conn.cursor()
    cursor.execute(sql)
    conn.commit()
    conn.close()



if __name__ =="__main__":
    main()

到此這篇關(guān)于如何使用python爬取B站排行榜Top100的視頻數(shù)據(jù)的文章就介紹到這了,更多相關(guān)python B站視頻 內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • 深入解析opencv骨架提取的算法步驟

    深入解析opencv骨架提取的算法步驟

    這篇文章主要介紹了深入解析opencv骨架提取的算法步驟
    2022-05-05
  • python非對(duì)稱加密算法RSA實(shí)現(xiàn)原理與應(yīng)用詳解

    python非對(duì)稱加密算法RSA實(shí)現(xiàn)原理與應(yīng)用詳解

    RSA加密算法是一種非對(duì)稱加密算法,RSA算法的安全性基于大數(shù)分解的困難性,即已知兩個(gè)大素?cái)?shù)p和q的乘積n,求解p和q非常困難,RSA算法廣泛應(yīng)用于數(shù)據(jù)加密和數(shù)字簽名等領(lǐng)域,本文將詳細(xì)介紹如何在Python中使用RSA算法進(jìn)行加密和解密,需要的朋友可以參考下
    2024-09-09
  • python協(xié)程庫(kù)asyncio(異步io)問(wèn)題

    python協(xié)程庫(kù)asyncio(異步io)問(wèn)題

    這篇文章主要介紹了python協(xié)程庫(kù)asyncio(異步io)問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-11-11
  • Python構(gòu)造函數(shù)屬性示例魔法解析

    Python構(gòu)造函數(shù)屬性示例魔法解析

    Python構(gòu)造函數(shù)和屬性魔法是面向?qū)ο缶幊讨械年P(guān)鍵概念,它們?cè)试S在類定義中執(zhí)行特定操作,以控制對(duì)象的初始化和屬性訪問(wèn),本文將深入學(xué)習(xí)Python中的構(gòu)造函數(shù)和屬性魔法,包括構(gòu)造函數(shù)__init__、屬性的@property和@attribute.setter等,以及它們的實(shí)際應(yīng)用
    2023-12-12
  • Python讀寫/追加excel文件Demo分享

    Python讀寫/追加excel文件Demo分享

    今天小編就為大家分享一篇Python讀寫/追加excel文件Demo,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2018-05-05
  • 解決安裝和導(dǎo)入tensorflow、keras出錯(cuò)的問(wèn)題

    解決安裝和導(dǎo)入tensorflow、keras出錯(cuò)的問(wèn)題

    這篇文章主要介紹了解決安裝和導(dǎo)入tensorflow、keras出錯(cuò)的問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-01-01
  • Python實(shí)現(xiàn)的Google IP 可用性檢測(cè)腳本

    Python實(shí)現(xiàn)的Google IP 可用性檢測(cè)腳本

    這篇文章主要介紹了Python實(shí)現(xiàn)的Google IP 可用性檢測(cè)腳本,本文腳本需要Python 3.4+環(huán)境,需要的朋友可以參考下
    2015-04-04
  • Tensorflow分類器項(xiàng)目自定義數(shù)據(jù)讀入的實(shí)現(xiàn)

    Tensorflow分類器項(xiàng)目自定義數(shù)據(jù)讀入的實(shí)現(xiàn)

    這篇文章主要介紹了Tensorflow分類器項(xiàng)目自定義數(shù)據(jù)讀入的實(shí)現(xiàn),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2019-02-02
  • Python程序退出方式小結(jié)

    Python程序退出方式小結(jié)

    這篇文章主要介紹了Python程序退出方式小結(jié),具有一定參考價(jià)值,需要的朋友可以了解下。
    2017-12-12
  • 對(duì)python中GUI,Label和Button的實(shí)例詳解

    對(duì)python中GUI,Label和Button的實(shí)例詳解

    今天小編就為大家分享一篇對(duì)python中GUI,Label和Button的實(shí)例詳解,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2019-06-06

最新評(píng)論

吴桥县| 新丰县| 尚义县| 理塘县| 桦川县| 井陉县| 萨迦县| 九寨沟县| 福建省| 宜章县| 南投县| 无锡市| 洞头县| 玛曲县| 泾阳县| 三江| 东乡族自治县| 拉萨市| 菏泽市| 天柱县| 锡林郭勒盟| 岳池县| 怀化市| 咸宁市| 新平| 开鲁县| 东港市| 阿荣旗| 宁明县| 德昌县| 台东市| 沁水县| 正镶白旗| 怀化市| 香格里拉县| 衡山县| 杂多县| 静乐县| 嘉峪关市| 介休市| 神池县|