8 lines
197 B
Python
8 lines
197 B
Python
import yaml
|
|
import json
|
|
|
|
with open('input.yaml', encoding='UTF-8') as f:
|
|
obj = yaml.safe_load(f)
|
|
with open('output.json', 'w', encoding='UTF-8') as f:
|
|
json.dump(obj, f, ensure_ascii=False)
|