tutorial.eyehunts.com
Python write JSON to file
Use json.dumps() method to write JSON to file in Python. Create a JSON file using the open(filename, ‘w’) function and Use file.write(text)..
Rohit