读写INI配置的Python库 iniparse
iniparse 是一个用来解析 INI 配置文件的 Python 库。示例代码:>>> cfg = INIConfig(open('options.ini'))
>>> print cfg.playlist.expand_playlist
True
>>> print cfg.ui.width
150
>>> cfg.ui.width = '200'
>>> print cfg
200
>>> print cfg.playlist.expand_playlist
True
>>> print cfg.ui.width
150
>>> cfg.ui.width = '200'
>>> print cfg
200
没有找到相关结果
已邀请:
0 个回复