2010年12月11日 星期六

[Python] Hello World

helloworld.py 是網頁程式的部份

print "Content-Type: text/plain"
print ''
print 'Hello, world! I\'m finalevil~'

第1行:設定目前網頁資料的類型為"文字"
第3行:輸出至網頁的文字內容


app.yaml 則是GAE的配置文件

application: helloworld
version: 1
runtime: python
api_version: 1

handlers:
- url: /.*
  script: helloworld.py