Questions Problem Convert Json File To Csv

Questions Problem Convert Json File To Csv

eliantis

User
User ID
50146
Feb 17, 2024
92
9
#CR
0
  • Thread starter
  • Thread Author
  • #1
Good morning
I am looking for software to transform json files into csv that supports large files over 40 GB
there is Altova Mapforce but it costs money, I hope you know a solution to my problem
thanks in advance
 
If you are on the lookout for software to tackle massive JSON files, Python with libraries like Pandas or Dask might just do the trick. They are pretty nice at handling hefty datasets and can whip those JSON files into CSV format without breaking a sweat.
 
If you are on the lookout for software to tackle massive JSON files, Python with libraries like Pandas or Dask might just do the trick. They are pretty nice at handling hefty datasets and can whip those JSON files into CSV format without breaking a sweat.
Thanks for letting us know, I wasn't aware of Dask but looks very interesting
Using just Python Pandas will usually choke whenever a file is more than 5 Gb because it will run out of memory (or you can have it read the file line by line but that's very slow)
Any other tips on working with large datasets with Py?
 
Back
Top Bottom