日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

python爬蟲(chóng)小案例_從豆瓣爬取《哪吒之魔童降世》的短評(píng)

系統(tǒng) 1809 0

一、在豆瓣電影網(wǎng)爬取影片的短評(píng)以及相關(guān)的信息:

python爬蟲(chóng)小案例_從豆瓣爬取《哪吒之魔童降世》的短評(píng)_第1張圖片

二、參考代碼

            
              import requests
from bs4 import BeautifulSoup
import pandas as pd

url_list = []
for i in range(5):
    url_list.append('https://movie.douban.com/subject/26794435/comments?start=%s&limit=20&sort=new_score&status=P'%(i*20))

n = 0
commentInfo_list =[]
for url in url_list:
    txt = requests.get(url).text # 網(wǎng)頁(yè)的獲取
    soup = BeautifulSoup(txt,'lxml')  # 網(wǎng)頁(yè)的解析

    divs = soup.find('div',id='comments').find_all('div',class_='comment')        
    for div in divs:
        comments_dict ={}        
        comments_dict['用戶名'] = div.find('span',class_ = 'comment-info').find('a').text
        comments_dict['評(píng)論時(shí)間'] = div.find('span',class_= 'comment-time').text.replace(' ','').replace('\n','')
        comments_dict['有用數(shù)量'] = div.find('span',class_= 'votes').text
        comments_dict['評(píng)論內(nèi)容'] = div.find('span',class_='short').text
        
        commentInfo_list.append(comments_dict)            
        n += 1        
print('已成功采集%s條評(píng)論'%n)    

df = pd.DataFrame(commentInfo_list)
            
          

三、查看爬取下來(lái)的短評(píng)以及相關(guān)的信息:

python爬蟲(chóng)小案例_從豆瓣爬取《哪吒之魔童降世》的短評(píng)_第2張圖片


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長(zhǎng)會(huì)非常 感謝您的哦!!!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 丰台区| 德安县| 堆龙德庆县| 成都市| 黔江区| 甘南县| 千阳县| 辽阳县| 云和县| 晋城| 通江县| 昆山市| 隆德县| 阜康市| 比如县| 龙游县| 揭西县| 隆化县| 凤山市| 濉溪县| 策勒县| 肃南| 离岛区| 阜平县| 叶城县| 伊宁县| 滦平县| 东兴市| 锦屏县| 宜阳县| 图木舒克市| 墨江| 古蔺县| 惠东县| 望奎县| 黄骅市| 含山县| 巴中市| 乌鲁木齐市| 白朗县| 华池县|