Files
LangBot/pkg/utils/ip.py
2025-05-10 18:04:58 +08:00

11 lines
326 B
Python

import aiohttp
async def get_myip() -> str:
try:
async with aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(total=10)) as session:
async with session.get('https://ip.useragentinfo.com/myip') as response:
return await response.text()
except Exception:
return '0.0.0.0'