python之configParser模块读写配置文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之configParser模块读写配置文件相关的知识,希望对你有一定的参考价值。

借鉴:http://www.cnblogs.com/TankXiao/p/3038350.html

configParser是python自带的模块,用来读写配置文件

配置文件的格式:[]包含的叫section,section下有option=value这样的键值

 

配置文件  test.conf

[section1]

name = tank

age = 28

[section2]

ip = 127.0.0.1

port = 8080

 

python代码

#-*- coding:UTF-8 -*-

import configParser

conf = configParser.configParser()

conf.read("c:\\\\tset.conf")

 

#获取指定的section,指定的option的值

name = conf.get("section1", "name")

print name

age = conf.get("section1", "age")

print age

 

#获取所有的section

sections = conf.sections()

print sections

#写配置文件

#更新指定的section,option的值

conf.set("sections","port","8081")

# 写入指定section, 增加新option的值
conf.set("section2", "IEPort", "80")

# 添加新的 section
conf.add_section("new_section")
conf.set("new_section", "new_option", "http://www.cnblogs.com/tankxiao")

 




以上是关于python之configParser模块读写配置文件的主要内容,如果未能解决你的问题,请参考以下文章

python-ConfigParser模块读写配置文件

python-ConfigParser模块读写配置文件

python的ConfigParser读取设置配置文件

python之configparser模块

Python之配置文件读写

python模块之configparser