Re: [google-appengine] export to csv

2010-01-27 Thread Pablo Francavilla
Hi Wesley, I think I didn't express well My Application it's written with GAE/J . Our customer ask us to give him a way to export to csv the entities of his application. So, I Googled a lot, and I found the only way to do that it's deploying a parallel python application. I follow these links

[google-appengine] export to csv

2010-01-26 Thread Pablo Francavilla
Hi, I'm working to export the datastore entities to csv, something too simple like that take me a long of time, and I still can't solve it. My app it's developed with GAE/J , but I follow a few posts and google documentation to deploy an python app to run the script. Finally I got the script

Re: [google-appengine] export to csv

2010-01-26 Thread Wesley C (Google)
it looks like you have some issue with your app.yaml file. please make sure it's of a format similar to the following: application: sandbox-getsense-it version: 1 runtime: python api_version: 1 handlers: - url: /.* script: main.py also, here are two recent threads about creating CSV files: