溫馨提示×

溫馨提示×

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

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

Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取

發(fā)布時(shí)間:2022-03-07 16:41:19 來源:億速云 閱讀:210 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取”吧!

我們找到微博在瀏覽器上面用于手機(jī)端的調(diào)試的APL,如何找到呢?

Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取

1.模擬搜索用戶

Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取

搜索一個(gè)用戶獲取到的api:

https://m.weibo.cn/api/container/getIndex?containerid=100103type=1&q=半半子&page_type=searchall

1.1 對api內(nèi)參數(shù)進(jìn)行處理

containerid=100103type=1&q=半半子 ——> containerid=100103type%3D1%26q%3D%E5%8D%8A%E5%8D%8A%E5%AD%90_

這個(gè)參數(shù)需要提前轉(zhuǎn)碼,否則無法獲取數(shù)據(jù)

1.2 對用戶名進(jìn)行判斷,通過后提取uid

Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取

2.獲取more參數(shù)

GET

api : https://m.weibo.cn/profile/info?uid=2830125342

2.1 提取并處理more參數(shù)

Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取

3.循環(huán)提取圖片id

GET

api : https://m.weibo.cn/api/container/getIndex?containerid=2304132830125342_-_WEIBO_SECOND_PROFILE_WEIBO&page_type=03&page=1

3.1 提取圖片id——>pic_id

3.2 獲取發(fā)送圖片用戶

3.3 根據(jù)動(dòng)態(tài)創(chuàng)建時(shí)間生成用戶唯一識(shí)別碼

Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取

4.下載圖片

我們從瀏覽器抓包中就會(huì)獲取到后臺(tái)服務(wù)器發(fā)給瀏覽器的圖片鏈接

https://wx2.sinaimg.cn/large/pic_id.jpg 

瀏覽器打開這個(gè)鏈接就可以直接下載圖片

爬取完整代碼:

import os
import sys
import time
from urllib.parse import quote
 
import requests
 
headers = {
    'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'
}
 
 
def time_to_str(c_at):
    ti = time.strptime(c_at, '%a %b %d %H:%M:%S +0800 %Y')
    time_str = time.strftime('%Y%m%d%H%M%S', ti)
    return time_str
 
 
# 1. 搜索用戶,獲取uid
# 2. 通過uid獲取空間動(dòng)態(tài)關(guān)鍵參數(shù)
# 3. 獲取動(dòng)態(tài)內(nèi)容
# 4. 提取圖片參數(shù)
# 5. 下載圖片
 
# 1. 搜索用戶,獲取uid
# ========= 用戶名 =========
# 輸入不同的用戶名可切換下載的用戶圖片
# 用戶名需要完全匹配
name = '半半子_'
# =========================
 
con_id = f'100103type=1&q={name}'
# 這個(gè)條件需要轉(zhuǎn)碼
con_id = quote(con_id, 'utf-8')
user_url = f'https://m.weibo.cn/api/container/getIndex?containerid={con_id}&page_type=searchall'
user_json = requests.get(url=user_url, headers=headers).json()
user_cards = user_json['data']['cards']
for card_num in range(len(user_cards)):
    if 'mblog' in user_cards[card_num]:
        if user_cards[card_num]['mblog']['user']['screen_name'] == name:
            print(f'正在獲取{name}的空間')
            # 2. 通過uid獲取空間動(dòng)態(tài)關(guān)鍵參數(shù)
            user_id = user_cards[card_num]['mblog']['user']['id']
            info_url = f'https://m.weibo.cn/profile/info?uid={user_id}'
            info_json = requests.get(url=info_url, headers=headers).json()
            more_card = info_json['data']['more'].split("/")[-1]
            break
file_name = 'weibo'
if not os.path.exists(file_name):
    os.mkdir(file_name)
 
if len(more_card) == 0:
    sys.exit()
page_type = '03'
page = 0
while True:
    # 3. 獲取動(dòng)態(tài)內(nèi)容
    page += 1
    url = f'https://m.weibo.cn/api/container/getIndex?containerid={more_card}&page_type={page_type}&page={page}'
    param = requests.get(url=url, headers=headers).json()
    cards = param['data']['cards']
    print(f'第 {page} 頁')
    for i in range(len(cards)):
        card = cards[i]
        if card['card_type'] != 9:
            continue
        mb_log = card['mblog']
        # 4. 提取圖片參數(shù)
        # 獲取本人的圖片
        pic_ids = mb_log['pic_ids']
        user_name = mb_log['user']['screen_name']
        created_at = mb_log['created_at']
        if len(pic_ids) == 0:
            # 獲取轉(zhuǎn)發(fā)的圖片
            if 'retweeted_status' not in mb_log:
                continue
            if 'pic_ids' not in mb_log['retweeted_status']:
                continue
            pic_ids = mb_log['retweeted_status']['pic_ids']
            user_name = mb_log['retweeted_status']['user']['screen_name']
            created_at = mb_log['retweeted_status']['created_at']
        time_name = time_to_str(created_at)
        pic_num = 1
        print(f'======== {user_name} ========')
        # 5. 下載圖片
        for pic_id in pic_ids:
            pic_url = f'https://wx2.sinaimg.cn/large/{pic_id}.jpg'
            pic_data = requests.get(pic_url, headers)
            # 文件名 用戶名_日期(年月日時(shí)分秒)_編號(hào).jpg
            # 例:半半子__20220212120146_1.jpg
            with open(f'{file_name}/{user_name}_{time_name}_{pic_num}.jpg', mode='wb') as f:
                f.write(pic_data.content)
                print(f'    正在下載:{pic_id}.jpg')
            pic_num += 1
        time.sleep(2)

到此,相信大家對“Python怎么實(shí)現(xiàn)微博動(dòng)態(tài)圖片爬取”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

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

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

AI