13.10 使用configparser模块读取配置文件
[install]
library=%(prefix)s/lib
prefix =/usr/local
[debug]
log_errors=true
[server]
port: 8088
nwworks: 32
>>> from configparser import ConfigParser
>>> cfg = ConfigParser()
>>> cfg.read('config.ini')
['config.ini']
>>> cfg.sections()
['install', 'debug', 'server']
>>> cfg.get('install','library')
'/usr/local/lib'
>>> cfg.getboolean('debug','log_errors')
True
>>> cfg.getint('server','port')
8088
>>>
- 如果需要我们可以使用cfg.write()方法将数据写回配置文件中
>>> from configparser import ConfigParser
>>> cfg = ConfigParser()
>>> cfg.read('config.ini')
['config.ini']
>>> cfg.set('server','port','8080')
>>> import sys
>>> cfg.write(sys.stdout)
[install]
library = %(prefix)s/lib
prefix = /usr/local
[debug]
log_errors = true
[server]
port = 8080
nwworks = 32
- 需要注意python并不能对所有程序中使用的ini文件的全部特性都提供支持,可以通过官网的configparser文档来查看更详细的语法操作
网友评论