httpx

2021-03-21 10:24

阅读:405

标签:异步请求   imp   https   wait   status   轻松   code   res   syn   

使用简单方便,轻松实现异步请求的 HTTP 客户端

>>> import httpx
# 同步
>>> r = httpx.get(‘https://www.example.org/‘)
>>> r

>>> r.status_code
# 异步
>>> async with httpx.AsyncClient() as client:
>>>     r = await client.get(‘https://www.example.org/‘)
>>> r

  

httpx

标签:异步请求   imp   https   wait   status   轻松   code   res   syn   

原文地址:https://www.cnblogs.com/yzg-14/p/12723844.html


评论


亲,登录后才可以留言!