Skip to content

Instantly share code, notes, and snippets.

@djoreilly
Created May 17, 2018 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djoreilly/9f38ddd11f7ffa1b29cb8c66b4ca65f1 to your computer and use it in GitHub Desktop.
Save djoreilly/9f38ddd11f7ffa1b29cb8c66b4ca65f1 to your computer and use it in GitHub Desktop.
Convert json to yaml
#!/usr/bin/env python3
import sys, json, yaml
yaml.dump(json.loads(sys.stdin.read()), sys.stdout, default_flow_style=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment