schedule icon indicating copy to clipboard operation
schedule copied to clipboard

Python job scheduling for humans.

Results 119 schedule issues
Sort by recently updated
recently updated
newest added

I'm trying to install Schedule to my mac on a conda virtual environment (Python 3.7.4) using: conda install -c gomss-nowcast schedule. Gives me error: PackagesNotFoundError: The following packages are not...

question

Hello, would be great to run schedule random hours on specific days. like that: schedule.every(5).to(10).hours.monday.do(job)

enhancement

Hello, I am new to this library. While I am digging in the source codes for understanding the usage of this library, I cannot understand [this line][line1]. What is the...

question

add wait_next func, used to sleep current thread to next job that can run.

Thanks for the API. It is really simple and easy-to-use. We were using `schedule` module to trigger and run our periodic jobs. However, I was confused with the naming convention...

question

In https://github.com/dbader/schedule/issues/30#issuecomment-518045325 it was proposed to have an option to customize logging in a way that secret args can be hidden. I propose to add an example on how to...

contributor friendly

https://twitter.com/elbaschid/status/820729013987459072 https://gist.github.com/elbaschid/f54ab060c62103ad3747712a3e45680a We also need to discuss how schedule would work with asyncio in the long run.

Thie PR adds support for asyncio callbacks and schedulers

It seems that the package has not function to execute a task from time to time. Is there any pythonic method to achieve it? Like.. ```python import schedule def task():...

Is there a way to update a running job?. By updating I mean changing the parameters for the job to execute.