Metadata-Version: 2.1
Name: connect-reports-core
Version: 23.0.6
Summary: Connect Reports Core
Home-page: https://connect.cloudblue.com
License: Apache-2.0
Author: CloudBlue LLC
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Dist: Jinja2 (>=2.11.3,<3.0.0)
Requires-Dist: WeasyPrint (>=52.2,<53.0)
Requires-Dist: jsonschema (>=3.2.0,<4.0.0)
Requires-Dist: lxml (>=4.6.2,<5.0.0)
Requires-Dist: openpyxl (>=2.5.14)
Requires-Dist: pytz (>=2021.1,<2022.0)
Project-URL: Repository, https://github.com/cloudblue/connect-reports-core
Description-Content-Type: text/markdown

# Connect Reports Core

![pyversions](https://img.shields.io/pypi/pyversions/connect-reports-core.svg) [![PyPi Status](https://img.shields.io/pypi/v/connect-reports-core.svg)](https://pypi.org/project/connect-reports-core/) [![Build Connect Reports Core](https://github.com/cloudblue/connect-reports-core/actions/workflows/build.yml/badge.svg)](https://github.com/cloudblue/connect-reports-core/actions/workflows/build.yml) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=connect-reports-core&metric=alert_status)](https://sonarcloud.io/dashboard?id=connect-reports-core) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=connect-reports-core&metric=coverage)](https://sonarcloud.io/dashboard?id=connect-reports-core) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=connect-reports-core&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=connect-reports-core)

## Introduction

`Connect Reports Core` is the kernel package for handling reports on CloudBlue Connect Ecosystem. 
This library is reponsible for validation of reports definition, choosing of renderer for parsing process and writing results of reports execution.


## Install

`Connect Reports Core` requires python 3.8 or later and has the following dependencies:

* openpyxl>=2.5.14
* WeasyPrint>=52.2
* Jinja2>=2.11.3
* jsonschema<=3.2.0
* pytz>=2021.1
* lxml>=4.6.2

`Connect Reports Core` can be installed from [pypi.org](https://pypi.org/project/connect-reports-core/) using pip:

```
$ pip install connect-reports-core
```

## Testing

On MacOs:
* Install system dependencies
```commandline
brew install py3cairo pango
```
* Create virtualenv
* Install project dependencies
```commandline
pip install poetry
poetry update
```
* Run tests
```commandline
poetry run pytest
```


## License

``Connect Reports Core`` is released under the [Apache License Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).

