I have a list of dictionaries, How do I dump it using JSON one line per dictionary?
I tried:
json.dump( d, open('./testing.json','w'), indent=0)
where d is the list of dictionaries. But this newlines every (key,value) pair. I want each dictionary in one line. How should I do this?
Thanks