Metadata-Version: 2.1
Name: validations-engine
Version: 0.0.1
Summary: Engine for creating and running validation suites for general purposes
Home-page: https://github.com/quintoandar/validations-engine
Author: QuintoAndar
License: UNKNOWN
Keywords: python,validations,validations-engine
Platform: UNKNOWN
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.28.1)

# Validations Engine
_Engine for creating and running validation suites for general purposes_

[![Release](https://img.shields.io/github/v/release/quintoandar/validations-engine)]((https://pypi.org/project/validations-engine/))
![Python Version](https://img.shields.io/badge/python-3.7%20%7C%203.8-brightgreen.svg)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

| Source    | Downloads                                                                                                       | Page                                                 | Installation Command                       |
|-----------|-----------------------------------------------------------------------------------------------------------------|------------------------------------------------------|--------------------------------------------|
| **PyPi**  | [![PyPi Downloads](https://pepy.tech/badge/validations-engine)](https://pypi.org/project/validations-engine/) | [Link](https://pypi.org/project/validations-engine/)        | `pip install validations-engine `                  |

### Build status
| Develop                                                                     | Stable                                                                            | Documentation                                                                                                                                           | Sonar                                                                                                                                                                                                  |
|-----------------------------------------------------------------------------|-----------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| ![Test](https://github.com/quintoandar/validations-engine/workflows/Test/badge.svg) | ![Publish](https://github.com/quintoandar/validations-engine/workflows/Publish/badge.svg) | [![Documentation Status](https://readthedocs.org/projects/validations-engine/badge/?version=latest)](https://validations-engine.readthedocs.io/en/latest/?badge=latest) | [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=validations-engine&metric=alert_status)](https://sonarcloud.io/dashboard?id=validations-engine) |


This library supports Python version 3.7+.

To check library main features you can check [Validations Engine's Documentation](https://validations-engine.readthedocs.io/en/latest/), which is hosted by Read the Docs.

An example of how to use the library getting configurations:
```python
from validations_engine.validations_engine import my_lib

def foo(arg):
    return my_lib.awesome_function(arg)  # change me
```

## Requirements and Installation
The Validations Engine depends on **Python 3.7+**

[Python Package Index](https://pypi.org/project/validations-engine/) hosts reference to a pip-installable module of this library, using it is as straightforward as including it on your project's requirements.

```bash
pip install validations-engine
```

## License
[Apache License 2.0](https://github.com/quintoandar/validations-engine/blob/main/LICENSE)

## Contributing
All contributions are welcome! Feel free to open Pull Requests. Check the development and contributing **guidelines** 
described in [CONTRIBUTING.md](https://github.com/quintoandar/validations-engine/blob/main/CONTRIBUTING.md)

Made with :heart: by the **Data Engineering** team from [QuintoAndar](https://github.com/quintoandar/)


