Metadata-Version: 2.1
Name: igs-toolbox
Version: 1.3.4
Summary: A toolbox to check whether files follow a predefined schema.
Home-page: https://www.rki.de/DE/Content/Infekt/IGS/IGS_node.html
Author: IMS Developers
Author-email: IMS-Developers@rki.de
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jsonschema >=4.16.0
Requires-Dist: pandas
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# igs-toolbox

## Description
This Python package contains tools to check whether files follow predefined schemas of the IGS project.
Currently, only a JSON validator is implemented, but the idea is that it will be extended to more applications related to the IGS project in the future.

## Installation 

igs-toolbox is installable using pip.

```bash
pip install igs-toolbox
```

## Usage

All tools can be used directly through the commandline.

```bash
usage: jsonChecker [-h] -i INPUT 

optional arguments:
  -h, --help            show this help message and exit
  -i INPUT, --input INPUT
                        Filepath to json file.
```
