2025-06-16 13:33:31 +02:00

7 lines
141 B
Python

import subprocess
import time
while True:
process = subprocess.Popen(["python3", "revivetube.py"])
process.wait()
time.sleep(1)