摘要: #coding:utf-8 import time,asyncio a=time.time() id=1 async def hello(id,semaphore): async with semaphore: await asyncio.sleep(1) print('working id:'+str(id)) async def run(): ... 阅读全文
posted @ 2018-11-25 11:16 CrossPython 阅读(1862) 评论(0) 推荐(0) 编辑
摘要: https://my.oschina.net/backbye/blog/1919486 asyncio 提供了两个给运行中的事件循环(loop) 添加 事件的方法 call_soon_threadsafe() 、run_coroutine_threadsafe() 因为我们一般的场景中会另起一个线程 阅读全文
posted @ 2018-11-25 10:33 CrossPython 阅读(1095) 评论(0) 推荐(0) 编辑