Configureparser制作配置文件

2022/7/31 6:22:44

本文主要是介绍Configureparser制作配置文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Configureparser制作配置文件

配置文件组成:

键值对,分段[] ,键值对= 注释 #;开头

示例:

**db.ini**

[mysql]
host = localhost
user = user7
passwd = s$cret
db = ydb

[postgresql]
host = localhost
user = user8
passwd = mypwd$7
db = testdb

读取

read()读取配置文件中的所有内容

import configparser

config = configparser.ConfigParser()   #先创建配置文件对象
config.read('db.ini')     #读取文件内容
host = config['mysql']['host']     #获取值

sections() 读取所有部分(即[] 里的内容)

has_section() 查询指定部分是否存在

config = configparser.ConfigParser()

sections = config.sections()
print(f'Sections:{sections}')

for section in sections:
	if config.has_section(section):
		print(True)
/////////////////////////////////////////////////////////////
#Sections: ['mysql', 'postgresql']    #sections()读取的结果是列表
#True
#True

**read_string()** 从字符串中读取配置数据

import configparser

cfg_data = 
'''
[mysql]
host = localhost
user = user7
passwd = s$cret
db = ydb
'''
config = configparser.ConfigParser()
config.read_string(cfg_data)   #读取的结果按如下形式使用

host = config['mysql']['host']
user = config['mysql']['user']
passwd = config['mysql']['passwd']
db = config['mysql']['db']

**read_dict()** 从字典中读取配置数据

cfg_data = {
	'mysql':{'host':'localhost','user':'user7','passwd':'password'}
}   #字典中字典,要分层次
config = configparser.ConfigParser()
config.read_dict(cfg_data)

host = config['mysql']['host']
user = config['mysql']['user']
passwd = config['mysql']['passwd']

写入

**write()** 写入配置数据

add_section() 写入部分(即[section] )

#!/usr/bin/env python3
import configparser

config = configparser.ConfigParser()
config.add_section('mysql')

config['mysql']['host'] = 'localhost'
config['mysql']['user'] = 'user7'
config['mysql']['passwd'] = 's$cret'
config['mysql']['db'] = 'ydb'

with open('db3.ini', 'w') as configfile:
    config.write(configfile)  #写入的时候需要注意句柄位置


这篇关于Configureparser制作配置文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程