Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save k-zehnder/f64e98323b8640c730655088944bc827 to your computer and use it in GitHub Desktop.
Save k-zehnder/f64e98323b8640c730655088944bc827 to your computer and use it in GitHub Desktop.
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