asyncio
是Python 3.4版本引入的标准库,直接内置了对异步IO的支持。html
asyncio
的编程模型就是一个消息循环。咱们从asyncio
模块中直接获取一个EventLoop
的引用,而后把须要执行的协程扔到EventLoop
中执行,就实现了异步IO。python
用asyncio
实现Hello world
代码以下:web
import asyncio @asyncio.coroutine def hello(): print("Hello world!") # 异步调用asyncio.sleep(1): r = yield from asyncio.sleep(1) print("Hello again!") # 获取EventLoop: loop = asyncio.get_event_loop() # 执行coroutine loop.run_until_complete(hello()) loop.close()
@asyncio.coroutine
把一个generator标记为coroutine类型,而后,咱们就把这个coroutine
扔到EventLoop
中执行。编程
hello()
会首先打印出Hello world!
,而后,yield from
语法可让咱们方便地调用另外一个generator
。因为asyncio.sleep()
也是一个coroutine
,因此线程不会等待asyncio.sleep()
,而是直接中断并执行下一个消息循环。当asyncio.sleep()
返回时,线程就能够从yield from
拿到返回值(此处是None
),而后接着执行下一行语句。服务器
把asyncio.sleep(1)
当作是一个耗时1秒的IO操做,在此期间,主线程并未等待,而是去执行EventLoop
中其余能够执行的coroutine
了,所以能够实现并发执行。网络
咱们用Task封装两个coroutine
试试:并发
import threading import asyncio @asyncio.coroutine def hello(): print('Hello world! (%s)' % threading.currentThread()) yield from asyncio.sleep(1) print('Hello again! (%s)' % threading.currentThread()) loop = asyncio.get_event_loop() tasks = [hello(), hello()] loop.run_until_complete(asyncio.wait(tasks)) loop.close()
观察执行过程:app
Hello world! (<_MainThread(MainThread, started 140735195337472)>) Hello world! (<_MainThread(MainThread, started 140735195337472)>) (暂停约1秒) Hello again! (<_MainThread(MainThread, started 140735195337472)>) Hello again! (<_MainThread(MainThread, started 140735195337472)>)
由打印的当前线程名称能够看出,两个coroutine
是由同一个线程并发执行的。框架
若是把asyncio.sleep()
换成真正的IO操做,则多个coroutine
就能够由一个线程并发执行。异步
咱们用asyncio
的异步网络链接来获取sina、sohu和163的网站首页:
import asyncio @asyncio.coroutine def wget(host): print('wget %s...' % host) connect = asyncio.open_connection(host, 80) reader, writer = yield from connect header = 'GET / HTTP/1.0\r\nHost: %s\r\n\r\n' % host writer.write(header.encode('utf-8')) yield from writer.drain() while True: line = yield from reader.readline() if line == b'\r\n': break print('%s header > %s' % (host, line.decode('utf-8').rstrip())) # Ignore the body, close the socket writer.close() loop = asyncio.get_event_loop() tasks = [wget(host) for host in ['www.sina.com.cn', 'www.sohu.com', 'www.163.com']] loop.run_until_complete(asyncio.wait(tasks)) loop.close()
执行结果以下:
wget www.sohu.com... wget www.sina.com.cn... wget www.163.com... (等待一段时间) (打印出sohu的header) www.sohu.com header > HTTP/1.1 200 OK www.sohu.com header > Content-Type: text/html ... (打印出sina的header) www.sina.com.cn header > HTTP/1.1 200 OK www.sina.com.cn header > Date: Wed, 20 May 2015 04:56:33 GMT ... (打印出163的header) www.163.com header > HTTP/1.0 302 Moved Temporarily www.163.com header > Server: Cdn Cache Server V2.0
可见3个链接由一个线程经过coroutine
并发完成。
asyncio
提供了完善的异步IO支持;
异步操做须要在coroutine
中经过yield from
完成;
多个coroutine
能够封装成一组Task而后并发执行。
用asyncio
提供的@asyncio.coroutine
能够把一个generator标记为coroutine类型,而后在coroutine内部用yield from
调用另外一个coroutine实现异步操做。
为了简化并更好地标识异步IO,从Python 3.5开始引入了新的语法async
和await
,可让coroutine的代码更简洁易读。
请注意,async
和await
是针对coroutine的新语法,要使用新的语法,只须要作两步简单的替换:
@asyncio.coroutine
替换为async
;yield from
替换为await
。让咱们对比一下上一节的代码:
@asyncio.coroutine def hello(): print("Hello world!") r = yield from asyncio.sleep(1) print("Hello again!")
用新语法从新编写以下:
async def hello(): print("Hello world!") r = await asyncio.sleep(1) print("Hello again!")
剩下的代码保持不变。
Python从3.5版本开始为asyncio
提供了async
和await
的新语法;
注意新语法只能用在Python 3.5以及后续版本,若是使用3.4版本,则仍需使用上一节的方案。
asyncio
能够实现单线程并发IO操做。若是仅用在客户端,发挥的威力不大。若是把asyncio
用在服务器端,例如Web服务器,因为HTTP链接就是IO操做,所以能够用单线程+coroutine
实现多用户的高并发支持。
asyncio
实现了TCP、UDP、SSL等协议,aiohttp
则是基于asyncio
实现的HTTP框架。
咱们先安装aiohttp
:
pip install aiohttp
而后编写一个HTTP服务器,分别处理如下URL:
/
- 首页返回b'<h1>Index</h1>'
;
/hello/{name}
- 根据URL参数返回文本hello, %s!
。
代码以下:
import asyncio from aiohttp import web async def index(request): await asyncio.sleep(0.5) return web.Response(body=b'<h1>Index</h1>') async def hello(request): await asyncio.sleep(0.5) text = '<h1>hello, %s!</h1>' % request.match_info['name'] return web.Response(body=text.encode('utf-8')) async def init(loop): app = web.Application(loop=loop) app.router.add_route('GET', '/', index) app.router.add_route('GET', '/hello/{name}', hello) srv = await loop.create_server(app.make_handler(), '127.0.0.1', 8000) print('Server started at http://127.0.0.1:8000...') return srv loop = asyncio.get_event_loop() loop.run_until_complete(init(loop)) loop.run_forever()
注意aiohttp
的初始化函数init()
也是一个coroutine
,loop.create_server()
则利用asyncio
建立TCP服务。