我使用Python的老式configparser
模块从文件系统中读取配置文件。
检查用户提供的配置文件是否使用了正确的语法'我将所有节键和子键与包含所有允许的节键和带有ommited值的子键的引用配置文件ref_config.ini
进行比较。
解析用户特定的文件并不是什么大问题,而且效果很好。但是,阅读reference-config会导致ParsingError
如下:
ParsingError: Source contains parsing errors: 'ref_config.ini'
[line 2]: 'rotations_to_simulate\n'
[line 3]: 'number_of_segments\n'
[line 4]: 'material_data\n'
[line 7]: 'rpm\n'
文件ref_config.ini
包含以下行:
[GENERAL DATA]
rotations_to_simulate
number_of_segments
material_data
[TECHNICAL DATA]
rpm
要阅读上面提到的配置文件,我使用以下代码:
#!/usr/bin/env python3
# coding: utf-8
import configparser
import os.path
def read_ref_config():
config = configparser.ConfigParser()
if not os.path.isfile('ref_config.ini'):
return False, None
else:
config.read('ref_config.ini')
return True, config
但是,在配置文件中省略值不应该导致ParsingError,因为docs告诉:
可以省略值,在这种情况下,键/值分隔符也可以 被遗漏了。
[No Values] key_without_value empty string value here =
更新
我只是将给定example from the docs的内容复制并粘贴到我的ref_config.ini
文件中,得到了一个类似的ParsingError,NoValue-keys不包含任何空格:
ParsingError: Source contains parsing errors: 'ref_config.ini'
[line 20]: 'key_without_value\n'
答案 0 :(得分:2)
简单方法:
configparser.ConfigParser(allow_no_value=True)
>>> import configparser
>>> sample_config = """
... [mysqld]
... user = mysql
... pid-file = /var/run/mysqld/mysqld.pid
... skip-external-locking
... old_passwords = 1
... skip-bdb
... # we don't need ACID today
... skip-innodb
... """
>>> config = configparser.ConfigParser(allow_no_value=True)
>>> config.read_string(sample_config)
>>> # Settings with values are treated as before:
>>> config["mysqld"]["user"]
'mysql'
>>> # Settings without values provide None:
>>> config["mysqld"]["skip-bdb"]
>>> # Settings which aren't specified still raise an error:
>>> config["mysqld"]["does-not-exist"]
Traceback (most recent call last):
...
KeyError: 'does-not-exist'