Skip to content

Instantly share code, notes, and snippets.

@azakordonets
Created April 30, 2014 09:50
Show Gist options
  • Save azakordonets/aa054f32546ec24c01cc to your computer and use it in GitHub Desktop.
Save azakordonets/aa054f32546ec24c01cc to your computer and use it in GitHub Desktop.
Converty yaml to json on Python
import yaml
import json
yml = "file_path"
data = yaml.load(open(yml,'r'))
json = json.dumps(data)
print(json)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment