尝试使 configparser 将某个部分下的行视为原始文本,并将每一行作为项目返回:
config / ini文件示例:
[db]
sqlite:///testing.db
mysql:///user:pass@host/database
我目前得到的代码:
config = ConfigParser.RawConfigParser(allow_no_value=True)
config.read( self.configFile )
print config.items('db')
但是,这将返回以下行:
[('sqlite', '///testing.db'), ('mysql', '///user:pass@host/database')]
任何方式都可以在不必连接返回的列表项的情况下完成?