Skip to content

Instantly share code, notes, and snippets.

@Wuvist
Created May 3, 2021 08:15
Show Gist options
  • Save Wuvist/75ed64de8965997570c32ebfa6195760 to your computer and use it in GitHub Desktop.
Save Wuvist/75ed64de8965997570c32ebfa6195760 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import sys
formatted_json = sys.stdin.read()
from pygments import highlight, lexers, formatters
colorful_json = highlight(formatted_json, lexers.JsonLexer(), formatters.TerminalFormatter())
print(colorful_json)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment