The schedule library allows you to schedule jobs at specific times of the day. For example:
schedule.every().day.at("10:30").do(job)
However its documentation doesn't mention the time reference it uses.
Is it based on UTC time?
Or is it based on the time zone of the server that runs my python script?