- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用 PyYAML 和 Python3 来编辑 YAML 文件中的值(这是一个 Hiera 数据结构,但这有点离题)。
使用 yaml.safe_load
和 yaml.dump
很容易实现。我遇到的问题是我需要保留注释、空格、顺序和其他格式。也就是说,当我编辑给定键的值时,这应该是文件中的唯一更改。 (不需要自己添加或删除 key 。)
在我的例子中,这些是二级 key 。我可以用正则表达式或某种形式的状态机来做到这一点 - 但它非常讨厌。有人知道已经巧妙地做到这一点的库吗?
这是有关 YAML 的虚拟示例:
---
# Some form of comment block.
# Some form of comment block.
# Some form of comment block.
# This is my config block.
config::me:
key0: 123
key1: 456
# This is another config block:
applications:
frontend:
version: '2.4.2'
enabled: true
backend:
version: '4.3.9'
enabled: false
# More comments etcetera.
基本上我需要做的是定位 applications.frontent.version
并将值从 2.4.2
更新为 2.4.3
而不触及文件中的任何内容。
最佳答案
您可以为此使用 ruamel.yaml
,它是 PyYAML ¹ 的衍生物。它是专门为执行这种往返、保留注释和原始文件中的其他一些事情而创建的,大多数解析器在往返过程中都会丢弃这些东西(它也是 YAML 1.2 兼容的,而 PyYAML 支持 1.1)
import sys
import ruamel.yaml
from ruamel.yaml.util import load_yaml_guess_indent
from ruamel.yaml.scalarstring import SingleQuotedScalarString
ys = """\
---
# Some form of comment block.
# Some form of comment block.
# Some form of comment block.
# This is my config block.
config::me:
key0: 123
key1: 456
# This is another config block:
applications:
frontend:
version: '2.4.2'
enabled: true
backend:
version: '4.3.9'
enabled: false
# More comments etcetera.
"""
data, indent, block_seq_indent = load_yaml_guess_indent(ys, preserve_quotes=True)
data['applications']['frontend']['version'] = SingleQuotedScalarString('2.4.3')
ruamel.yaml.round_trip_dump(data, sys.stdout, explicit_start=True)
给你:
---
# Some form of comment block.
# Some form of comment block.
# Some form of comment block.
# This is my config block.
config::me:
key0: 123
key1: 456
# This is another config block:
applications:
frontend:
version: '2.4.3'
enabled: true
backend:
version: '4.3.9'
enabled: false
# More comments etcetera.
preserve_quotes
选项和 SingleQuotedScalarString()
的使用是必需的,因为您在标量 2.4.3
和 周围有引号4.3.9
是多余的,通常会被删除。
¹ 免责声明:我是 ruamel.yaml
的作者。
关于python3 - 就地编辑 YAML 文件中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41738369/
我正在尝试解决以下问题: We are given an array containing ‘n’ objects. Each object, when created, was assigned a
考虑以下代码: a=(1 2 3) a='seven' export a declare -p a 输出(来自declare)是: declare -ax a='([0]="seven" [1]="2
我正在尝试将 ['1','2','3','4'] 转换为 [1,2,3,4]我想就地进行此转换。有可能做到吗?如果不是,最佳解决方案是什么。 最佳答案 我觉得用map比较好对于这类任务。这会创建迭代器
好的,所以我之前发布了关于尝试(没有任何预建函数)删除额外空间的信息 "this is a test"会回来的 "this is a test" Remove spaces from a strin
我有一个名为Media的插件,该插件应负责图像大小调整等工作。 它具有以下依赖性: dependencies { compile group: 'org.ccil.cowan.tagsoup'
我需要将一个大字符串向左“移动”X 个空格。它太大了,无法放入内存,所以我需要就地做。我需要使用最少量的系统调用来完成此操作。 我知道我可以使用缓冲区并重用内存来最大限度地减少内存消耗,然后使用 fs
我想知道是否可以在不需要临时数组的情况下通过 Cholesky 分解获得矩阵的逆。截至目前,我可以在不使用临时数组的情况下进行 cholesky 分解,但从那里我还没有想出一种方法来获得原始矩阵的逆矩
是否有任何用于 Javascript 的就地编辑插件..像 firebug 之类的东西,它对即时 CSS 编辑和预览非常有用,但不允许就地 JS 编辑..那么,有没有我们可以立即更新和更新的工具或插件
题目如下:给定一个 linked list,将备用 indices 移到 list 的后面 例如: input: : [0] -> [1] -> [2] -> [3] -> [4]
在我看来,std::copy_if 对于过滤容器非常有用: std::vector vec { 1, 2, 3, 4 }; auto itEnd = std::copy_if(vec.begin(),
在 C++ 中相交两个集合的标准方法是执行以下操作: std::set set_1; // With some elements std::set set_2; // With some othe
在 Python 中,字符串是不可变的。 逐个字符遍历字符串并对其进行修改的标准习语是什么? 我能想到的唯一方法是一些与加入结果字符串相关的真正臭名昭著的黑客攻击。 -- 在 C 中: for(i
我有一个 ListBuffer。我想删除满足特定条件的所有元素。 我可以迭代它并删除每个元素。但是 Scala 对改变你正在迭代的列表有什么看法呢?它会起作用,还是会删除错误的元素/不返回所有元素?
我需要重新绑定(bind)两个大数据帧。现在我用的是 df 根据 nikola 的评论,这里是 ?rbindlist 的描述(v1.8.2 中的新增功能): Same as do.call("rbi
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 3 年前。 Improve th
我在带有 LVS_EDITLABELS 的无模式 Win32 对话框中有一个小图标模式的 ListView 放。无论编辑是通过单击鼠标还是通过调用 ListView_LabelEdit() 以编程方式
所以基本上不能/允许创建一个新数组。除了实际更改和操作当前数组外,无法返回任何内容。您如何获取字符数组并简单地翻转/反转它们。 Starting array: ['P','e','r','f','e'
我不明白为什么下面的代码没有对 vector 的前两个元素进行排序: int main() { std::vector v = {2,1,3,1,2}; std::sort(v.beg
我有以下(简化的)代码: a = a[::3] b = b[::3] c = c[::3] d = d[::3] a,b,c,d,其实都是很复杂的表达式,所以我想这样写: for l in [a, b
可以对数组进行不依赖于数组秩的操作。迭代器也不总是合适的解决方案。给定数组 double[,] myarray = new double[10,5]; 实现以下工作流程是可取的: 将 Rank>1 的
我是一名优秀的程序员,十分优秀!