import asyncio import aiohttp async def get_cards(url): async with aiohttp.ClientSession() as session: async with session.get(url) as resp: data = await ...
確定! 回上一頁