I have a directory with hundreds of JSON files, and would like to convert and merge them into one CSV file.
I found this question. One answer explains how to convert one JSON file to CSV:
import pandas as pd
with open('jsonfile.json', encoding='utf-8') as inputfile:
df = pd.read_json(inputfile)
df.to_csv('csvfile.csv', encoding='utf-8', index=False)
Using that code, I tried to create a loop, but I can't make it work (I'm new to programming). This is what I tried:
import pandas as pd
import os
dir1 = 'jsfiles'
fileList = os.listdir(dir1)
for ffile in fileList:
with open(ffile, encoding='utf-8') as inputfile:
df = pd.read_json(inputfile)
df.to_csv('csvfile.csv', encoding='utf-8', index=False)
I get this error:
ValueError: Trailing data