Hi There are many ways. I assume models will represent rows in your spreadsheet.
1. You could export it to csv, and use the bulkloader tools to build a custom importer. 2. If its a once off you could read the spreadsheet in a remote shell, and write entities to the datastore 3. If its a big spreadsheet and you need to spend lots of time processing it, you could export as csv, write it to blobstore and use mapreduce to process it. 4. You could upload into to google docs and process it using gdata via tasks. I have done all except option 3. Why don't you explain a little more about your objectives, what you want to do with the data, how the data might be represented in the datastore, how often you want to process this spreadsheet etc... Or am I over complicating things and you just want to store the spreadsheet as a blob and allow people to just download the spreadsheet ;-) Rgds Tim -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
