Cloud Computing
helloworld.py
:print 'Content-Type: text/plain' print '' print 'Hello, world!'
app.yaml
: application: helloworld version: 1 runtime: python api_version: 1 handlers: - url: /.* script: helloworld.py
google_appengine/dev_appserver.py helloworld/
http://localhost:8080/
8 of 19