Hello team,
i’m trying to Convert json to csv and online “Python JSON to EXCEL - JSON to EXCEL Converter | products.aspose.com” works perfect, but with python code, doesn’t work
import jpype
import asposecells
jpype.startJVM()
from asposecells.api import Workbook
workbook = Workbook("input.json")
workbook.save("output.csv")
jpype.shutdownJVM()
jpype.shutdownJVM()
output.csv with python bring a different format (all data in the same columm). I need it in different columm like online “Python JSON to EXCEL - JSON to EXCEL Converter | products.aspose.com” bring me the data.
Thanks