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