Fusion Tables to JSON
I have been messing around with Google Fusion Tables a lot over the past few months and I really like the service. However it really bothered me that the only format that the response data came in was CSV. I also wanted to be able to work with Fusion Tables query data entirely on the browser/client side. So I spent part of the weekend writing an application that proxies Fusion Tables API queries and transforms them from CSV into JSON. I also added a simple Javascript that you can embed on your page and then make Fusion Table queries directly from Javascript.
I posted the application on App Engine and you can find it here: http://ft2json.appspot.com
I wrote it in Python and used Tornado Web Server to help parse requests. Tornado works quite well within App Engine.

