摘要: 本文参考Python官方文档:https://docs.python.org/zh-cn/3.8/library/asyncio-stream.html 本文参考Python官方文档针对官方文档示例进行解析,解析不完整只为了便于理解 流 流是用于处理网络连接的高级async/await-ready原 阅读全文
posted @ 2021-10-30 17:12 minseo 阅读(4651) 评论(0) 推荐(0) 编辑
摘要: async/await 用asyncio提供的@asyncio.coroutine可以把一个generator标记为coroutine类型,然后在coroutine内部用yield from调用另一个coroutine实现异步操作。 为了简化并更好地标识异步IO,从Python 3.5开始引入了新的 阅读全文
posted @ 2021-10-30 13:46 minseo 阅读(123) 评论(0) 推荐(0) 编辑