Metadata-Version: 2.1
Name: confutilPPP
Version: 1.2.0
Summary: A simple configuration file tool
Home-page: https://github.com/Aurorax-own/confutilPPP
Author: Aurorax-own
Author-email: 15047150695@163.com
Project-URL: Source, https://github.com/Aurorax-own/confutilPPP
Project-URL: Tracker, https://github.com/Aurorax-own/confutilPPP/issues
Description-Content-Type: text/markdown
Requires-Dist: PyYAML ==6.0.1
Requires-Dist: logPPP ==1.1.2

# confutilPPP

## 1.安装

```
pip install confutilPPP
```

## 2.导入并使用

```
import confutilPPP

def test():
    # _object : dict, 包含配置对象
    # _filename : str, 配置文件名 默认为 config
    # return : dict, 配置字典
    # 首次当前位置生成 *.yml 文件，之后直接读取
    # *.yaml也可用
    CONFIG = {
        'test': 'test'
    }
    conf = confutilPPP.check_config(_object=CONFIG, _filename='config')
    print(conf)
```

