Metadata-Version: 2.1
Name: ezconfig-client
Version: 0.7
Summary: ezconfig client
Home-page: https://github.com/riichg5/ezconfig_client
Author: RiichTT
Author-email: tolibo@hotmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests (>=2.22.0)
Requires-Dist: retrying (>=1.3.4)

# EZConfig 客户端程序

## 使用方法

```text
pip install ezconfig-client
```

传入自定义参数，获取最新配置

```python
from ezconfig_client import loader
res = loader.get_latest_config_by_params("DEV", "app_id", "secret", "https://xxxx.xxx.xxx")
print(res)
```

从环境变量中获取参数，从而获取配置的方法

```python
from ezconfig_client import loader
res = loader.get_latest_config()
print(res)
```

使用前需要设置环境变量

| 环境变量 | 说明 |
| --- | --- |
| EZCONFIG_ENV | 环境变量 |
| EZCONFIG_APPID | 应用ID |
| EZCONFIG_SECRET | 应用密钥 |
| EZCONFIG_HOST | EZConfig服务地址 |


环境依赖：

```text
requests>=2.22.0
retrying>=1.3.4
```

**测试参考代码**

EZCONFIG_ENV=DEV EZCONFIG_APPID=xxx.xx.xxx EZCONFIG_SECRET=xxxxxxx EZCONFIG_HOST=https://xxxx.xx python test/test.py

## 版本说明

| 版本  | 变更                                                        |
|-----|-----------------------------------------------------------|
| 0.4 | 降低requests版本，修改bug                                        |
| 0.5 | 增加访问错误重试机制，请求超时30秒，失败重试3次                                 |
| 0.6 | 新增get_latest_config_by_params方法，传自定义参数获取最新配置，而不是走环境变量获取参数 |
| 0.7 | 去掉库里面的打印信息                                                |

