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!”)

  1. `async`/`await` Python 3.5 引入的简化代码的新语法,是 Python 3.3 `yield from` Python 3.4 `asyncio` 结合起来产生的新语法。在 Python 3.5 以后 `async` 代替了 `@asyncio.coroutine``await` 代替了 `yield from`,且不需要导入 `asyncio` 模块,那么上面代码可以改写为:
  2. ```python
  3. async def hello():
  4. print("Hello world!")
  5. r = await asyncio.sleep(1)
  6. print("Hello again!"

上面代码中,async 用来宣告 hello 函数具有异步功能,await 则用来标记协程切换暂停和继续的点。

3.2 asyncio事件循环

3.3 async / await

3.4 concurrent的Feature对象

3.5 异步迭代器

3.6 异步上下文管理

3.7 异步与非异步模块混合