cron-validator icon indicating copy to clipboard operation
cron-validator copied to clipboard

unix cron implementation in Python

Results 4 cron-validator issues
Sort by recently updated
recently updated
newest added

assert CronValidator.parse('* * * * 7', version=Version.EB) gives error but reference "The cron validator supports partially extended rules based on the Amazon EvenBridge rule set" to https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-cron-expressions.html says "Day-of-week =...

I want to run cron at every 5th minute past every hour from 11pm through 11am. And this is the schedule `*/5 0-11,23 * * *`. When I run this...

Hi, In the README, here: https://github.com/vcoder4c/cron-validator/blob/master/README.md#sample There is this bit of sample code for validating a cron expression: ``` from cron_validator import CronValidator assert CronValidator.parse('* * * * *') is...

## Steps to reproduce ``` import cron_validator cron_validator.CronScheduler("*/60 * * * *").time_for_execution() ``` Expected behaviour: we get True on minute zero, otherwise false Actual behaviour: ``` Traceback (most recent call...