Created
February 22, 2022 16:05
-
-
Save k-zehnder/f64e98323b8640c730655088944bc827 to your computer and use it in GitHub Desktop.
This file contains 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 asyncio | |
import httpx | |
async def main(): | |
pokemon_url = 'https://pokeapi.co/api/v2/pokemon/151' | |
async with httpx.AsyncClient() as client: | |
resp = await client.get(pokemon_url) | |
pokemon = resp.json() | |
print(pokemon['name']) | |
asyncio.run(main()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment