摘要: import aiohttp import asyncio async def fetch(session, url, data): async with session.post(url, json=data) as response: return await response.text() a 阅读全文
posted @ 2024-06-08 10:24 西北逍遥 阅读(4) 评论(0) 推荐(0) 编辑