add comments

This commit is contained in:
2024-02-09 14:40:10 +01:00
parent 512a538a1e
commit d0d9e2623d

View File

@@ -2,13 +2,15 @@ from os.path import exists
import requests
from time import sleep
# bucle infinito
while True:
# Si está online
req = requests.get("http://ipinfo.io/ip")
while int(req.status_code) != 200:
sleep(60)
req = requests.get("http://ipinfo.io/ip")
ip = req.text
# existe archivo con la antigua ip
file_exists = exists("old_ip.txt")
if not file_exists: