You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async with aiohttp.ClientSession(proxy="http://proxy.com", proxy_auth=proxy_auth) as session:
612
+
async with session.get("http://python.org") as resp:
613
+
print(resp.status)
614
+
608
615
Contrary to the ``requests`` library, it won't read environment
609
616
variables by default. But you can do so by passing
610
617
``trust_env=True`` into :class:`aiohttp.ClientSession`
0 commit comments