turdbot/1.2.5/test

11 lines
170 B
Plaintext
Raw Normal View History

2022-10-10 18:22:20 -06:00
import schedule
import time
def test():
print("deez")
schedule.every(1).minutes.do(test)
while 1 == 1:
print("joe")
time.sleep(5)
schedule.run_pending()