This is one of the methods I used. None of the methods including this work & end up freezing my laptop because the large data file cant be read.
import json
infile = open("myfile.json","r")
outfile = open ("myfile.csv","w")
writer = csv.writer(outfile)
for row in json.loads(infile.read()):
writer.writerow(row)