tags:

views:

44

answers:

1

I'm using osx and want to create and edit json files. Is there a program that I can use to do this automatically?

For example I have an excel file that I want to convert into JSON format. I thought I could read in the file using python and write it out according to the json schema, but I was not sure if there was an easier way to do it.

+1  A: 

If you want to convert an Excel document to JSON you can use something like: http://tamlyn.org/tools/csv2json/

If you're just looking to manipulate JSON data visually you can use something like: http://braincast.nl/samples/jsoneditor/

Luca Matteis