Skip to content

Instantly share code, notes, and snippets.

@rondreas
Created January 6, 2017 12:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rondreas/920bc58cfcd1e402fc02245e74278d44 to your computer and use it in GitHub Desktop.
Save rondreas/920bc58cfcd1e402fc02245e74278d44 to your computer and use it in GitHub Desktop.
Load and print json file
import json
with open(filePath, 'r') as fp:
j = json.load(fp)
print(json.dumps(j, sort_keys=True, indent=2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment