Cron Expression Generator is a python package which helps to generator cron expressions that can be used to schedule the frquency at which cron jobs run.
from cron_expression_generator import generator
cron_expression = str(
generator.CronExpressionGenerator()
.minutes(5, every=True)
)
# cron_expression = "* */5 * * * *"- Create a fork of the project
- Clone the forked project
- Install dependencies with
pip install -r requirements.txt - Setup pre-commit hooks with
precommit install - Make code changes
- Push changes
- Make a PR to the dev branch
- Awaiting your contributions