skip to Main Content

parse JSON file to CSV with key values null in python

Example {"data":"value1","version":"value2","version1":"value3"} {"data":"value1","version1":"value3"} {"data":"value1","version1":"value3","hi":{"a":"true,"b":"false"}} I have a JSON file and need to convert it to csv, however the rows are not having same columns, and some rows have nested attributes,how to convert them in python script. I tried JSON to…

VIEW QUESTION
Back To Top
Search