Answers for "python run things at certain datetimes"

0

python run things at certain datetimes

import datetime as DT
import time

while True:
    now = DT.datetime.now()
    target = DT.datetime.combine(DT.date.today(), DT.time(hour=8))
    if target < now:
        target += DT.timedelta(days=1)

    time.sleep((target-now).total_seconds())
    # do something
Posted by: Guest on April-05-2020

Code answers related to "python run things at certain datetimes"

Python Answers by Framework

Browse Popular Code Answers by Language