Yaml merge in Python(Python中的Yaml合并)
问题描述
所以我正在玩弄让自己(当然还有任何关心使用它的人)在 Python 中为 Pygame 制作一个小样板库的想法.我想要一个系统,其中应用程序的设置随 yaml 文件一起提供.
So I'm toying around with the idea of making myself (and anyone who cares to use it of course) a little boilerplate library in Python for Pygame. I would like a system where settings for the application are provided with a yaml file.
所以我想如果库提供一个默认的 yaml 树并将它与用户提供的树合并它会很有用.出于可用性考虑,我想知道是否有任何人可以预测一个例程:
So I was thinking it would be useful if the library provided a default yaml tree and merged it with a user supplied one. For usability sake I wonder if possible there are any out there who can divine a routine where:
在树中用户提供的 yaml 与默认值重叠的任何情况下,用户提供的分支都会替换库提供的分支.
In any case in the tree where the user supplied yaml overlaps the default, the user supplied branches replace the library supplied ones.
在用户提供的 yaml 不与默认树重叠的任何情况下,默认树仍然存在.
In any case where the user supplied yaml does not overlap the default tree, the default tree persists.
用户提供的 yaml 提供的树中的任何多余分支都会被附加.
Any superflous branches in the tree provided by the user supplied yaml are appended.
我知道这个解释很冗长,因为我的要求可能很清楚.我想知道免费获得是不是有点多.
I know this explanation was verbose as it is probably clear what I'm asking for. I wonder if it is a bit much to get for free.
推荐答案
你可以使用 PyYAML 来解析文件,然后使用以下函数合并两棵树:
You could use PyYAML for parsing the files, and then the following function to merge two trees:
def merge(user, default):
if isinstance(user,dict) and isinstance(default,dict):
for k,v in default.iteritems():
if k not in user:
user[k] = v
else:
user[k] = merge(user[k],v)
return user
或者,您可以在调用之前对用户树进行 deep-copy这个函数.
Optionally, you could do a deep-copy of the user-tree before calling this function.
这篇关于Python中的Yaml合并的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python中的Yaml合并
基础教程推荐
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01