import json
import gzip
import linecache
cnt = 0
jsonfile = 'refsnp_blobs.json.gz'
........
....
fin = gzip.open(jsonfile,'r')
fin.seek(100, 0) #go to random position
print(fin.readline())
exit()
refsnp_blobs.json.gz is available on external FTP server, I don't want to download since its more the 50 gb. If there is any way to do this ?