I'm playing with the python scheduler but I haven't found a way to randomly schedule Instapy within a given hour.
With the following code the bot will start always at 6:35.
schedule.every().day.at("6:35").do(job)
Is there a way to randomize the minutes so that the scheduler will trigger at 6 between 6:_30_ and 6:_40_?
Just found the solution...
schedule.every().day.at("6:" + str(random.randint(30,40))).do(worker)
Most helpful comment
Just found the solution...
schedule.every().day.at("6:" + str(random.randint(30,40))).do(worker)