Python Scheduler Cron Style
Description
Python task scheduler cron style automation example.
Python Scheduler Cron Style.py
import schedule,time
def job():
print('Running task')
schedule.every(5).seconds.do(job)
while True:
schedule.run_pending()
time.sleep(1)
Comments (0)
Add CommentNo comments yet. Be the first to comment!