crontabs icon indicating copy to clipboard operation
crontabs copied to clipboard

:alarm_clock: A cron-like utility for Python

Results 3 crontabs issues
Sort by recently updated
recently updated
newest added

hi, robdmc. I really appreciate your work. I found crontabs yesterday, but I couldn't get 'staring()' method working. I digged a little and found that changes in the latest commit...

This isn't important at all but I happened to notice it as I was reading the README.

``` Cron().schedule( # Turn off logging for job that runs every five seconds Tab(name='first_job', verbose=True).every( seconds=5).run(my_job, 'first', seconds=5), Tab(name='second_job', verbose=True).every( seconds=15).run(my_job, 'second', seconds=15), ).go() ``` as shown, ``` 2022-11-16 12:13:40,003...