Created
April 7, 2011 16:17
-
-
Save 1stvamp/908114 to your computer and use it in GitHub Desktop.
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 python | |
from sys import argv | |
from pprint import pprint | |
try: | |
import json | |
except ImportError: | |
import simplejson as json | |
pprint(json.load(file(argv[1]))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment