Hi, Both Python and Java have supported libraries for decompressing zip files. Once you've decompressed the files you could process them in a variety of ways, for instance by writing them to the blobstore or creating datastore entities.
Robert On Thu, Apr 14, 2011 at 22:50, davidgm <[email protected]> wrote: > Thank you for reading Robert. > > What I need on AppEngine side : > * for each small : read their headers, they have some metadata going > into db.Model properties, along with the file content. > * send some of the files to clients, not all the files, in text > format. > > Making a zip before upload is fine, but I don't know if there is > something in AppEngine to unzip it on the server side and deal with > each file. > > David > > On 13 avr, 19:05, Robert Kluin <[email protected]> wrote: >> Hi David, >> If you just want to upload a single file, and they are all pretty >> small, why don't you just zip them? Or, maybe I don't understand what >> you are asking...? >> >> Robert >> >> >> >> >> >> >> >> On Wed, Apr 13, 2011 at 19:53, davidgm <[email protected]> wrote: >> > Hi there, >> >> > I've read >> > * how to upload one text file - that's ok. >> > * how to bulk upload data (csv) - that's ok also. >> >> > But this doesn't help with for this problem: >> >> > => I need to upload a few dozen of small text files (a few kbytes >> > each). >> >> > I need to refresh them sometimes. They will be stored in datastore >> > with a few metadata (filename and a release no). >> >> > I've been thinking to merge them into one big file to split then later >> > in GAE. But I would rather not do it this way, unless you have a nice >> > technique to handle that. They all have special characters of all >> > kinds and unicode... >> >> > Do you have any suggestion ? >> > Thank you >> >> > -- >> > 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 >> > athttp://groups.google.com/group/google-appengine?hl=en. > > -- > 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. > > -- 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.
