分析Ajax爬取今日头条街拍图片

# -*- coding:UTF-8 -*-
import requests
import time
import os
from hashlib import md5

def get_page(offset):
    params = {
        'aid': '24',
        'app_name': 'web_search',
        'offset': offset,
        'format': 'json',
        'keyword': '街拍',
        'autoload': 'true',
        'count': '20',
        'en_qc': '1',
        'cur_tab': '1',
        'from': 'search_tab',
        'pd': 'synthesis',
        'timestamp': int(time.time() * 1000)
    }
    url = 'http://www.toutiao.com/search_content/?'
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) Ap'
                      'pleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36',
        'referer': 'https://www.toutiao.com/search/?keyword=%E8%A1%97%E6%8B%8D',
        'x-requested-with': 'XMLHttpRequest'
    }
    try:
        response = requests.get(url=url, params=params, headers=headers)
        if response.status_code == 200:
            return response.json()
    except requests.ConnectionError:
        return None


def get_images(json):
    if json.get('data'):
        for item in json.get('data'):
            if 'title' in item and 'image_list' in item and item['image_list'] != []:
                title = item['title']
                images = item['image_list']
                for image in images:
                    yield {
                        'image': image.get('url'),
                        'title': title
                    }


def save_image(offset, item):
    if not os.path.exists('picture'+str(offset)):
        os.mkdir('picture'+str(offset))
    try:
        response = requests.get("http:" + item.get('image'))
        if response.status_code == 200:
            file_path = '{0}/{1}.{2}'.format('picture'+str(offset), md5(response.content).hexdigest(), 'jpg')
            if not os.path.exists(file_path):
                with open(file_path, 'wb') as f:
                    f.write(response.content)
            else:
                print('Already Downloaded', file_path)
    except requests.ConnectionError:
        print('Failed to Save Image')


if __name__ == '__main__':
    for offset in range(0, 120, 20):
        json = get_page(offset)
        for item in get_images(json):
            save_image(offset, item)
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值