Skip to content

Instantly share code, notes, and snippets.

python:

import aiohttp
import asyncio

async def main():
    async with aiohttp.ClientSession() as session:
        pokemon_url = 'https://pokeapi.co/api/v2/pokemon/151'
 async with session.get(pokemon_url) as resp: