使用python-decouple解析.ini节

问题描述 投票:1回答:1

Documentation有一个范例,其中唯一的部分称为设置这似乎是python-decouple的默认命名空间,因此如果你有:

[settings]
DEBUG=True

你可以解析配置:

from decouple import config
DEBUG = config('DEBUG', default=False, cast=bool)  # no section argument

但是,如果我们有自定义部分,如果:

[sectionA]
DEBUG=True

[sectionB]
foo="bar"

?

我知道可以轻松使用ConfigParser来解析自定义部分,如下所示:

config_parser.get('sectionA', 'DEBUG')   # the corresponding call in ConfigParser

但我想知道它是如何通过python-decouple完成的,因为它也支持.ini文件

python-3.x ini decouple
1个回答
0
投票

section似乎被硬编码为code中的class属性,因此我认为没有任何干净的参数化解决方案来解决这个问题。

class RepositoryIni(RepositoryEmpty):
    """
    Retrieves option keys from .ini files.
    """
    SECTION = 'settings'

    def __init__(self, source):
        self.parser = ConfigParser()
        with open(source) as file_:
            self.parser.readfp(file_)

    def __contains__(self, key):
        return (key in os.environ or
                self.parser.has_option(self.SECTION, key))

    def __getitem__(self, key):
        return self.parser.get(self.SECTION, key)
© www.soinside.com 2019 - 2024. All rights reserved.