Thursday, March 6, 2025

Script to automatically run another script every 5 seconds

# Script to automatically run another script every 5 seconds


import subprocess, time


while True:

    subprocess.run(["python", "Just.py"])

    time.sleep(5)


No comments:

Post a Comment