skip to Main Content

Simplify JSON to help CSV conversion, python

I have a JSON file that I want to convert to CSV. I'm doing it with: import pandas as pd with open('test.json', encoding='utf-8') as inputfile: df = pd.read_json(inputfile) df.to_csv('test.csv', encoding='utf-8', index=False) Everything works but my JSON has structure that I…

VIEW QUESTION
Back To Top
Search