Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to create a JSON file from multiple CSV files. The files would be named like bugs.csv and executions.csv.

Example of the bugs.csv files:

month,,1,2,3,4
app1,ownerA,42,34,38,12
app2,ownerA,13,23,24,43
app3,ownerB,48,72,39,62

Example of the executions.csv files:

month,,1,2,3,4
app1,ownerA,1200,1500,900,1000
app2,ownerA,600,650,660,540
app3,ownerB,2750,3500,3000,3200

What I would like the JSON to look like:

[{"Application":"app1",
"Owner":"ownerA",
"bugs":[[1,42],[2,34],[3,38],[4,12]],
"executions":[[1,1200],[2,1500],[3,900],[4,1000]]},

{"Application":"app2":,
"Owner":"ownerA",
"bugs": [[1,13],[2,23],[3,24],[4,43]],
"executions":[[1,600],[2,650],[3,660],[4,540]]}]
share|improve this question
1  
a python script using the csv and json modules could do this for you in a few lines. or you may get lucky and someone more karma-hungry will write it for you. – philo Oct 24 '12 at 2:04
Thanks philo. Does anyone one else have suggestions using javascript? All of the rest of the work is in javascript and our service provider doesn't have python devs. – ecfitzgerald Oct 25 '12 at 12:28
you can also use OpenRefine with a custom JSON export. However OpenRefine doesn't support automation. It will good for a one time job only. – magdmartin Nov 13 '12 at 17:06
You can refer this stackoverflow.com/questions/15332450/… – swapnil Mar 12 at 5:35
Thanks magdmartin, that did the trick. – ecfitzgerald Mar 25 at 13:44
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.