Feb
12
Handling Web Forms Google App Engine
If we want users to be able to post their own greetings, we need a way to process information submitted by the user with a web form. The webapp framework makes processing form data easy.
1
2
3
4
5
6
7
8
9
10
11
class MainPage(webapp.RequestHandler):
def get(self):
self.response.out.write("""
<html>
[...]
Feb
3
Basics of Google App Engine
Developing a Google App using the App engine is quick and easy! If you have a background in python then its even easier! For most of us that don’t have a lot of python in our background it becomes a little more challenging.
Our first step is to get the foundation of python so we can [...]


