Skip to content

Instantly share code, notes, and snippets.

@washt
Forked from thiagophx/pp
Created March 1, 2017 19:56
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 washt/0f45971664c59e4d797273c0e3bbe477 to your computer and use it in GitHub Desktop.
Save washt/0f45971664c59e4d797273c0e3bbe477 to your computer and use it in GitHub Desktop.
JSON Pretty Print Stream
#!/usr/bin/python -u
import sys, json
from pygments import highlight
from pygments.lexers import JsonLexer
from pygments.formatters import Terminal256Formatter
while True:
line = sys.stdin.readline()
if line.strip():
print highlight(json.dumps(json.loads(line.strip()), sort_keys=False, indent=4, separators=(',',': ')), JsonLexer(), Terminal256Formatter(style='paraiso-dark'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment