3. asyncio
上面提到过,asyncio
是 Python 3.4 中新增的模块,它提供了一种机制,使得你可以使用协程、IO 复用在单线程环境中编写并发模型。
asyncio
主要包含以下功能:
- 具有特定系统实现的事件循环(event loop)
- 数据通讯和协议抽象(类似 Twisted)
- TCP、UDP、SSL、子进程管道、延迟调用
-
Feature
类 -
yield from
支持 - 同步支持
- 提向线程池转移作业的接口
3.1 与async/await区别
asyncio
是 Python 3.4 引入的支持异步 IO 的标准库,采用yield
语法,也就是说在 3.4 版本中,应该按照下面示例这样使用: ```python import asyncio
@asyncio.coroutine def hello(): print(“Hello world!”) r = yield from asyncio.sleep(1) print(“Hello again!”)
`async`/`await` 是 Python 3.5 引入的简化代码的新语法,是 Python 3.3 中 `yield from` 和 Python 3.4 中 `asyncio` 结合起来产生的新语法。在 Python 3.5 以后 `async` 代替了 `@asyncio.coroutine`,`await` 代替了 `yield from`,且不需要导入 `asyncio` 模块,那么上面代码可以改写为:
```python
async def hello():
print("Hello world!")
r = await asyncio.sleep(1)
print("Hello again!"
上面代码中,async
用来宣告 hello
函数具有异步功能,await
则用来标记协程切换暂停和继续的点。