I currently have a python-based GAE site that has a signup form where users can input account details along with a profile image to register. Based on suggestions from SO, I'm going with a mix of datastore and blobstore so it seems that this would require a simultaneous datastore put and a blobstore upload
However, from the google docs and the sample code I've been able to get running, it looks like the blobstore upload requires a redirect to a separate upload handler which conflicts with the datastore post handler (part of the current form handler)
Have been primarily referencing the following example for blobstore: https://cloud.google.com/appengine/docs/python/blobstore/#Python_Uploading_a_blob
Wanted to see what is the best way to handle this type of setup? I assume this would be quite a common form of usage... any sample code would be very helpful!