You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
347 B
9 lines
347 B
import subprocess |
|
import requests |
|
from time import sleep |
|
|
|
print("Nuvarande ip:", requests.get("https://api.ipify.org").text, '\nStartar om modem...') |
|
sleep(5) |
|
subprocess.run(['sudo', 'uhubctl', '-l', '1-1', '-a', 'cycle', '-d', '5', '-p', '3']) |
|
sleep(400) |
|
print("Nuvarande ip:", requests.get("https://api.ipify.org").text, '\nStartar om modem...') |