I have figured out how to use schedule to repeat a job at the top of every minute:
schedule.every().minute.at(":00").do(job)
But I can't figure out how to combine it with other schedule functions to start at a certain time (9:30am EST) and stop at a certain time (10:00am EST).