yaml 学习教程

  • 安装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 学习教程)