[google-appengine] Store Data from .csv into Database - Which one?

2012-02-23 Thread Jan
Hi, i want to read some data out of .csv files - so i have rows of data. First i thought i store this in a sql database. Problem here: To use the google cloud sql, you have to request access for that. I guess this takes some time. Is there any alternative way to store this data and query it

Re: [google-appengine] Store Data from .csv into Database - Which one?

2012-02-23 Thread Robert Kluin
Hi Jan, Well, there is the datastore: http://code.google.com/appengine/docs/python/datastore/ If you don't want to write something to load and parse the csv in to entities yourself, you can use the bulkloader. http://code.google.com/appengine/docs/python/tools/uploadingdata.html