我安装了Python2.6和Google App Engine(GAE)。
我意识到GAE不能在2.6上运行,所以我也安装了2.5。
现在我有一个非常基本的代码,如下所示,它不会显示在localhost:8080
上我在我的dir testapps下的cmd.exe中输入了以下内容。
c:\ Users \ myname \ testapps>“\ Program Files \ Google \ google_appengine \ dev_appserver.py”helloworld
我希望有人带领我走向正确的方向。
的HelloWorld / helloworld.py
print 'Content-Type: text/plain'
print ''
print 'Hello, world!'
的HelloWorld / app.yaml中
application: helloworld
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: helloworld.py
答案 0 :(得分:-1)
我建议您查看SDK附带的留言板示例程序。它位于演示目录中,我认为查看guestbook.py的结构将大大有助于您获得可用的应用程序。