# Script to automatically run another script every 5 seconds
import subprocess, time
while True:
subprocess.run(["python", "Just.py"])
time.sleep(5)