Python读取配置文件模块ConfigParser

一、ConfigParser模块简介

假设有如下配置文件,需要在Pyhton程序中读取

  1. $ cat config.ini
  2. [db]
  3. db_port = 3306
  4. db_user = root
  5. db_host = 127.0.0.1
  6. db_pass = xgmtest
  7. [SectionOne]
  8. Status: Single
  9. Name: Derek
  10. Value: Yes
  11. Age: 30
  12. Single: True
  13. [SectionTwo]
  14. FavoriteColor = Green
  15. [SectionThree]
  16. FamilyName: Johnson
  17. [Others]
  18. Route: 66

如何在Python中读取呢

  1. >>> import ConfigParser
  2. >>> Config = ConfigParser.ConfigParser()
  3. >>> Config
  4. <ConfigParser.ConfigParser instance at 0x00BA9B20>
  5. >>> Config.read(“config.ini”)
  6. [‘config.ini’]
  7. >>> Config.sections()
  8. [‘db’, ‘Others’, ‘SectionThree’, ‘SectionOne’, ‘SectionTwo’]
  9. >>> Config.get(“db”“db_host”)
  10. 127.0.0.1
  11. >>> Config.getint(“db”“db_port”)
  12. 3306

二、ConfigParser模块的基本方法介绍

  1. read(filename) 直接读取ini文件内容
  2. sections() 得到所有的section,并以列表的形式返回
  3. options(section) 得到该section的所有option
  4. items(section) 得到该section的所有键值对
  5. get(section,option) 得到section中option的值,返回为string类型
  6. getint(section,option) 得到section中option的值,返回为int类型,还有相应的getboolean()和getfloat() 函数

写入配置文件

  1. add_section(section) 添加一个新的section
  2. set(section, option, value) 对section中的option进行设置,需要调用write将内容写入配置文件

三、特殊情况

如果有以下配置文件

  1. [zone1]
  2. 192.168.10.13
  3. 192.168.10.15
  4. 192.168.10.16
  5. 192.168.10.17
  6. [zone2]
  7. 192.168.11.13
  8. 192.168.11.14
  9. 192.168.11.15
  10. [zone3]
  11. 192.168.12.13
  12. 192.168.12.14
  13. 192.168.12.15

这种配置文件,每一个section里面,并不是健值对的形式,此时再调用ConfigParser读取便会报出如下错误:
ConfigParser.ParsingError: File contains parsing errors: hosts.txt

所以正确的调用方法为:

  1. #!/usr/bin/python
  2. import ConfigParser
  3. config = ConfigParser.ConfigParser(allow_no_value=True)
  4. config.read(“hosts.txt”)
  5. print config.items(“zone2”)

运行结果:

  1. $ ./a.py
  2. [(‘10.189.22.21’, None), (‘10.189.22.22’, None), (‘10.189.22.23’, None)]

原创文章,作者:老D,如若转载,请注明出处:https://laod.cn/3457.html

(1)
上一篇 2017-04-22
下一篇 2017-04-24

相关推荐

发表回复

登录后才能评论

评论列表(1条)