1. Python:
Version:Python 2.5 or above
2.Google App Engine SDK
http://code.google.com/intl/zh-CN/appengine/downloads.html
3.在Google App Engine SDK安装目录下创建Helloworld目录和helloworld.py
print 'Content-Type: text/plain'
print ''
print 'Hello, world!'
4. 创建配置文件app.yaml
配置文件以new_project_template目录下的app.yaml为模板
application: helloworld
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: helloworld.py
其中各行解释如下: