Skip to content

Instantly share code, notes, and snippets.

@vishnu21
Last active July 12, 2018 06:47
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save vishnu21/c7a8211a744b25f3c3eabba74429d9ff to your computer and use it in GitHub Desktop.
Save vishnu21/c7a8211a744b25f3c3eabba74429d9ff to your computer and use it in GitHub Desktop.
import yaml
import json
import argparse
import sys
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('--json', help='Input file (JSON)', required=True)
parser.add_argument('--yaml', help='Output file (YAML)', required=True)
if len(sys.argv) == 1:
parser.print_help()
sys.exit(1)
args = parser.parse_args()
json_file = args.json
yaml_file = args.yaml
with open(json_file) as fp:
json = json.load(fp)
with open(yaml_file, 'w') as yaml_fp:
yaml.safe_dump(json, yaml_fp, allow_unicode=True, default_flow_style=False)
print "Created YAML file {0}".format(yaml_file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment