#!/usr/bin/python3
import os
from time import sleep
while True:
    code = os.system("python /home/swee/sweebot.py")
    print("Exit code: " + str(code))
    sleep(5)