I did some online research and I found a script to convert JSON files to CSV file which I downloaded and stored on my local filesystem as json2csv.py. The tutorial says I have to execute this:
python.exe json2csv.py [input_file] [output_file]
Where do I need to store json2csv.py and what is the format of [input_file]? I tried typing this is in Python Shell(IDLE):
python.exe C:\json2csv.py [c:\inputfile.json] [c:\output.csv]
But I'm getting syntax error. I'm a newbie and really need help.
I'm on Windows 7.