12 February 2009 ~ Comments Off

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> <body> <form action="/sign" [...]

Continue Reading

03 February 2009 ~ Comments Off

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 [...]

Continue Reading