Putting it all together

Now that we had a look at the various services that are available to us on Google App Engine, it is time to put these things together. We are going to develop a very simple application that lets users log in and log out. Once logged in, users can upload pictures with a title and description. The uploaded pictures are listed on the page along with previews. Each user of course has their own collection when they log in and can't see photos from another user. We use users, namespace, Memcache, Blobstore, and the images API to implement this. Let's go through the code file by file.

First, we have config.py, which contains a few definitions:

import os import jinja2 # Used as key to store rendered photo templates in memcache PHOTOS_CACHE_KEY ...

Get Mastering Google App Engine now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.