Are there examples to upload an image to Google App Engine(Python) through HTTP? Also, is it possible to retrieve the image from Blob store and share the image link to someone?
Are there examples to upload an image to Google App Engine(Python) through HTTP? Also,
Share
Here’s an example of a guestbook app from Google, where users can upload avatar images. It explains how to use the
db.BlobProperty()to store the image. How to write a handler to upload (class Guestbook), and how to serve the image (class Image). It even goes on to explain how to scale images.