码迷,mamicode.com
首页 > 其他好文 > 详细

configparser模块

时间:2021-04-20 14:59:14      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:读取配置   增删改   config   aaa   模块   列表   mes   遍历   就是   

#配置文件的解析
 以下所述块相当于section
# 这个模块定义了一个ConfigParser类,该类的作用是使用配置文件生效,配置文件的格式和windows
# INI文件的格式相同
# 该模块的作用 就是使用模块中的RawConfigParser()ConfigParser() SafeConfigParser(),
# 这三个方法(三者择其一),创建一个对象使用对象的方法对指定的配置文件做增删改查操作


# 读取配置文件
# read(filenames) filesnames是一个列表,需要从文件加载初始值的应用程序应该在调用read()之前使用readfp()加载所需的文件或文件。
# readfp(fp[, filename]) fp中,从文件或文件类对象中读取和解析配置数据(只使用readline()方法)。如果文件名被省略,并且fp有一个name属性,它被用于文件名;默认值为< ? >

# 写入配置文件
# write(fileobject) 将配置的表写入指定的文件对象。这个表可以由未来的read()调用解析。


#配置文件的生成

import configparser
config = configparser.ConfigParser() #实例化,生成对象

#1、为文件添加内容

#方式1 config[section] ={object:value}
config[‘DEFAULT‘] = {‘name‘:‘alex‘,‘age‘:23,‘gender‘:‘male‘} #添加默认块
#
#方式2
config["STUDENT"] = {}
config["STUDENT"]["name1"] = ‘keili‘
config["STUDENT"]["age1"] = "17"
config["STUDENT"]["gender1"] = "female"
#
#方式3
config["TEACH"] = {}
newtype = config["TEACH"]
newtype["t1"] = ‘English‘
newtype["t2"] = "China"
#
#2、sections() 返回可用的section的列表;默认section(即DEFAULT)不包括在列表中
print(config.sections())

#3、判断块是否在config(配置文件中)存在,存在则返回True,否则返回False
print(‘TEACH‘ in config) #True
print("ad" in config) #False

#4、从文件中取值
#方法1
print(config["TEACH"][‘t1‘]) #取出他t1的值,此处为t1=English
print(config["DEFAULT"]["age"]) #23
#方法2
print(config.get("DEFAULT","gender")) #male
print(config.get("DEFAULT","age")) #23
print(‘----------end---------‘)

#5、遍历键
#方法1
for key in config["DEFAULT"]:
print(key)
#方法2
print(config.options("STUDENT")) #options() 返回指定块中的键,包括默认的DEFAULT

#6、增加
#增加块add_section(section)
config.add_section(‘AAA‘)
#增加键值对set(section, key, value)
config.set("AAA","a1","fdd")

#7、items() 返回给定section中每个选项的(object,value)对的列表
print(config.items("AAA")) #[(‘name‘, ‘alex‘), (‘age‘, ‘23‘), (‘gender‘, ‘male‘), (‘a1‘, ‘fdd‘)]

#8、删除
#remove_option(section, option) 从指定的部分中删除指定的选项
#remove_section(section) 从配置中删除指定的section
#删除块
config.remove_section("AAA")
#删除键值对
config.remove_option("TEACH","t1")

#生成一个配置文件
with open(‘example.ini‘,‘w‘) as config_file:
config.write(config_file)

configparser模块

标签:读取配置   增删改   config   aaa   模块   列表   mes   遍历   就是   

原文地址:https://www.cnblogs.com/shadowfolk/p/14673179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!