blob: 2aa315ea87d524b0b6e4551e056d63cf8b5f0ba8 [file] [log] [blame]
Keong Limc44bcf62019-07-19 18:43:10 +10001#!/usr/bin/env python
2# convert yaml to json
3# pip3 install pyyaml
4# http://pyyaml.org/wiki/PyYAMLDocumentation
5# py3 yaml2json.py < ~/code/manpow/homeland/heartland/puphpet/config.yaml
6# gist https://gist.github.com/noahcoad/51934724e0896184a2340217b383af73
7
8import yaml, json, sys
9sys.stdout.write(json.dumps(yaml.load(sys.stdin), sort_keys=True, indent=2))
10