我有以下类型的INI文件
[section1][subsection1]
port=989
[section1][subsection2]
somethign=somethign
我正在使用Python的ConfigParser来解析INI文件,但我无法弄清楚如何从上述类型的INI文件中获取数据。
以下代码用于在INI文件类似
时获取值[section1]
port=908
[section2]
ss=ss
config = ConfigParser.RawConfigParser()
config.read(INI_File)
mIp = config.get('section1','port')
请不要建议我更改INI文件格式:)
谢谢