如何使用 ConfigParser 处理配置文件中的空值?

发布于 2024-09-16 18:21:11 字数 221 浏览 10 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

╄→承喏 2024-09-23 18:21:11

创建解析器对象时,您需要设置 allow_no_value=True 可选参数。

You need to set allow_no_value=True optional argument when creating the parser object.

北陌 2024-09-23 18:21:11

也许使用 try... except 块:

    try:
        value=parser.getint(section,option)
    except ValueError:
        value=parser.get(section,option)

例如:

import ConfigParser

filename='config'
parser=ConfigParser.SafeConfigParser()
parser.read([filename])
print(parser.sections())
# ['section']
for section in parser.sections():
    print(parser.options(section))
    # ['id', 'rb', 'person']
    for option in parser.options(section):
        try:
            value=parser.getint(section,option)
        except ValueError:
            value=parser.get(section,option)
        print(option,value,type(value))
        # ('id', 0, <type 'int'>)
        # ('rb', '', <type 'str'>)
        # ('person', 'name', <type 'str'>) 
print(parser.items('section'))
# [('id', '000'), ('rb', ''), ('person', 'name')]

Maybe use a try...except block:

    try:
        value=parser.getint(section,option)
    except ValueError:
        value=parser.get(section,option)

For example:

import ConfigParser

filename='config'
parser=ConfigParser.SafeConfigParser()
parser.read([filename])
print(parser.sections())
# ['section']
for section in parser.sections():
    print(parser.options(section))
    # ['id', 'rb', 'person']
    for option in parser.options(section):
        try:
            value=parser.getint(section,option)
        except ValueError:
            value=parser.get(section,option)
        print(option,value,type(value))
        # ('id', 0, <type 'int'>)
        # ('rb', '', <type 'str'>)
        # ('person', 'name', <type 'str'>) 
print(parser.items('section'))
# [('id', '000'), ('rb', ''), ('person', 'name')]
谢绝鈎搭 2024-09-23 18:21:11

使用 get() 来获取字符串形式的选项,而不是使用 getint()。然后自己转换为int:

rb = parser.get("section", "rb")
if rb:
    rb = int(rb)

Instead of using getint(), use get() to get the option as a string. Then convert to an int yourself:

rb = parser.get("section", "rb")
if rb:
    rb = int(rb)
年华零落成诗 2024-09-23 18:21:11

由于有关 python 2.6 的问题仍然悬而未决,因此以下内容将适用于 python 2.7 或 2.6。这替换了用于解析 ConfigParser 中的选项、分隔符和值的内部正则表达式。

def rawConfigParserAllowNoValue(config):
    '''This is a hack to support python 2.6. ConfigParser provides the 
    option allow_no_value=True to do this, but python 2.6 doesn't have it.
    '''
    OPTCRE_NV = re.compile(
        r'(?P<option>[^:=\s][^:=]*)'    # match "option" that doesn't start with white space
        r'\s*'                          # match optional white space
        r'(?P<vi>(?:[:=]|\s*(?=$)))\s*' # match separator ("vi") (or white space if followed by end of string)
        r'(?P<value>.*)

用作

    fp = open("myFile.conf")
    config = ConfigParser.RawConfigParser()
    config = rawConfigParserAllowNoValue(config)

旁注

Python 2.7 的 ConfigParser 中有一个 OPTCRE_NV,但如果我们在上面的函数中完全使用它,则正则表达式将为 vi 和 value 返回 None,这会导致 ConfigParser 在内部失败。使用上面的函数会为 vi 和 value 返回一个空字符串,每个人都很高兴。

# match possibly empty "value" and end of string ) config.OPTCRE = OPTCRE_NV config._optcre = OPTCRE_NV return config

用作

旁注

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.

def rawConfigParserAllowNoValue(config):
    '''This is a hack to support python 2.6. ConfigParser provides the 
    option allow_no_value=True to do this, but python 2.6 doesn't have it.
    '''
    OPTCRE_NV = re.compile(
        r'(?P<option>[^:=\s][^:=]*)'    # match "option" that doesn't start with white space
        r'\s*'                          # match optional white space
        r'(?P<vi>(?:[:=]|\s*(?=$)))\s*' # match separator ("vi") (or white space if followed by end of string)
        r'(?P<value>.*)

Use as

    fp = open("myFile.conf")
    config = ConfigParser.RawConfigParser()
    config = rawConfigParserAllowNoValue(config)

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.

# match possibly empty "value" and end of string ) config.OPTCRE = OPTCRE_NV config._optcre = OPTCRE_NV return config

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.

樱花坊 2024-09-23 18:21:11

为什么不像这样注释掉 rb 选项:

[section]
person=name
id=000
; rb=

然后使用这个很棒的 oneliner:

rb = parser.getint('section', 'rb') if parser.has_option('section', 'rb') else None

Why not comment out the rb option like so:

[section]
person=name
id=000
; rb=

and then use this awesome oneliner:

rb = parser.getint('section', 'rb') if parser.has_option('section', 'rb') else None
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文