Python 3 ConfigParser也在阅读内联注释

时间:2016-10-06 13:06:06

标签: python-3.x parsing config configparser

我有以下代码,其中filePath是磁盘上cfg文件的路径。当我解析它时,它还会读取内联注释(空格+ ";")。

结果的某些行:

xlsx:是的;评论在这里

html:是的;评论在这里

应该是:

xlsx:是的

html:是的

def ParseFile(filePath):
    """this function returns the parsed CFG file"""
    parser = configparser.ConfigParser()
    print("Reading config file from %s" % filePath)
    parser.read(filePath)
    for section in parser.sections():
        print("[ SECTION: %s ]" % section)
        for option in parser.options(section):
            print("%s:%s" % (option, parser.get(section, option)))

1 个答案:

答案 0 :(得分:2)

默认情况下不启用内嵌注释

来自the docs中的示例:

[You can use comments]
# like this
; or this

# By default only in an empty line.
# Inline comments can be harmful because they prevent users
# from using the delimiting characters as parts of values.
# That being said, this can be customized.

允许使用';'进行内联评论:

parser = configparser.ConfigParser(inline_comment_prefixes=';')