-
-
Save marcinlawnik/204640092273c372c54c to your computer and use it in GitHub Desktop.
This file contains 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 | |
# based on http://stackoverflow.com/questions/7052947/split-95mb-json-array-into-smaller-chunks | |
# usage: python json-split filename.json | |
# produces multiple filename_0.json of 1.49 MB size | |
import json | |
import sys | |
with open(sys.argv[1],'r') as infile: | |
o = json.load(infile) | |
chunkSize = 4550 | |
for i in xrange(0, len(o), chunkSize): | |
with open(sys.argv[1] + '_' + str(i//chunkSize) + '.json', 'w') as outfile: | |
json.dump(o[i:i+chunkSize], outfile) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment