Metadata-Version: 2.4
Name: flask-redis-constance
Version: 0.1.0
Summary: For use Dynamic settings with Flask
Author-email: Lionel VOIRIN <nels885@protonmail.com>
Project-URL: Homepage, https://github.com/Nels885/flask-redis-constance
Project-URL: Bug Tracker, https://github.com/Nels885/flask-redis-constance/issues
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: redis
Requires-Dist: WTForms>=3.0.1
Dynamic: license-file

# Flask Constance

[![CircleCI](https://circleci.com/gh/Nels885/flask-redis-constance.svg?style=svg)](https://circleci.com/gh/Nels885/flask-redis-constance)


This package is inspired by the django-constance package which you can find with the link below.

https://django-constance.readthedocs.io/en/latest/


## Instructions

1. Install:

```
pip install flask-redis-constance
```

2. Example of use:

```python
from constance import config
```

3. Config in the settings.py file

```python
CONSTANCE_REDIS_CONNECTION = "redis://<URL_SERVER>:<PORT>/<DB>"
```
