This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |