想象一下您的项目中有一个这样的文件:
# config.yaml database: host: localhost port: 5432 username: postgres password: postgres
要在 Python 中解析这个 dot yaml 配置文件,你通常会这样做:
import yaml # pip install PyYAML with open("config.yaml", encoding='utf-8') as fstream: config_yaml = yaml.safe_load(fstream)
要从生成的字典创建类似 Javascript 的对象,您可以添加以下内容:
from munch import munchify # pip install munch config = munchify(config_yaml)
pyya 使用一个函数自动执行此操作:
from pyya import init_config config = init_config( 'config.yaml', 'default.config.yaml', merge_configs = False, convert_keys_to_snake_case = False, add_underscore_prefix_to_keywords = False raise_error_non_identifiers = False) print(config.database) # Output: # Munch({"host": "localhost", "port": 5432, "username": "postgres", "password": "postgres"})
所有这些标志怎么样?
merge_configs 如果设置为 True,会将 config.yaml 与 default.config.yaml(或您指定的任何名称或路径)进行比较,并将后者中不存在的所有字段添加到前者中。如果设置为 False,则禁用其余标志完成的所有合并和所有格式化。
convert_keys_to_snake_case 有点不言自明,因为它只是让配置键看起来像Python。但是,此标志可能会破坏某些设置,例如日志记录配置。
add_underscore_prefix_to_keywords 如果配置键也是 Python 关键字,则会在其前面添加下划线(class 变为 _class)。它可以让属性访问工作得更好。
raise_error_non_identifiers 如果配置键也是无效的 Python 标识符,则会引发错误。
你可以像这样安装 pyya:
pip install pyya
欢迎贡献和建议:https://github.com/shadowy-pycoder/pyya
以上是pyya - 在 Python 项目中管理 YAML 配置的方法的详细内容。更多信息请关注PHP中文网其他相关文章!