Hi,

On Sep 20, 4:15 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> I want to upload a 200MB file in google app engine.
> What can I do?

If you combine these you can work around the upload limitation:

* Amazon S3

* S3 POST: 
http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1434&ref=featured

* boto: http://code.google.com/p/boto/

* appenginepatch: http://code.google.com/p/app-engine-patch/

Your users will have to upload files to S3 via POST. IOW, the files
have to go directly to S3 instead of passing the App Engine servers.
The App Engine server only generates a policy which authorizes the
upload. AFAIK, boto already has a simple function for generating that
policy. Just look at
boto.s3.S3Connection.build_post_form_args()

Bye,
Waldemar Kornewald
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to