Python Forum
Looking for csv to json convertion script - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Looking for csv to json convertion script (/thread-3894.html)



Looking for csv to json convertion script - rajaniyer123 - Jul-06-2017

Hi,

I am looking for script which will convert input into JSON in below format

{"logtime": "Jun 28 00:00:28", "AvgCPU": "90"}
{"logtime": "Jun 28 00:10:28", "AvgCPU": "80"}


I went through couple of the readily available scripts but in all of them all entries are merged in single line.

Thanks
Rajan


RE: Looking for csv to json convertion script - snippsat - Jul-06-2017

Dos you csv file look like this?
Output:
logtime,Jun 28 00:00:28,AvgCPU:90 logtime,Jun 28 00:10:28,AvgCPU:80