Python编程:协程async和await
【摘要】 Python 3.5
把@asyncio.coroutine替换为async;
把yield from替换为await12
用asyncio提供的@asyncio.coroutine可以把一个generator标记为coroutine类型,然后在coroutine内部用yield from调用另一个coroutine实现异步操作。
以下两种写法等价
@async...
Python 3.5
把@asyncio.coroutine替换为async;
把yield from替换为await
- 1
- 2
用asyncio提供的@asyncio.coroutine可以把一个generator标记为coroutine类型,然后在coroutine内部用yield from调用另一个coroutine实现异步操作。
以下两种写法等价
@asyncio.coroutine
def hello(): print("Hello world!") r = yield from asyncio.sleep(1) print("Hello again!")
- 1
- 2
- 3
- 4
- 5
python3.5
async def hello(): print("Hello world!") r = await asyncio.sleep(1) print("Hello again!")
- 1
- 2
- 3
- 4
协程示例
import asyncio
import time
now = lambda : time.time()
async def hello(): print("hello") await asyncio.sleep(2) return "done"
start = now()
# 协程对象
h1 = hello()
h2 = hello()
h3 = hello()
# 创建一个事件loop
loop = asyncio.get_event_loop()
# 任务(task)对象
tasks = [ asyncio.ensure_future(h1), asyncio.ensure_future(h2), asyncio.ensure_future(h3),
]
# 将协程加入到事件循环loop
loop.run_until_complete(asyncio.wait(tasks))
for task in tasks: print(task.result())
print(now()-start)
"""
hello
hello
hello
done
done
done
2.005011796951294
"""
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
参考
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/80762698
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)