繁体   English   中英

使用 ruamel.yaml,如何使带有 NEWLINE 的 vars 成为不带引号的多行

[英]Using ruamel.yaml, how can I make vars with NEWLINEs be multiline without quotes

我正在生成用作协议的 YAML,其中包含一些生成的 JSON。

import json
from ruamel import yaml
jsonsample = { "id": "123", "type": "customer-account", "other": "..." }
myyamel = {}
myyamel['sample'] = {}
myyamel['sample']['description'] = "This example shows the structure of the message"
myyamel['sample']['content'] = json.dumps( jsonsample, indent=4, separators=(',', ': '))
print yaml.round_trip_dump(myyamel, default_style = None, default_flow_style=False, indent=2, block_seq_indent=2, line_break=0, explicit_start=True, version=(1,1))

然后我得到这个输出

%YAML 1.1
---
sample:
  content: "{\n    \"other\": \"...\",\n    \"type\": \"customer-account\",\n    \"\
  id\": \"123\"\n}"
description: This example shows the structure of the message

现在对我来说,如果我能够使多行行的格式以管道|开头,那看起来会好得多。

我想看到的输出是这个

%YAML 1.1
---
sample:
  content: |
    {    
       "other": "...",
       "type": "customer-account",
       "id": "123"
    }
description: This example shows the structure of the message

看看这有多容易阅读......

那么如何在 python 代码中解决这个问题呢?

你可以做:

import sys
import json
import ruamel.yaml

yaml = ruamel.yaml.YAML()
yaml.version = (1, 1)

jsonsample = { "id": "123", "type": "customer-account", "other": "..." }
myyamel = {}
myyamel['sample'] = {}
myyamel['sample']['description'] = "This example shows the structure of the message"
myyamel['sample']['content'] = json.dumps( jsonsample, indent=4, separators=(',', ': '))

ruamel.yaml.scalarstring.walk_tree(myyamel)

yaml.dump(myyamel, sys.stdout)

这使:

%YAML 1.1
---
sample:
  description: This example shows the structure of the message
  content: |-
    {
        "id": "123",
        "type": "customer-account",
        "other": "..."
    }

一些注意事项:

  • 由于您使用的是普通字典,因此打印 YAML 的顺序取决于实现和密钥。 如果您希望将订单固定到您的作业中,请使用:

     myyamel['sample'] = yaml.comments.CommentedMap()
  • 如果打印返回值,则永远不要使用print(yaml.round_trip_dump) ,指定要写入的流,这样效率更高。

  • walk_tree地将所有包含换行符的字符串转换为块样式模式。 你也可以明确地做:

     myyamel['sample']['content'] = yaml.scalarstring.PreservedScalarString(json.dumps( jsonsample, indent=4, separators=(',', ': ')))

在这种情况下你不需要调用walk_tree()


即使您仍在使用 Python 2,您也应该开始习惯使用print函数而不是print语句。 为此,请在每个 Python 文件的顶部包含:

from __future__ import print_function

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM