python gevent下载_python使用gevent实现并发下载器

并发下载原理

import gevent

from gevent import monkey

import urllib.request

monkey.patch_all()

def my_download(url):

print('GET: %s' % url)

resp = urllib.request.urlopen(url)

data = resp.read()

print('%d bytes received from %s.' % (len(data), url))

gevent.joinall([

gevent.spawn(my_download, "https://www.baidu.com"),

gevent.spawn(my_download, "https://www.cnblogs.com"),

gevent.spawn(my_download, "https://www.huya.com")

])

运行结果:

GET: https://www.baidu.com

GET: https://www.cnblogs.com

GET: https://www.huya.com

227 bytes received from https://www.baidu.com.

46411 bytes received from https://www.cnblogs.com.

353563 bytes received from https://www.huya.com.

实现多张图片同时下载

import gevent

from gevent import monkey

import urllib.request

monkey.patch_all()

def my_download(url, image_path):

print('GET: %s' % url)

resp = urllib.request.urlopen(url)

data = resp.read()

print('%d bytes received from %s.' % (len(data), url))

with open(image_path, "wb") as f:

f.write(data)

gevent.joinall([

gevent.spawn(my_download, "https://huyaimg.msstatic.com/cdnimage/anchorpost/1099/4c/73ff3e6ce165fb658b2082d4d126c6_2168_1544414129.jpg", "1.jpg"),

gevent.spawn(my_download, "https://huyaimg.msstatic.com/cdnimage/anchorpost/1020/03/7949816c55f45b9adc9f03d9330af3_2168_1542941499.jpg", "2.jpg"),

gevent.spawn(my_download, "https://huyaimg.msstatic.com/cdnimage/anchorpost/1061/55/8071537fa10120c43c5a1359a88530_2168_1545302709.jpg", "3.jpg"),

])

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值