python 读取配置文件

2022-06-12  本文已影响0人  孙广宁
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
>>>
>>> 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
上一篇下一篇

猜你喜欢

热点阅读