Skip to content

Instantly share code, notes, and snippets.

@chmarr
Created October 22, 2015 00:21
Show Gist options
  • Save chmarr/e9d692032a2cee03b9eb to your computer and use it in GitHub Desktop.
Save chmarr/e9d692032a2cee03b9eb to your computer and use it in GitHub Desktop.
Convert YAML file to JSON
import yaml
import json
import sys
with open(sys.argv[2], "w") as outf, open(sys.argv[1]) as inf:
o = yaml.safe_load(inf)
json.dump(o, outf)Dtex-Mac23:tmp ccogdon$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment