Skip to content

Instantly share code, notes, and snippets.

@justinpitts
Created October 8, 2019 17:24
Show Gist options
  • Save justinpitts/ba29a378e71813fa299f7d972e43920c to your computer and use it in GitHub Desktop.
Save justinpitts/ba29a378e71813fa299f7d972e43920c to your computer and use it in GitHub Desktop.
Corrected listing 11.1 for Google Cloud Platform In Action
import webapp2
class HelloWorld(webapp2.RequestHandler):
def get(self):
self.response.write('Hello from App Engine!');
app = webapp2.WSGIApplication([
('/', HelloWorld),
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment