Google App Engine Launcher没有为Python Mac运行我的hello世界

时间:2015-07-02 02:45:42

标签: python macos google-app-engine

我已尝试过所有现有资源,但无济于事。

这是我的app.yaml代码:

version: 1
runtime: python27
api_version: 1
threadsafe: true

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

这是我的webapp2代码:

import webapp2

class MainPage(webapp2.RequestHandler):
    def get(self):
        self.response.headers['Content-Type'] = 'text/plain'
        self.response.write('Hello, World!')

app = webapp2.WSGIApplication([
    ('/', MainPage),
], debug=True)

全部在我的hello_world目录中。我继续添加现有的应用程序并指向helloorld.py(webapp2)脚本和app.yaml代码所在的hello_world目录。我在谷歌应用引擎上运行它只是保持加载,它永远不会完成。因此,我的http://localhost:8080/页面永远不会加载。

1 个答案:

答案 0 :(得分:0)

您错过了application:中的app.yaml行。

您可能还需要在图书馆部分列出第三方webapp2,如下所示:

libraries:
- name: webapp2
  version: "2.5.2"