3

我正在生成用作协议的 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 代码中解决这个问题呢?

4

1 回答 1

3

你可以做:

import sys
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=(',', ': '))

yaml.scalarstring.walk_tree(myyamel)

yaml.round_trip_dump(myyamel, sys.stdout, 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:
  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
于 2017-05-19T11:53:08.407 回答