def fetch(session, url, proxy=None): with aiohttp.Timeout(10): # http://127.0.0.1:8123 async with session.get(url, proxy=proxy) as response: return await response.text()