python yaml

安装:

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

你可能感兴趣的:(python yaml)