Flask is a micro framework for python. I wanted to create a simple example using Flask on Google App Engine so I created this todo list app. You can try it out for yourself at flasktodo.appspot.com. To give you an idea of how simple coding in a micro framework can be I’ve included the code below. application.py from flask import Flask app = Flask(__name__) from google.appengine.ext import db from