Skip to content

Instantly share code, notes, and snippets.

@edenwaith
Created October 14, 2014 15:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save edenwaith/406993d4ca59b058efe6 to your computer and use it in GitHub Desktop.
Save edenwaith/406993d4ca59b058efe6 to your computer and use it in GitHub Desktop.
TextWrangler Text Filter to Format JSON
#!/usr/bin/python
import fileinput
import json
if __name__ == "__main__":
text = ''
for line in fileinput.input():
text = text + ' ' + line.strip()
jsonObj = json.loads(text)
print json.dumps(jsonObj, sort_keys=False, indent=2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment