import aiohttpimport asyncioasync def fetch(url): async with aiohttp.ClientSession() as session: async with session.get(url) as response: return await response.text()async def main(): html = await fetch("http://example.com") print(html)asyncio.run(main())