httpxとは
- async対応のrequests
- interfaceがrequestsと似ている
- requestsのバグを踏んだときやasyncで動かしたいときなどが適応例
同期モードの使用例
proxies = {"https://": "http://USERNAME:PASSWORD@" + random.choice(L)}
with httpx.Client(proxies=proxies) as client:
r = client.get(url, headers=headers, allow_redirects=False, timeout=10.0)
html = r.text