码迷,mamicode.com
首页 > Web开发 > 详细

httpx

时间:2020-04-18 10:11:56      阅读:139      评论:0      收藏:0      [点我收藏+]

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

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

>>> import httpx
# 同步
>>> r = httpx.get(‘https://www.example.org/‘)
>>> r
<Response [200 OK]>
>>> r.status_code
# 异步
>>> async with httpx.AsyncClient() as client:
>>>     r = await client.get(‘https://www.example.org/‘)
>>> r
<Response [200 OK]>

  

httpx

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

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!