python3 读取配置文件

有时候脚本里面会包含一些配置信息。如何读取配置文件的信息:

结构:

properties.conf

python3 读取配置文件_第1张图片

[mysql]
ip=192.168.1.102
user=root
password=123
db=test

[redis]
ip=192.168.1.103

first.py读取配置信息:

 

# coding:utf-8

import configparser

config = configparser.ConfigParser()
config.read('properties.conf')
lists_header = config.sections()  # 配置组名, ['luzhuo.me', 'mysql'] # 不含'DEFAULT'
print(lists_header)
print(config['mysql']['user'])
print(config['redis']['ip'])

python3 读取配置文件_第2张图片

参考:https://www.cnblogs.com/dion-90/p/7978081.html

你可能感兴趣的:(Python)