美文网首页
python 读取配置文件

python 读取配置文件

作者: 孙广宁 | 来源:发表于2022-06-12 23:54 被阅读0次
13.10 使用configparser模块读取配置文件
  • 假如我们有如下配置config.ini
[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文档来查看更详细的语法操作

相关文章

网友评论

      本文标题:python 读取配置文件

      本文链接:https://www.haomeiwen.com/subject/fbinmrtx.html