Created
August 20, 2020 12:05
-
-
Save tomchristie/dba1564603d27cbe4ab3b9255bcb28da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import httpx | |
import asyncio | |
async def main(): | |
async with httpx.AsyncClient() as client: | |
r = await client.get("https://login.microsoftonline.com/") | |
print(r) | |
asyncio.run(main(), debug=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment