Thanks. I am a complete beginner in all this so I just wanted to ask you do you have an example of the application how it should look like? For example you mean like separate Android application which I will use only for CSV upload?
On Thursday, April 3, 2014 4:09:09 AM UTC-4, Vinny P wrote: You can configure the App Engine bulkloader to automatically upload the > file and create the relevant entities: > https://developers.google.com/appengine/docs/python/tools/uploadingdata#Python_Configuring_the_bulk_loader. > The only issue is that you'll have to create a YAML file to describe what > the entity will look like (the process is outlined in the above link). > > If you don't want to use the bulkloader, another option is to write an > application to parse the CSV file and create the entities. Reading CSV > files is fairly straightforward, there are libraries available for it > within most languages. For example, here's the Go CSV parser: > http://golang.org/pkg/encoding/csv/ and one for Python: > https://docs.python.org/2/library/csv.html . This is a better route to go > if you frequently have to upload new or updated CSV files. > > > > ----------------- > -Vinny P > Technology & Media Advisor > Chicago, IL > > App Engine Code Samples: http://www.learntogoogleit.com > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
