Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #run #datetimes
ADD COMMENT
Topic
Name
3+6 =