标签:color form http convert span mat class project aml
用于json、txt、yaml之前文件格式的相互转换
from format_converter import converter data = converter < ‘data.json‘ # 读取配置 data = converter < ‘file.json‘ data = converter < ‘file.txt‘ data = converter < ‘file.yaml‘ # 写入配置 converter(data) > ‘file.json‘ converter(str(data)) > ‘file.txt‘ converter(data) > ‘file.yaml‘
参考:https://pypi.org/project/format_converter/
标签:color form http convert span mat class project aml
原文地址:https://www.cnblogs.com/snailgirl/p/9578698.html