Guest User

Untitled

a guest
Oct 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. from gzip import open as gzip_open
  2. from json import loads
  3.  
  4.  
  5. with gzip_open('data/2012-06-20-4.json.gz', 'rb') as f:
  6. content = f.read()
  7. print content.replace("}{", "}\n{")
Add Comment
Please, Sign In to add comment