Skip to content

Instantly share code, notes, and snippets.

View jhsea3do's full-sized avatar
🤡
I may be slow to respond.

jhsea3do jhsea3do

🤡
I may be slow to respond.
View GitHub Profile
@jhsea3do
jhsea3do / pp
Created August 4, 2018 07:02 — forked from thiagophx/pp
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():