python configObj 可以处理没有 '=' 的行吗?

发布于 2025-01-04 10:15:51 字数 421 浏览 1 评论 0原文

我使用 python ConfigObj 加载配置文件,如果配置文件采用“cfgName=cfgvalue”模式,则效果很好。

现在我需要以这种方式编写配置文件:

basket.ini

[favoFruit]
Apple
Orange

可以(如何)通过 ConfigObj 将其加载为列表 favoFruit['Apple','Orange']

目前,当使用 cfgObj=ConfigObj('basket.ini') 时,我只能收到错误消息 Invalid line at line "2"

YAML 或 JSON 可以做到这一点,我的问题ConfigObj 也能做到吗?

I use python ConfigObj to load a config file, it works great if config file in pattern "cfgName=cfgvalue".

Now I need write config file in this way:

basket.ini

[favoFruit]
Apple
Orange

can (how) load this as a list favoFruit['Apple','Orange'] by ConfigObj?

Current I only can get error message Invalid line at line "2" when using cfgObj=ConfigObj('basket.ini')

The YAML or JSON can do this, my question is can ConfigObj do it too?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

匿名。 2025-01-11 10:15:51

configobj 不支持列出您尝试使用它们的方式,但作为逗号分隔值:

[fruit]
favourite = Apple, Orange

在您的代码中,您只需像往常一样访问属性:

>>> cfg = configobj.ConfigObj('basket.ini')
>>> cfg['fruit']['favourite']
['Apple', 'Orange']

有关更多信息,请查看在这篇文章

编辑:如果您确实需要支持与问题中格式完全相同的配置文件,请注意,为其编写自定义解析器很容易:

import re
from collections import defaultdict

def parse(f):
    data = defaultdict(list)
    section = None
    for line in f:
        line = line.strip()
        if not line:
            continue
        match = re.match('\[(?P<name>.*)\]', line)
        if match:
            section = match.group('name')
        else:
            data[section].append(line)
    return data

cfg = parse(open('basket.ini'))
print cfg['favoFruit']

示例输出:

['苹果'、'橙色']

configobj doesn't support lists the way you're trying to use them, but as comma separated values:

[fruit]
favourite = Apple, Orange

In your code you just have to access the attribute as usual:

>>> cfg = configobj.ConfigObj('basket.ini')
>>> cfg['fruit']['favourite']
['Apple', 'Orange']

For more information, please have a look at this article.

Edit: If you really need to support configuration file with exactly the same format as in your question, note that it would be easy to write a custom parser for it:

import re
from collections import defaultdict

def parse(f):
    data = defaultdict(list)
    section = None
    for line in f:
        line = line.strip()
        if not line:
            continue
        match = re.match('\[(?P<name>.*)\]', line)
        if match:
            section = match.group('name')
        else:
            data[section].append(line)
    return data

cfg = parse(open('basket.ini'))
print cfg['favoFruit']

Example output:

['Apple', 'Orange']

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