Last active
November 3, 2023 11:40
-
-
Save noahcoad/46909253a5891af3699580b8f17baba8 to your computer and use it in GitHub Desktop.
Python to convert json to yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# convert json to yaml | |
# http://pyyaml.org/wiki/PyYAMLDocumentation | |
# python3 json2yaml.py < ~/code/manpow/moneybug/mbuploader/support/offices.json | |
# gist https://gist.github.com/noahcoad/46909253a5891af3699580b8f17baba8 | |
import yaml, json, sys | |
sys.stdout.write(yaml.dump(json.load(sys.stdin))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To format yaml file