forked from extern/se-scraper
6 lines
113 B
Python
6 lines
113 B
Python
|
import pprint
|
||
|
import sys
|
||
|
import json
|
||
|
|
||
|
if len(sys.argv) == 2:
|
||
|
print(pprint.pformat(json.load(open(sys.argv[1]))))
|