加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

如何在Python中使用ruamel.yaml从YAML文件中获取注释?

发布时间:2020-12-16 22:47:22 所属栏目:Python 来源:网络整理
导读:我想从使用ruamel.yaml加载的YAML文件中获取注释字符串. project documentation缺少API参考,我找不到相关的例子.访问评论的正确方法是什么? import ruamel.yamlyaml = """%YAML 1.2---# C1a: # C2 # C3 # C4 b: 1 # C5 c: # A comment here will not be pa

我想从使用ruamel.yaml加载的YAML文件中获取注释字符串. project documentation缺少API参考,我找不到相关的例子.访问评论的正确方法是什么?

import ruamel.yaml

yaml = """
%YAML 1.2
---
# C1
a: # C2
  # C3
  # C4
  b: 1 # C5
  c: # A comment here will not be parsed properly by ruamel.yaml v0.11.14
  - abc # C6
  - xyz # C7
  # C8
# C9
"""

loaded = ruamel.yaml.round_trip_load(yaml)

# Now what?
最佳答案
图书馆作者于an issue on BitBucket(2016年5月9日)对此发表评论:

The comment preservation has not stabilized,e.g. I need to do something if the key and value of a mapping are not on the same line and the key (or both key and value) have a comment. And my initial target was preservation of existing comments,not so much manipulation.

通过一些实验,我确定了上述问题中提供的示例代码的以下工作:

print('Comment 1: ' + loaded.ca.comment[1][0].value)
print('Comment 2: ' + loaded.ca.items['a'][2].value)
print('Comment 3: ' + loaded.ca.items['a'][3][0].value)
print('Comment 4: ' + loaded.ca.items['a'][3][1].value)
print('Comment 5: ' + loaded['a'].ca.items['b'][2].value)
print('Comment 6: ' + loaded['a']['c'].ca.items[0][0].value)
print('Comment 7: ' + loaded['a']['c'].ca.items[1][0].value)
print('Comment 8: ' + loaded['a']['c'].ca.end[0].value)
print('Comment 9: ' + loaded['a']['c'].ca.end[1].value)

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读