Metadata-Version: 2.1
Name: aws-ssm-devlibx
Version: 0.0.7
Summary: Python DSL for setting up Flask app CDC
Home-page: https://github.com/devlibx/aws-ssm-py
Author: devlibx
Author-email: devlibxgithub@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

This is a helper module to allow you to capture all the request/response which comes to your Flask app.

```shell
pip install aws-ssm-devlibx
```

### How to use

```python
# Set env vale "SERVICE" and "ENV"

# Set 2 env variable ENV and Service
# We will pick all SSM with path "/conf/{SERVICE}/{ENV}/v1"
from aws_ssm import ssm

ssm = ssm.SSM()
ssm.setup_env_from_ssm()
```

It will push all env variable in "/tmp/aws_ssm_env_devlibx" file

### Debug
set ```export SSM_DEBUG=true``` to print SSM in logs

