Files
changedetection.io/backend/dev-docker/sleep.py
Leigh Morresi ec3f34804f Initial commit
2021-01-27 12:39:46 +01:00

9 lines
122 B
Python

import time
import sys
while True:
# Wait for 5 seconds
print('To stderr.', file=sys.stderr)
time.sleep(2)