吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1727|回复: 2
收起左侧

[Python 转载] python 异步协程下载图片

  [复制链接]
black8 发表于 2021-11-12 14:39
本帖最后由 black8 于 2021-11-12 15:57 编辑

今天用python抓取  https://wallhaven.cc/ 网站壁纸图片,加上windows自带ppt放映功能实现壁纸自动切换。




以下是异步下载代码,测试了一下,对比同步下载速度提神2-3倍

[Python] 纯文本查看 复制代码
import requests
import re
import os
import asyncio
import aiohttp
import aiofiles
import time
import os
import sys


def gethtml(url, encode):  # 获取网页源码
    r = requests.get(url)
    r.encoding = encode
    return r.text


def mkdir(path):  # 创建文件夹
    path = path.strip()
    isExists = os.path.exists(path)
    if not isExists:
        os.makedirs(path)


def geturl(url):  
    html = gethtml(url, 'utf-8')
    obj = re.compile(r'<a class="preview" href="(?P<url>.*?)"  target="_blank"  ></a>', re.S)
    result = obj.finditer(html)
    with open('image_path.txt', 'a') as f:
        for item in result:
            f.write(item.group('url') + '\n')


async def aio_download_pic(session, img_url):
    pic_name = img_url.split('/')[-1]
    img_url = get_data(img_url)
    print(img_url)
    async with session.get(img_url) as resp:
        async with aiofiles.open(save_path + pic_name + '.jpg', mode='wb') as f:
            await f.write(await resp.content.read())
    print(pic_name + "下载完毕")


def get_data(page_url):
    page_content = gethtml(page_url, 'utf-8')
    obj = re.compile(r'<img id="wallpaper" src="(?P<img_true_url>.*?)"', re.S)
    img_true_url = obj.search(page_content, re.S).group('img_true_url')
    return img_true_url


async def aio_download():
    tasks = []
    timeout = aiohttp.ClientTimeout(total=600)
    async with aiohttp.ClientSession(timeout=timeout) as session:
        async with aiofiles.open('image_path.txt', mode='r', encoding='utf-8') as f:
            async for line in f:
                print(line)
                url = line.strip()
                tasks.append(asyncio.create_task(aio_download_pic(session, url)))
            await asyncio.wait(tasks)


if __name__ == '__main__':
    base_url = 'https://wallhaven.cc/toplist?page='
    save_path = 'E:\\wall image\\'  # 保存位置

    now_path = os.path.abspath('') + '\\image_path.txt'
    if os.path.exists(now_path):
        os.system(f'del /Q {now_path}')

    for i in range(20, 30):
        geturl(base_url+str(i))
    """
        多线程下载图片
    """

    start_time = time.time()
    loop = asyncio.get_event_loop()
    loop.run_until_complete(aio_download())
    end_time = time.time()
    print(f'任务完成,耗时{end_time - start_time}')




image.png


免费评分

参与人数 4吾爱币 +10 热心值 +2 收起 理由
ldxxhcjs + 1 + 1 我很赞同,感谢分享,学习了!
cat8 + 1 可以
123456bbk + 1 用心讨论,共获提升!
苏紫方璇 + 7 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

dork 发表于 2021-11-12 18:04
wallhaven.cc
double07 发表于 2021-12-12 00:00
请问大佬们:异步与多线程区别在哪里?如何判断某爬虫代码最适合使用异步或多线程?
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 10:41

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表