摘要: 1 介绍 ~ 见官方文档 或tonado 使用 2 协程 2.0 异步HTTP请求示例代码 from tornado.httpclient import AsyncHTTPClient async def asynchronous_fetch(url): http_client = AsyncHTT 阅读全文
posted @ 2024-01-22 13:58 tslam 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 发起HTTP请求后,程序不会立即阻塞等待响应返回, 而是继续执行后续的代码 ,同时允许其他任务或请求并发执行; 当服务器响应返回时, 程序会接收到响应并处理 阅读全文
posted @ 2024-01-22 13:43 tslam 阅读(21) 评论(0) 推荐(0) 编辑