Metadata-Version: 2.1
Name: cron_expression_generator
Version: 0.0.1
Summary: Generates cron expression for cron job scheduling
Author-email: Shadrach Oforkansi <oforkansi.shadrach@gmail.com>
Project-URL: Homepage, https://github.com/o4codes/cron_expression_generator
Project-URL: Issues, https://github.com/o4codes/cron_expression_generator/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Cron Expression Generator

## Description

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.

## Usage

```python
from cron_expression_generator import generator

cron_expression = str(
    generator.CronExpressionGenerator()
        .minutes(5, every=True)
)

# cron_expression = "* */5 * * * *"
```

## Contributions

1. Create a fork of the project
2. Clone the forked project
3. Install dependencies with ```pip install -r requirements.txt```
4. Setup pre-commit hooks with ```precommit install```
5. Make code changes
6. Push changes
7. Make a PR to the dev branch
8. Awaiting your contributions
