python解析模块(ConfigParser)使用方法
时间:2022-06-15 11:39:06
测试配置文件test.conf内容如下:
[first]
w = 2
v: 3
c =11-3
[second]
sw=4
test: hello
测试配置文件中有两个区域,first和second,另外故意添加一些空格、换行。
下面解析:
>>> import ConfigParser
>>> conf=ConfigParser.ConfigParser()
>>> conf.read('test.conf')
['test.conf']
>>> conf.sections() #获得所有区域
['first', 'second']
>>> for sn in conf.sections():
... print conf.options(sn) #打印出每个区域的所有属性
...
['w', 'v', 'c']
['sw', 'test']
获得每个区域的属性值:
for sn in conf.sections():
print sn,'-->'
for attr in conf.options(sn):
print attr,'=',conf.get(sn,attr)
输出:
first -->
w = 2
v = 3
c = 11-3
second -->
sw = 4
test = hello
好了,以上就是基本的使用过程,下面是动态的写入配置,
cfd=open('test2.ini','w')
conf=ConfigParser.ConfigParser()
conf.add_section('test') #add a section
conf.set('test','run','false')
conf.set('test','set',1)
conf.write(cfd)
cfd.close()
上面是向test2.ini写入配置信息。
标签:配置解析模块,ConfigParser
0
投稿
猜你喜欢
Python配置文件yaml的用法详解
2023-07-04 21:02:56
Python多线程即相关理念详解
2021-12-07 12:04:47
python 获得任意路径下的文件及其根目录的方法
2022-02-02 17:32:15
Window环境下Scrapy开发环境搭建
2023-08-24 01:14:58
Access下如何使用通用对话框
2008-11-20 16:41:00
PHP array_key_exists检查键名或索引是否存在于数组中的实现方法
2024-05-05 09:18:55
python七种方法判断字符串是否包含子串
2023-09-19 04:06:20
ThinkPHP5.1表单令牌Token失效问题的解决
2023-11-15 08:58:15
解决django服务器重启端口被占用的问题
2023-11-10 14:14:12
python解析中国天气网的天气数据
2023-01-20 18:48:39
python3 map函数和filter函数详解
2023-05-02 02:17:32
Python中模拟enum枚举类型的5种方法分享
2022-05-04 01:00:10
Python虚拟机字节码教程之装饰器实现详解
2021-10-31 08:59:47
详解Python中的变量及其命名和打印
2023-07-23 11:31:45
Python基于正则表达式实现检查文件内容的方法【文件检索】
2021-06-11 07:58:45
python快速建立超简单的web服务器的实现方法
2021-03-14 23:25:14
如何添加一个mysql用户并给予权限详解
2024-01-17 06:09:36
Dreamweaver使用技巧之如何巧用DW4文件库更新网站
2010-10-20 20:07:00
Python实现微信消息防撤回功能的实例代码
2023-10-05 14:20:51
python virtualenv虚拟环境配置与使用教程详解
2023-01-21 23:06:56