1 Star 2 Fork 1

不问江湖任少侠/showdoc-upload

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ShowdocCfg.py 636 Bytes
一键复制 编辑 原始数据 按行查看 历史
#-*-coding:utf8 -*-
import json
file_name = './cfg/showdoc_config.json';
def get_config_data(file_name):
with open(file_name,"r",encoding='UTF-8') as fp:
cfg_data = fp.read();
json_data=json.loads(cfg_data);
return json_data;
def get_cfg():
return get_config_data(file_name);
def get_cfg_host():
cfg = get_cfg();
return cfg['doc_server']['host'];
def get_cfg_port():
cfg = get_cfg();
return cfg['doc_server']['port'];
def get_cfg_user_name():
cfg = get_cfg();
return cfg['doc_server']['user_name'];
def get_cfg_password():
cfg = get_cfg();
return cfg['doc_server']['password'];
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/renyongjian/showdoc-upload.git
[email protected]:renyongjian/showdoc-upload.git
renyongjian
showdoc-upload
showdoc-upload
master

搜索帮助