ダウンロード - Google App Engine - Google CodeからGoogleAppEngineLauncher-1.2.7.dmgをダウンロードしてインストール。
dev_appserver.pyとappcfg.pyコマンドも入ります。GAEjと同じ名前ですね。
% mkdir hello-gae-python
% cd hello-gae-python
% vi hello.py
print "Content-Type: text/plain"
print ""
print "Hello, GAE Python!"
普通のCGIですね。
% vi app.yaml
application: hello-gae-python
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: hello.py
GAEjのappengine-web.xmlとweb.xmlを一つにした感じですね。
% dev_appserver.py .
うん。やっぱりGAEjよりだいぶ楽ですね。