如何使用 ConfigParser 处理配置文件中的空值?
如何使用 python configparser 模块解析 ini 文件中没有值的标签?
例如,我有以下ini,我需要解析rb。在某些 ini 文件中,rb 具有整数值,而某些文件则根本没有值,如下例所示。如何使用 configparser 做到这一点而不出现值错误?我使用 getint 函数
[section]
person=name
id=000
rb=
How can I parse tags with no value in an ini file with python configparser module?
For example, I have the following ini and I need to parse rb. In some ini files rb has integer values and on some no value at all like the example below. How can I do that with configparser without getting a valueerror? I use the getint function
[section]
person=name
id=000
rb=
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
创建解析器对象时,您需要设置
allow_no_value=True
可选参数。You need to set
allow_no_value=True
optional argument when creating the parser object.也许使用
try... except
块:例如:
Maybe use a
try...except
block:For example:
使用
get()
来获取字符串形式的选项,而不是使用getint()
。然后自己转换为int:Instead of using
getint()
, useget()
to get the option as a string. Then convert to an int yourself:由于有关 python 2.6 的问题仍然悬而未决,因此以下内容将适用于 python 2.7 或 2.6。这替换了用于解析 ConfigParser 中的选项、分隔符和值的内部正则表达式。
用作
旁注
Python 2.7 的 ConfigParser 中有一个 OPTCRE_NV,但如果我们在上面的函数中完全使用它,则正则表达式将为 vi 和 value 返回 None,这会导致 ConfigParser 在内部失败。使用上面的函数会为 vi 和 value 返回一个空字符串,每个人都很高兴。
Since there is still an unanswered question about python 2.6, the following will work with python 2.7 or 2.6. This replaces the internal regex used to parse the option, separator, and value in ConfigParser.
Use as
Side Note
There is a OPTCRE_NV in ConfigParser for Python 2.7, but if we used it in the above function exactly, the regex would return None for vi and value, which causes ConfigParser to fail internally. Using the function above returns a blank string for vi and value and everyone is happy.
为什么不像这样注释掉 rb 选项:
然后使用这个很棒的 oneliner:
Why not comment out the
rb
option like so:and then use this awesome oneliner: