Ai
1 Star 1 Fork 0

pengqing/python-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.py 426 Bytes
一键复制 编辑 原始数据 按行查看 历史
熊小鹏 提交于 2023-03-16 17:50 +08:00 . fead: add openai chat gpt 3.5 root
import logging
import os.path
import yaml
config = {}
def load_config():
global config
if not os.path.exists("config.yml"):
raise Exception('配置文件不存在,请根据config-template.yml模板创建config.yml文件')
with open('config.yml', 'r') as f:
config = yaml.load(f, Loader=yaml.FullLoader)
logging.info("[INIT] load config: {}".format(config))
def conf():
return config
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xiongxiaopeng/python-web.git
git@gitee.com:xiongxiaopeng/python-web.git
xiongxiaopeng
python-web
python-web
master

搜索帮助