-
Notifications
You must be signed in to change notification settings - Fork 168
Closed
Labels
enhancementIssue/PR: A new featureIssue/PR: A new featureoutdatedIssue/PR: Open for more than 3 monthsIssue/PR: Open for more than 3 months
Description
This is another nice-to-have: a crontab(5) validator.
Some challenges: crontab(5) has a standard minimal language, but lots of cron implementations provide extensions like @hourly, as well as custom field values.
If third party dependencies aren't an issue, both crontab and croniter provide validation methods:
from crontab import CronSlices
CronSlices.is_valid("* * * * *")import croniter
croniter.is_valid("* * * * *")It looks like the former supports more extensions than the latter.
dmitvitalii
Metadata
Metadata
Assignees
Labels
enhancementIssue/PR: A new featureIssue/PR: A new featureoutdatedIssue/PR: Open for more than 3 monthsIssue/PR: Open for more than 3 months