mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 12:05:54 +00:00
9 lines
290 B
Python
9 lines
290 B
Python
import aiohttp
|
|
|
|
async def get_myip() -> str:
|
|
try:
|
|
async with aiohttp.ClientSession() as session:
|
|
async with session.get("https://ip.useragentinfo.com/myip") as response:
|
|
return await response.text()
|
|
except Exception as e:
|
|
return '0.0.0.0' |