Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
# Takes in some JSON objects (one per line) on stdin
# Outputs a TSV on stdout
# Pipe it to a file or pipe it to your favorite shell utility
import codecs
import json
import string
import sys