aio request 源码
主动请求 该库简化了微服务之间的交互: 允许使用各种策略发送请求 传播请求的截止日期和优先级 公开客户端/服务器指标 例子: import aiohttp import aio_request async with aiohttp . ClientSession () as client_session : client = aio_request . setup ( transport = aio_request . AioHttpTransport ( client_session ), endpoint = "http://endpoint:8080/" , ) response_ctx = client . request ( aio_request . get ( "thing" ), d
用户评论