I followed the sample code below to upload a zip file to blobstore. I can download the zip file, but I have some problems reading the file.
Sample code http://code.google.com/appengine/docs/python/blobstore/overview.html#Complete_Sample_App
There are 6 CSV files in my zip file, in which my system will read the files and import the values into the data warehouse. However, I know that there are some restrictions on reading a file, which should be less than 1 MB.
Can someone tell me how I can read a zip file and process a CSV file? What happens if my data stored in blobstore is larger than 1 MB?
Hope to hear from you. Thank you
source
share