write a function get_open_places(search_datetime) which takes a Python datetime object as input and returns a list of places that are open on that date and time code example
Example: 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