在python里使用await关键字来等另外一个协程的实例


Posted in Python onMay 04, 2020

一个协程里可以启动另外一个协程,并等待它完成返回结果,采用await关键字,

例子如下:

import asyncio
 
async def outer():
  print('in outer')
  print('waiting for result1')
  result1 = await phase1()
  print('waiting for result2')
  result2 = await phase2(result1)
  return (result1, result2)
 
async def phase1():
  print('in phase1')
  return 'result1'
 
async def phase2(arg):
  print('in phase2')
  return 'result2 derived from {}'.format(arg)
 
event_loop = asyncio.get_event_loop()
try:
  return_value = event_loop.run_until_complete(outer())
  print('return value: {!r}'.format(return_value))
finally:
  event_loop.close()

输出结果如下:
in outer
waiting for result1
in phase1
waiting for result2
in phase2
return value: ('result1', 'result2 derived from result1')

await关键字添加了一个新的协程到循环里,而不需要明确地添加协程到这个事件循环里。

补充知识:python里使用Condition对象来唤醒指定数量的协程

在asyncio库里,定义Condition对象,它的行为与事件Event有点像,区别是事件是通知所有对象,Condition对象可以指定一定数量的协程被通知,它是通过函数notify()来实现的,如果参数里放2,就是通知两个协程,例子如下:

import asyncio
 
async def consumer(condition, n):
  with await condition:
    print('consumer {} is waiting'.format(n))
    await condition.wait()
    print('consumer {} triggered'.format(n))
  print('ending consumer {}'.format(n))
 
async def manipulate_condition(condition):
  print('starting manipulate_condition')
 
  # pause to let consumers start
  await asyncio.sleep(0.1)
 
  for i in range(1, 3):
    with await condition:
      print('notifying {} consumers'.format(i))
      condition.notify(n=i)
    await asyncio.sleep(0.1)
 
  with await condition:
    print('notifying remaining consumers')
    condition.notify_all()
 
  print('ending manipulate_condition')
 
async def main(loop):
  # Create a condition
  condition = asyncio.Condition()
 
  # Set up tasks watching the condition
  consumers = [
    consumer(condition, i)
    for i in range(5)
  ]
 
  # Schedule a task to manipulate the condition variable
  loop.create_task(manipulate_condition(condition))
 
  # Wait for the consumers to be done
  await asyncio.wait(consumers)
 
event_loop = asyncio.get_event_loop()
try:
  result = event_loop.run_until_complete(main(event_loop))
finally:
  event_loop.close()

结果输出如下:

starting manipulate_condition
consumer 2 is waiting
consumer 3 is waiting
consumer 4 is waiting
consumer 1 is waiting
consumer 0 is waiting
notifying 1 consumers
consumer 2 triggered
ending consumer 2
notifying 2 consumers
consumer 3 triggered
ending consumer 3
consumer 4 triggered
ending consumer 4
notifying remaining consumers
ending manipulate_condition
consumer 1 triggered
ending consumer 1
consumer 0 triggered
ending consumer 0

以上这篇在python里使用await关键字来等另外一个协程的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
跟老齐学Python之做一个小游戏
Sep 28 Python
python2.7读取文件夹下所有文件名称及内容的方法
Feb 24 Python
Python根据指定日期计算后n天,前n天是哪一天的方法
May 29 Python
python实现Dijkstra算法的最短路径问题
Jun 21 Python
Python中判断子串存在的性能比较及分析总结
Jun 23 Python
Python用Try语句捕获异常的实例方法
Jun 26 Python
jupyter 实现notebook中显示完整的行和列
Apr 09 Python
利用4行Python代码监测每一行程序的运行时间和空间消耗
Apr 22 Python
python smtplib发送多个email联系人的实现
Oct 09 Python
python 写一个文件分发小程序
Dec 05 Python
聊聊Python String型列表求最值的问题
Jan 18 Python
使用python生成大量数据写入es数据库并查询操作(2)
Sep 23 Python
python 异步async库的使用说明
May 04 #Python
Python插件机制实现详解
May 04 #Python
python3+selenium获取页面加载的所有静态资源文件链接操作
May 04 #Python
解决IDEA 的 plugins 搜不到任何的插件问题
May 04 #Python
python3 sleep 延时秒 毫秒实例
May 04 #Python
Python并发concurrent.futures和asyncio实例
May 04 #Python
Python 中由 yield 实现异步操作
May 04 #Python
You might like
什么是PHP文件?如何打开PHP文件?
2017/06/27 PHP
PHP7使用ODBC连接SQL Server2008 R2数据库示例【基于thinkPHP5.1框架】
2019/05/06 PHP
php集成开发环境详解
2019/09/24 PHP
js检测判断日期大于多少天的方法
2015/05/04 Javascript
通过隐藏iframe实现无刷新上传文件操作
2016/03/16 Javascript
Vuejs第七篇之Vuejs过渡动画案例全面解析
2016/09/05 Javascript
详解axios 全攻略之基本介绍与使用(GET 与 POST)
2017/09/15 Javascript
Node.js 使用递归实现遍历文件夹中所有文件
2017/09/18 Javascript
JavaScript设计模式之工厂模式和抽象工厂模式定义与用法分析
2018/07/26 Javascript
vue-for循环嵌套操作示例
2019/01/28 Javascript
JS实现动态无缝轮播
2020/01/11 Javascript
vue cli3适配所有端方案的实现
2020/04/13 Javascript
vue2.0 watch里面的 deep和immediate用法说明
2020/10/30 Javascript
javascript实现放大镜功能
2020/12/09 Javascript
python基础教程之元组操作使用详解
2014/03/25 Python
python爬虫使用cookie登录详解
2017/12/27 Python
pycharm无法导入本地模块的解决方式
2020/02/12 Python
Python新手学习装饰器
2020/06/04 Python
python 中关于pycharm选择运行环境的问题
2020/10/31 Python
python使用requests库爬取拉勾网招聘信息的实现
2020/11/20 Python
详解BeautifulSoup获取特定标签下内容的方法
2020/12/07 Python
Python的logging模块基本用法
2020/12/24 Python
Flask中jinja2的继承实现方法及实例
2021/03/03 Python
基于CSS3的animation属性实现微信拍一拍动画效果
2020/06/22 HTML / CSS
澳大利亚票务和娱乐市场领导者:Ticketmaster
2017/03/03 全球购物
改变生活的男士内衣:SAXX Underwear
2019/08/28 全球购物
华为c/c++笔试题
2016/01/25 面试题
致长跑运动员加油稿
2014/02/20 职场文书
服装设计师职业生涯规划范文
2014/02/28 职场文书
第一批党的群众路线教育实践活动工作总结
2014/03/03 职场文书
地震捐款倡议书
2014/08/29 职场文书
党员反腐倡廉学习心得体会
2015/08/15 职场文书
中小学教师继续教育心得体会
2016/01/19 职场文书
施工安全责任协议书
2016/03/23 职场文书
基于Python实现的购物商城管理系统
2021/04/27 Python
Python中json.dumps()函数的使用解析
2021/05/17 Python