session = aiohttp.ClientSession() async def fetch(session, url): while True: try: async with session.get(url) as response: assert response.status == 200 ...
確定! 回上一頁