dump json data line by line code example
Example 1: save json file python
with open('data.txt', 'w') as outfile:
json.dump(data, outfile)
Example 2: python json change line
file.write("\n")
with open('data.txt', 'w') as outfile:
json.dump(data, outfile)
file.write("\n")