mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-12 19:16:40 +00:00
9 lines
122 B
Python
9 lines
122 B
Python
import time
|
|
import sys
|
|
|
|
|
|
while True:
|
|
# Wait for 5 seconds
|
|
print('To stderr.', file=sys.stderr)
|
|
|
|
time.sleep(2) |