Files
wdyndns/dyndns/utils.py
Walter Oggioni d3a8d829cd
Some checks failed
CI / build (push) Failing after 32s
added Cloudflare API support
2025-03-31 03:59:26 +08:00

7 lines
225 B
Python

from urllib.request import urlopen, Request
def get_public_ip() -> str:
url = "http://v4.ipv6-test.com/api/myip.php"
request = Request(url)
with urlopen(request) as request:
return request.read().decode()