forked from bot/app
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()
|