### DB Util: Check Index Limit

Check in an entire database the status of each autoincrement index to make sure
the field size is not going to reach its limit anytime soon. At the moment,
the threshold is set to 80.

Requirements:

* Python 3

#### Installation

```bash
$ pyvenv env
$ . env/bin/activate
$ pip install -r requirements.txt
$ export ENGINE_DSN=mysql+pymysql://<user>:<password>@<ip>/<db>
```

#### Run

Default:

```python
$ python runner.py
```

Need CVS?
```python
$ python runner.py --csv
```
