想像一下您的專案中有一個這樣的檔案:
# 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中文網其他相關文章!