当前位置:   article > 正文

Python asyncio高性能异步编程 详解

Python asyncio高性能异步编程 详解

目录

一、协程

1.1、greenlet实现协程

1.2、yield关键字

1.3、asyncio

1.4、async & await关键字

二、协程意义

三、异步编程

3.1、事件循环

3.2、快速上手

3.3、await

3.4、Task对象

3.5、asyncio.Future对象

3.5、concurrent.futures.Future对象

3.7、异步迭代器

3.8、异步上下文管理器

四、uvloop

五、实战案例

5.1、异步redis

5.2、异步MySQL

5.3、FastAPI框架

六、总结


一、协程

协程不是计算机提供,程序员人为创造。

协程(Coroutine),也可以被称为微线程,是一种用户态内的上下文切换技术。简而言之,其实就是通过一个线程实现代码块相互切换执行。例如:

  1. def func1():
  2. print(1)
  3. ...
  4. print(2)
  5. def func2():
  6. print(3)
  7. ...
  8. print(4)
  9. func1()
  10. func2()

实现协程有这么几种方法:

  • greenlet,早期模块。

  • yield关键字。

  • asyncio装饰器(py3.4)

  • async、await关键字(py3.5)【推荐】

1.1、greenlet实现协程

pip3 install greenlet
  1. from greenlet import greenlet
  2. def func1():
  3. print(1) # 第2步:输出 1
  4. gr2.switch() # 第3步:切换到 func2 函数
  5. print(2) # 第6步:输出 2
  6. gr2.switch() # 第7步:切换到 func2 函数,从上一次执行的位置继续向后执行
  7. def func2():
  8. print(3) # 第4步:输出 3
  9. gr1.switch() # 第5步:切换到 func1 函数,从上一次执行的位置继续向后执行
  10. print(4) # 第8步:输出 4
  11. gr1 = greenlet(func1)
  12. gr2 = greenlet(func2)
  13. gr1.switch() # 第1步:去执行 func1 函数

1.2、yield关键字

  1. def func1():
  2. yield 1
  3. yield from func2()
  4. yield 2
  5. def func2():
  6. yield 3
  7. yield 4
  8. f1 = func1()
  9. for item in f1:
  10. print(item)

1.3、asyncio

在python3.4及之后的版本。

  1. import asyncio
  2. @asyncio.coroutine
  3. def func1():
  4. print(1)
  5. # 网络IO请求:下载一张图片
  6. yield from asyncio.sleep(2) # 遇到IO耗时操作,自动化切换到tasks中的其他任务
  7. print(2)
  8. @asyncio.coroutine
  9. def func2():
  10. print(3)
  11. # 网络IO请求:下载一张图片
  12. yield from asyncio.sleep(2) # 遇到IO耗时操作,自动化切换到tasks中的其他任务
  13. print(4)
  14. tasks = [
  15. asyncio.ensure_future(func1()),
  16. asyncio.ensure_future(func2())
  17. ]
  18. loop = asyncio.get_event_loop()
  19. loop.run_until_complete(asyncio.wait(tasks))

我们将两个函数放到tasks中,启动时会随机选一个函数执行,遇到IO阻塞自动切换。

1.4、async & await关键字

在python3.5及之后的版本。

  1. import asyncio
  2. async def func1():
  3. print(1)
  4. # 网络IO请求:下载一张图片
  5. await asyncio.sleep(2) # 遇到IO耗时操作,自动化切换到tasks中的其他任务
  6. print(2)
  7. async def func2():
  8. print(3)
  9. # 网络IO请求:下载一张图片
  10. await asyncio.sleep(2) # 遇到IO耗时操作,自动化切换到tasks中的其他任务
  11. print(4)
  12. tasks = [
  13. asyncio.ensure_future( func1() ),
  14. asyncio.ensure_future( func2() )
  15. ]
  16. loop = asyncio.get_event_loop()
  17. loop.run_until_complete(asyncio.wait(tasks))

二、协程意义

在一个线程中如果遇到IO等待时间,线程不会傻傻等,利用空闲的时候再去干点其他事。

案例:去下载三张图片(网络IO)。

(1)普通方式(同步)

pip install requests
  1. import requests
  2. def download_image(url):
  3. print("开始下载:",url)
  4. # 发送网络请求,下载图片
  5. response = requests.get(url)
  6. print("下载完成")
  7. # 图片保存到本地文件
  8. file_name = url.rsplit('_')[-1]
  9. with open(file_name, mode='wb') as file_object:
  10. file_object.write(response.content)
  11. if __name__ == '__main__':
  12. url_list = [
  13. 'https://www3.autoimg.cn/newsdfs/g26/M02/35/A9/120x90_0_autohomecar__ChsEe12AXQ6AOOH_AAFocMs8nzU621.jpg',
  14. 'https://www2.autoimg.cn/newsdfs/g30/M01/3C/E2/120x90_0_autohomecar__ChcCSV2BBICAUntfAADjJFd6800429.jpg',
  15. 'https://www3.autoimg.cn/newsdfs/g26/M0B/3C/65/120x90_0_autohomecar__ChcCP12BFCmAIO83AAGq7vK0sGY193.jpg'
  16. ]
  17. for item in url_list:
  18. download_image(item)

(2)协程方式(异步)

pip install aiohttp
  1. import aiohttp
  2. import asyncio
  3. INSTALL_AIOHTTP = """pip3 install aiohttp"""
  4. async def fetch(session, url):
  5. print("发送请求:", url)
  6. async with session.get(url, verify_ssl=False) as response:
  7. content = await response.content.read()
  8. file_name = url.rsplit('_')[-1]
  9. with open(file_name, mode='wb') as file_object:
  10. file_object.write(content)
  11. print('下载完成', url)
  12. async def main():
  13. async with aiohttp.ClientSession() as session:
  14. url_list = [
  15. 'https://www3.autoimg.cn/newsdfs/g26/M02/35/A9/120x90_0_autohomecar__ChsEe12AXQ6AOOH_AAFocMs8nzU621.jpg',
  16. 'https://www2.autoimg.cn/newsdfs/g30/M01/3C/E2/120x90_0_autohomecar__ChcCSV2BBICAUntfAADjJFd6800429.jpg',
  17. 'https://www3.autoimg.cn/newsdfs/g26/M0B/3C/65/120x90_0_autohomecar__ChcCP12BFCmAIO83AAGq7vK0sGY193.jpg'
  18. ]
  19. tasks = [asyncio.create_task(fetch(session, url)) for url in url_list]
  20. await asyncio.wait(tasks)
  21. if __name__ == '__main__':
  22. asyncio.run(main())

三、异步编程

3.1、事件循环

理解成为一个死循环 ,去检测并执行某些代码。

  1. # 伪代码
  2. 任务列表 = [ 任务1, 任务2, 任务3,... ]
  3. while True:
  4. 可执行的任务列表,已完成的任务列表 = 去任务列表中检查所有的任务,将'可执行''已完成'的任务返回
  5. for 就绪任务 in 可执行的任务列表:
  6. 执行已就绪的任务
  7. for 已完成的任务 in 已完成的任务列表:
  8. 在任务列表中移除 已完成的任务
  9. 如果 任务列表 中的任务都已完成,则终止循环
  1. import asyncio
  2. # 去生成或获取一个事件循环
  3. loop = asyncio.get_event_loop()
  4. # 将任务放到`任务列表`
  5. loop.run_until_complete(任务)

3.2、快速上手

协程函数,定义函数时候 async def 函数名

协程对象,执行 协程函数() 得到的协程对象。

  1. async def func():
  2. pass
  3. result = func() # 协程对象

注意:执行协程函数创建协程对象,函数内部代码不会执行。

如果想要运行协程函数内部代码,必须要将协程对象交给事件循环来处理。

  1. import asyncio
  2. async def func():
  3. print("快来搞我吧!")
  4. result = func()
  5. # loop = asyncio.get_event_loop()
  6. # loop.run_until_complete( result )
  7. asyncio.run(result) # python3.7

3.3、await

await + 可等待的对象(协程对象、Future、Task对象 -> IO等待)

示例1:

  1. import asyncio
  2. async def func():
  3. print("来玩呀")
  4. response = await asyncio.sleep(2)
  5. print("结束", response)
  6. asyncio.run(func())

示例2:

  1. import asyncio
  2. async def others():
  3. print("start")
  4. await asyncio.sleep(2)
  5. print('end')
  6. return '返回值'
  7. async def func():
  8. print("执行协程函数内部代码")
  9. # 遇到IO操作挂起当前协程(任务),等IO操作完成之后再继续往下执行。当前协程挂起时,事件循环可以去执行其他协程(任务)。
  10. response = await others()
  11. print("IO请求结束,结果为:", response)
  12. asyncio.run(func())

示例3:

  1. import asyncio
  2. async def others():
  3. print("start")
  4. await asyncio.sleep(2)
  5. print('end')
  6. return '返回值'
  7. async def func():
  8. print("执行协程函数内部代码")
  9. # 遇到IO操作挂起当前协程(任务),等IO操作完成之后再继续往下执行。当前协程挂起时,事件循环可以去执行其他协程(任务)。
  10. response1 = await others()
  11. print("IO请求结束,结果为:", response1)
  12. response2 = await others()
  13. print("IO请求结束,结果为:", response2)
  14. asyncio.run(func())

await就是等待对象的值得到结果之后再继续向下走,其实就是同步操作。

3.4、Task对象

Tasks用于并发调度协程,通过asyncio.create_task(协程对象)的方式创建Task对象,这样可以让协程加入事件循环中等待被调度执行。除了使用 asyncio.create_task() 函数以外,还可以用低层级的 loop.create_task()ensure_future() 函数。不建议手动实例化 Task 对象。

注意:asyncio.create_task() 函数在 Python 3.7 中被加入。在 Python 3.7 之前,可以改用低层级的 asyncio.ensure_future() 函数。

示例1:

  1. import asyncio
  2. async def func():
  3. print(1)
  4. await asyncio.sleep(2)
  5. print(2)
  6. return "返回值"
  7. async def main():
  8. print("main开始")
  9. # 创建Task对象,将当前执行func函数任务添加到事件循环。
  10. task1 = asyncio.create_task(func())
  11. # 创建Task对象,将当前执行func函数任务添加到事件循环。
  12. task2 = asyncio.create_task(func())
  13. print("main结束")
  14. # 当执行某协程遇到IO操作时,会自动化切换执行其他任务。
  15. # 此处的await是等待相对应的协程全都执行完毕并获取结果
  16. ret1 = await task1
  17. ret2 = await task2
  18. print(ret1, ret2)
  19. asyncio.run(main())

示例2:

  1. import asyncio
  2. async def func():
  3. print(1)
  4. await asyncio.sleep(2)
  5. print(2)
  6. return "返回值"
  7. async def main():
  8. print("main开始")
  9. task_list = [
  10. asyncio.create_task(func(), name='n1'),
  11. asyncio.create_task(func(), name='n2')
  12. ]
  13. print("main结束")
  14. done, pending = await asyncio.wait(task_list, timeout=None)
  15. print(done)
  16. asyncio.run(main())

示例3:

  1. import asyncio
  2. async def func():
  3. print(1)
  4. await asyncio.sleep(2)
  5. print(2)
  6. return "返回值"
  7. task_list = [
  8. func(),
  9. func(),
  10. ]
  11. done,pending = asyncio.run(asyncio.wait(task_list))
  12. print(done)

3.5、asyncio.Future对象

Task继承Future,Task对象内部await结果的处理基于Future对象来的。

示例1:

  1. import asyncio
  2. async def main():
  3. # 获取当前事件循环
  4. loop = asyncio.get_running_loop()
  5. # 创建一个任务(Future对象),这个任务什么都不干。
  6. fut = loop.create_future()
  7. # 等待任务最终结果(Future对象),没有结果则会一直等下去。
  8. await fut
  9. asyncio.run(main())

示例2:

  1. import asyncio
  2. async def set_after(fut):
  3. await asyncio.sleep(2)
  4. fut.set_result("666")
  5. async def main():
  6. # 获取当前事件循环
  7. loop = asyncio.get_running_loop()
  8. # 创建一个任务(Future对象),没绑定任何行为,则这个任务永远不知道什么时候结束。
  9. fut = loop.create_future()
  10. # 创建一个任务(Task对象),绑定了set_after函数,函数内部在2s之后,会给fut赋值。
  11. # 即手动设置future任务的最终结果,那么fut就可以结束了。
  12. await loop.create_task( set_after(fut) )
  13. # 等待 Future对象获取 最终结果,否则一直等下去
  14. data = await fut
  15. print(data)
  16. asyncio.run(main())

3.5、concurrent.futures.Future对象

使用线程池、进程池实现异步操作时用到的对象。

  1. import time
  2. from concurrent.futures import Future
  3. from concurrent.futures.thread import ThreadPoolExecutor
  4. from concurrent.futures.process import ProcessPoolExecutor
  5. def func(value):
  6. time.sleep(1)
  7. print(value)
  8. return 123
  9. # 创建线程池
  10. pool = ThreadPoolExecutor(max_workers=5)
  11. # 创建进程池
  12. # pool = ProcessPoolExecutor(max_workers=5)
  13. for i in range(10):
  14. fut = pool.submit(func, i)
  15. print(fut)

案例:asyncio + 不支持异步的模块

  1. import asyncio
  2. import requests
  3. async def download_image(url):
  4. # 发送网络请求,下载图片(遇到网络下载图片的IO请求,自动化切换到其他任务)
  5. print("开始下载:", url)
  6. loop = asyncio.get_event_loop()
  7. # requests模块默认不支持异步操作,所以就使用线程池来配合实现了。
  8. future = loop.run_in_executor(None, requests.get, url)
  9. response = await future
  10. print('下载完成')
  11. # 图片保存到本地文件
  12. file_name = url.rsplit('_')[-1]
  13. with open(file_name, mode='wb') as file_object:
  14. file_object.write(response.content)
  15. if __name__ == '__main__':
  16. url_list = [
  17. 'https://www3.autoimg.cn/newsdfs/g26/M02/35/A9/120x90_0_autohomecar__ChsEe12AXQ6AOOH_AAFocMs8nzU621.jpg',
  18. 'https://www2.autoimg.cn/newsdfs/g30/M01/3C/E2/120x90_0_autohomecar__ChcCSV2BBICAUntfAADjJFd6800429.jpg',
  19. 'https://www3.autoimg.cn/newsdfs/g26/M0B/3C/65/120x90_0_autohomecar__ChcCP12BFCmAIO83AAGq7vK0sGY193.jpg'
  20. ]
  21. tasks = [download_image(url) for url in url_list]
  22. loop = asyncio.get_event_loop()
  23. loop.run_until_complete(asyncio.wait(tasks))

3.7、异步迭代器

什么是异步迭代器

实现了 __aiter__()__anext__() 方法的对象。__anext__ 必须返回一个 awaitable 对象。async for 会处理异步迭代器的 __anext__() 方法所返回的可等待对象,直到其引发一个 StopAsyncIteration 异常。由 PEP 492 引入。

什么是异步可迭代对象?

可在 async for 语句中被使用的对象。必须通过它的 __aiter__() 方法返回一个 asynchronous iterator。由 PEP 492 引入。

  1. import asyncio
  2. class Reader(object):
  3. """ 自定义异步迭代器(同时也是异步可迭代对象) """
  4. def __init__(self):
  5. self.count = 0
  6. async def readline(self):
  7. # await asyncio.sleep(1)
  8. self.count += 1
  9. if self.count == 100:
  10. return None
  11. return self.count
  12. def __aiter__(self):
  13. return self
  14. async def __anext__(self):
  15. val = await self.readline()
  16. if val == None:
  17. raise StopAsyncIteration
  18. return val
  19. async def func():
  20. obj = Reader()
  21. async for item in obj:
  22. print(item)
  23. asyncio.run( func() )

3.8、异步上下文管理器

此种对象通过定义 __aenter__()__aexit__() 方法来对 async with 语句中的环境进行控制。由 PEP 492 引入。

  1. import asyncio
  2. class AsyncContextManager:
  3. def __init__(self):
  4. self.conn = conn
  5. async def do_something(self):
  6. # 异步操作数据库
  7. return 666
  8. async def __aenter__(self):
  9. # 异步链接数据库
  10. self.conn = await asyncio.sleep(1)
  11. return self
  12. async def __aexit__(self, exc_type, exc, tb):
  13. # 异步关闭数据库链接
  14. await asyncio.sleep(1)
  15. async def func():
  16. async with AsyncContextManager() as f:
  17. result = await f.do_something()
  18. print(result)
  19. asyncio.run( func() )

四、uvloop

是asyncio的事件循环的替代方案。事件循环 > 默认asyncio的事件循环。

pip install uvloop
  1. import asyncio
  2. import uvloop
  3. asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
  4. # 编写asyncio的代码,与之前写的代码一致。
  5. # 内部的事件循环自动化会变为uvloop
  6. asyncio.run(...)

注意:一个asgi -> uvicorn 内部使用的就是uvloop

五、实战案例

5.1、异步redis

在使用python代码操作redis时,链接/操作/断开都是网络IO。

案例1:

pip install aioredis
  1. import asyncio
  2. import aioredis
  3. async def execute(address, password):
  4. print("开始执行", address)
  5. # 网络IO操作:创建redis连接
  6. redis = await aioredis.create_redis(address, password=password)
  7. # 网络IO操作:在redis中设置哈希值car,内部在设三个键值对,即: redis = { car:{key1:1,key2:2,key3:3}}
  8. await redis.hmset_dict('car', key1=1, key2=2, key3=3)
  9. # 网络IO操作:去redis中获取值
  10. result = await redis.hgetall('car', encoding='utf-8')
  11. print(result)
  12. redis.close()
  13. # 网络IO操作:关闭redis连接
  14. await redis.wait_closed()
  15. print("结束", address)
  16. asyncio.run(execute('redis://127.0.0.1:6379', "123456"))

示例2:

  1. import asyncio
  2. import aioredis
  3. async def execute(address, password):
  4. print("开始执行", address)
  5. # 网络IO操作:先去连接 47.93.4.197:6379,遇到IO则自动切换任务,去连接47.93.4.198:6379
  6. redis = await aioredis.create_redis_pool(address, password=password)
  7. # 网络IO操作:遇到IO会自动切换任务
  8. await redis.hmset_dict('car', key1=1, key2=2, key3=3)
  9. # 网络IO操作:遇到IO会自动切换任务
  10. result = await redis.hgetall('car', encoding='utf-8')
  11. print(result)
  12. redis.close()
  13. # 网络IO操作:遇到IO会自动切换任务
  14. await redis.wait_closed()
  15. print("结束", address)
  16. task_list = [
  17. execute('redis://47.93.4.197:6379', "root!2345"),
  18. execute('redis://47.93.4.198:6379', "root!2345")
  19. ]
  20. asyncio.run(asyncio.wait(task_list))

5.2、异步MySQL

pip install aiomysql

示例1:

  1. import asyncio
  2. import aiomysql
  3. async def execute():
  4. # 网络IO操作:连接MySQL
  5. conn = await aiomysql.connect(host='127.0.0.1', port=3306, user='root', password='123', db='mysql', )
  6. # 网络IO操作:创建CURSOR
  7. cur = await conn.cursor()
  8. # 网络IO操作:执行SQL
  9. await cur.execute("SELECT Host,User FROM user")
  10. # 网络IO操作:获取SQL结果
  11. result = await cur.fetchall()
  12. print(result)
  13. # 网络IO操作:关闭链接
  14. await cur.close()
  15. conn.close()
  16. asyncio.run(execute())

示例2:

  1. import asyncio
  2. import aiomysql
  3. async def execute(host, password):
  4. print("开始", host)
  5. # 网络IO操作:先去连接 47.93.40.197,遇到IO则自动切换任务,去连接47.93.40.198:6379
  6. conn = await aiomysql.connect(host=host, port=3306, user='root', password=password, db='mysql')
  7. # 网络IO操作:遇到IO会自动切换任务
  8. cur = await conn.cursor()
  9. # 网络IO操作:遇到IO会自动切换任务
  10. await cur.execute("SELECT Host,User FROM user")
  11. # 网络IO操作:遇到IO会自动切换任务
  12. result = await cur.fetchall()
  13. print(result)
  14. # 网络IO操作:遇到IO会自动切换任务
  15. await cur.close()
  16. conn.close()
  17. print("结束", host)
  18. task_list = [
  19. execute('47.93.41.197', "root!2345"),
  20. execute('47.93.40.197', "root!2345")
  21. ]
  22. asyncio.run(asyncio.wait(task_list))

5.3、FastAPI框架

安装

pip install fastapi
pip install uvicorn (asgi内部基于uvloop)

示例: luffy.py

  1. import asyncio
  2. import uvicorn
  3. import aioredis
  4. from aioredis import Redis
  5. from fastapi import FastAPI
  6. app = FastAPI()
  7. # 创建一个redis连接池
  8. REDIS_POOL = aioredis.ConnectionsPool('redis://47.193.14.198:6379', password="root123", minsize=1, maxsize=10)
  9. @app.get("/")
  10. def index():
  11. """ 普通操作接口 """
  12. # 如果有两个用户并发访问此接口,用户A先执行结束并返回才能用户B执行,同步操作
  13. return {"message": "Hello World"}
  14. @app.get("/red")
  15. async def red():
  16. """ 异步操作接口 """
  17. print("请求来了")
  18. await asyncio.sleep(3)
  19. # 连接池获取一个连接
  20. conn = await REDIS_POOL.acquire()
  21. redis = Redis(conn)
  22. # 设置值
  23. await redis.hmset_dict('car', key1=1, key2=2, key3=3)
  24. # 读取值
  25. result = await redis.hgetall('car', encoding='utf-8')
  26. print(result)
  27. # 连接归还连接池
  28. REDIS_POOL.release(conn)
  29. return result
  30. if __name__ == '__main__':
  31. uvicorn.run("luffy:app", host="127.0.0.1", port=5000, log_level="info")

六、总结

最大的意义:通过一个线程利用其IO等待时间去做一些其他事情。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/73739
推荐阅读
相关标签
  

闽ICP备14008679号