1234567891011121314151617181920212223242526 |
- import yaml
- import json
- import sys
- from pprint import pprint
- filename = sys.argv[1]
- with open(filename) as fp:
- data = yaml.safe_load(fp)
- newfile = filename
- newfile = newfile.replace(".yaml", ".json")
- with open(newfile, 'w') as fp:
- json.dump(data, fp, indent=2)
|