mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 08:47:23 +08:00
16 lines
280 B
Python
16 lines
280 B
Python
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()
|