yaml 属性值
我正在使用 yaml 文件来存储属性和值。但某些值需要附加当前日期。
那么如何在 yaml 文件中输入值,以便 yaml 解析器可以自动识别并替换为
我正在使用 pyyaml 和 python 的当前日期
I am using yaml file to store attribute and value. But some of the values need the current date to be appended.
So how do I enter the value in yaml file, so that yaml parser can automatically recognise and substitute with current date
I am using pyyaml and python
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pyyaml 不会自动替换任何内容。只需使用自定义字符串,例如
${now}
并在解析 yaml 文件后将其替换为当前日期。例如,
其中
value
是从输入文件读取的字符串。pyyaml does not automatically substitute anything. Just use a custom string e.g.
${now}
and replace it with the current date after parsing the yaml file.For example,
where
value
is a sting read from the input file.