美文网首页
python 使用配置文件

python 使用配置文件

作者: 戒灵 | 来源:发表于2019-06-26 09:14 被阅读0次

第一步:创建config.ini文件
例如需要配置的变量如下:
config.ini内容:

[nihao]
 
once_wait=5
get_api_wait=600

第二步:py脚本取变量使用
内容如下:

import configparser
import os
cur_path = os.path.dirname(os.path.realpath(__file__))
config_path = os.path.join(cur_path, 'config.ini')
conf = configparser.ConfigParser()
conf.read(config_path)
once_wait = conf.get('nihao', 'once_wait')
get_api_wait = conf.get('nihao', 'get_api_wait')
print(once_wait ,get_api_wait )

上面的once_wait 和get_api_wait 就是我们在config.ini中取到的
注意:取出来的5和600是字符串类型


赞了.jpg

相关文章

网友评论

      本文标题:python 使用配置文件

      本文链接:https://www.haomeiwen.com/subject/kxixcctx.html