zemirco / json2csv

Convert json to csv with column titles
http://zemirco.github.io/json2csv
MIT License
2.71k stars 365 forks source link

specify column as it is in json #129

Closed DaniyalGeek closed 6 years ago

DaniyalGeek commented 8 years ago

how to get column as it is in csv like if i use doubleQutoes then a339ce05-61de-4544-ab2e-fcc2b3422c1a,rate-limiting,f09ed2d3-d5a7-4d77-ad1c-c6afffa4bfb8,{continue_on_error:false,async:false,day:12},,2016-07-14T14:18:25.995Z,true

DaniyalGeek commented 8 years ago

and what i need is

a339ce05-61de-4544-ab2e-fcc2b3422c1a,rate-limiting,f09ed2d3-d5a7-4d77-ad1c-c6afffa4bfb8,"{"continue_on_error":false,"async":false,"day":"12"}",,2016-07-14 14:18:25+0000,True

juanjoDiaz commented 6 years ago

The output in the latest version of json2csv is:

"a339ce05-61de-4544-ab2e-fcc2b3422c1a","rate-limiting","f09ed2d3-d5a7-4d77-ad1c-c6afffa4bfb8","{""continue_on_error"":false,""async"":false,""day"":12},,""2016-07-14 14:18:25+0000"",true"

as expected, so this can be closed.