1 2 3 4 5 6
import aiohttp async def fetch_external_data(url): async with aiohttp.ClientSession() as session: async with session.get(url) as response: return await response.json()