#Check if now is before or after 8am: now = datetime.datetime.now() today8am = now.replace(hour=8, minute=0, second=0, microsecond=0) #Perform the checks: if (now < today8am): ... if (now == today8am): ...