当前位置:
首页 > Python基础教程 >
-
python生成器/yield协程/gevent写简单的图片下载器功能示例
这篇文章主要介绍了python生成器/yield协程/gevent写简单的图片下载器功能,结合实例形式分析了python生成器、yield协程与gevent图片下载器相关功能定义与使用技巧,需要的朋友可以参考下
本文实例讲述了python生成器/yield协程/gevent写简单的图片下载器功能。分享给大家供大家参考,具体如下:
1、生成器:
'''第二种生成器'''
# 函数只有有yield存在就是生成器
def test(i):
while True:
i += 1
res = yield i
print(res)
i += 1
return res
def main():
t = test(1) # 创建生成器对象
print(next(t)) # next第一次执行从上到下,yield是终点
print(next(t))
print(t.send(5))
if __name__ == '__main__':
main()
运行结果:
2
None
4
5
6
2、yield协程demo:
def run1():
while True:
print('run1____')
yield
def run2():
while True:
print('run2____')
yield
def main():
while True:
next(run1())
next(run2())
if __name__ == '__main__':
main()
3、gevent写简单的下载图片
import gevent
import requests,lxml
# from gevent import monkey
# monkey.patch_all()
def get_pic(url, list):
headers = {
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'
}
response = requests.get(url, headers=headers)
with open('./pic/'+str(list.pop(0)) + '.png', 'wb') as f:
f.write(response.content)
def get_pic_name_list():
def main():
get_pic_name_list()
list = [x for x in range(9999)]
gevent.joinall([
gevent.spawn(get_pic, 'http://pic8.iqiyipic.com/image/20181008/eb/af/v_116880780_m_601_m11_180_236.jpg', list),
gevent.spawn(get_pic, 'http://pic6.iqiyipic.com/image/20181004/a2/2b/v_112874372_m_601_m15_180_236.jpg', list)
])
if __name__ == '__main__':
main()
希望本文所述对大家Python程序设计有所帮助。
原文链接:https://blog.csdn.net/weixin_42670402/article/details/83021436
栏目列表
最新更新
求1000阶乘的结果末尾有多少个0
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
SQL Server 中的数据类型隐式转换问题
SQL Server中T-SQL 数据类型转换详解
sqlserver 数据类型转换小实验
SQL Server数据类型转换方法
SQL Server 2017无法连接到服务器的问题解决
SQLServer地址搜索性能优化
Sql Server查询性能优化之不可小觑的书签查
SQL Server数据库的高性能优化经验总结
SQL SERVER性能优化综述(很好的总结,不要错
开启SQLSERVER数据库缓存依赖优化网站性能
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比