I have a large JSON response I'm reading from an HTTP request. Is there any easy way in Python to write JSON to file iteratively so that I don't have to read the entire JSON response into memory? With CSV and other data types its much simpler bc you can just append the file but the closing brackets/commas in JSON obviously make it a bit trickier
Apologies if this has already been asked