Skip to content

Instantly share code, notes, and snippets.

@mikemccracken
Last active August 29, 2015 14:24
Show Gist options
  • Save mikemccracken/5ac309aa0bb6ef9f51e7 to your computer and use it in GitHub Desktop.
Save mikemccracken/5ac309aa0bb6ef9f51e7 to your computer and use it in GitHub Desktop.
check a yaml file to see if it loads
#!python3
import yaml
import sys
with open(sys.argv[1]) as yf:
y = yaml.load(yf)
print(y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment