优化圆角样式

This commit is contained in:
2024-05-25 12:09:54 +08:00
parent 1ccf94883a
commit c171873fa6
10 changed files with 158 additions and 17 deletions

View File

@ -0,0 +1,15 @@
from aiohttp import ClientSession
async def simple_get(url: str) -> str:
"""
简单异步get请求
Args:
url:
Returns:
"""
async with ClientSession() as session:
async with session.get(url) as resp:
return await resp.text()