Python 处理 ini 格式文件

ini文件格式概述

ini 文件是文本文件,ini文件的数据格式一般为:

[Section1 Name]
KeyName1=value1
KeyName2=value2
...

[Section2 Name]
KeyName1=value1
KeyName2=value2

ini 文件可以分为几个 Section,每个 Section 的名称用 [] 括起来,在一个 Section 中,可以有很多的 Key,每一个 Key 可以有一个值并占用一行,格式是 Key=value。

ConfigParser 类概述


ConfigParser 可以用来读取ini文件的内容,如果要更新的话要使用 SafeConfigParser. ConfigParse 具有下面一些函数:
读取

    read(filename) 直接读取ini文件内容
    readfp(fp) 可以读取一打开的文件
    sections() 得到所有的section,并以列表的形式返回
    options(sections) 得到某一个section的所有option
    get(section,option) 得到section中option的值,返回为string类型

写入

写入的话需要使用 SafeConfigParser, 因为这个类继承了ConfigParser的所有函数,
而且实现了下面的函数:

set( section, option, value) 对section中的option进行设置

from ConfigParser import SafeConfigParser
from StringIO import StringIO
 
f = StringIO()
scp = SafeConfigParser()
 
print '-'*20, ' following is write ini file part ', '-'*20
sections = ['s1','s2']
for s in sections:
    scp.add_section(s)
    scp.set(s,'option1','value1')
    scp.set(s,'option2','value2')
 
scp.write(f)
print f.getvalue()
 
print '-'*20, ' following is read ini file part ', '-'*20
f.seek(0)
scp2 = SafeConfigParser()
scp2.readfp(f)
sections = scp2.sections()
for s in sections:
    options = scp2.options(s)
    for option in options:
        value = scp2.get(s,option)
        print "section: %s, option: %s, value: %s" % (s,option,value)

输出结果为

--------------------  following is write ini file part  --------------------
[s2]
option2 = value2
option1 = value1

[s1]
option2 = value2
option1 = value1


--------------------  following is read ini file part  --------------------
section: s2, option: option2, value: value2
section: s2, option: option1, value: value1
section: s1, option: option2, value: value2
section: s1, option: option1, value: value1




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值