python yaml

2018-06-26  本文已影响0人  keno_ye

安装:

pip install pyyaml


在读取yaml文件时读取特殊符号异常,例如:'!include'

import yaml

def default_ctor(loader, tag_suffix, node):

    print loader

     print tag_suffix

     print node

     return tag_suffix + ' ' + node.value

 yaml.add_multi_constructor('', default_ctor)


或者参考解决文章

https://davidchall.github.io/yaml-includes.html

上一篇下一篇

猜你喜欢

热点阅读