File size: 204 Bytes
712efbd
 
 
 
 
 
1
2
3
4
5
6
import sys, yaml, json
with open('sections_with_details.json', 'r') as json_file:
    data = json.load(json_file)

with open('sections_with_details.yaml', 'w') as yaml_file:
    yaml.dump(data, yaml_file)