python实现yaml文件嵌套

python如何实现在A.yaml内再嵌套B.yaml文件的读取

       利用PyYAML包读取yaml文件后,生成dict或list对象,内部可以包含 dict 和 list 对象,我们需要匹配父yaml文件里的所有值,判断哪些值是嵌套的子yaml文件对象,再将子yaml读取到父yaml上。具体操作:

定义父yaml father.yaml

a1: a1
b1:
  type: include_yaml  #确定include_yaml 类型为嵌套文件
  file: "./childer.yaml" # 嵌套子yaml路径
c1:
  - type: include_yaml
    file: "./childer.yaml"

  - type: include_yaml
    file: "./childer.yaml"

定义子yaml childer.yaml

c1: c1
d1: d1

编写嵌套方法 include_yaml.py

import yaml

with open('./father.yaml','r') as f:
    father_yaml = yaml.load(f,Loader=yaml.FullLoader)



def include_yaml(yaml_):

    if isinstance(yaml_,dict):
        yaml_copy = yaml_.copy()
        if yaml_.get('type')=='include_yaml':
            with open(yaml_.get('file'),'r') as f:
                childer_yaml = yaml.load(f,Loader=yaml.FullLoader)
            yaml_copy = childer_yaml.copy()
        else:
            for k1,v1 in yaml_.items():
                yaml_copy[k1] = include_yaml(v1)
    
    elif isinstance(yaml_,list):
        yaml_copy = [include_yaml(x) for x in yaml_].copy()
    
    else:
        yaml_copy = yaml_
    

    # print(yaml_copy)
    return yaml_copy



include_yaml(father_yaml)

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值