美文网首页
yaml 学习教程

yaml 学习教程

作者: 至极L | 来源:发表于2019-05-24 14:54 被阅读0次
    • 安装pyyaml
    pip install pyyaml
    
    • yaml 数据保存
    import yaml
    result = []
    for i in range(5):
        a= {'merchant': '1514', 'str_attr': '1514', 'url': 'http://product.resources.deepd49ad6f148eb.png'}
        result.append(a)
    
    yaml.dump(result, open("mgxx_ali.yaml", "w"))
    
    • mgxx_ali.yaml 的文件格式为
    - {merchant: '1514', str_attr: '1514', url: http://product.resources.deepd49ad6f148eb.png'}
    - {merchant: '1514', str_attr: '1514', url: http://product.resources.deepd49ad6f148eb.png'}
    - {merchant: '1514', str_attr: '1514', url: http://product.resources.deepd49ad6f148eb.png'}
    - {merchant: '1514', str_attr: '1514', url: http://product.resources.deepd49ad6f148eb.png'}
    - {merchant: '1514', str_attr: '1514', url: http://product.resources.deepd49ad6f148eb.png'}
    

    相关文章

      网友评论

          本文标题:yaml 学习教程

          本文链接:https://www.haomeiwen.com/subject/kbbgzqtx.html