mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-12 02:55:43 +00:00
9 lines
147 B
Python
9 lines
147 B
Python
import time
|
|
import sys
|
|
|
|
print ("Sleep loop, you should run your script from the console")
|
|
|
|
while True:
|
|
# Wait for 5 seconds
|
|
|
|
time.sleep(2) |