Google app engine 谷歌互动外壳

Google app engine 谷歌互动外壳,google-app-engine,interactive-shell,Google App Engine,Interactive Shell,我对谷歌应用程序引擎几乎是新手,但我有一个家庭作业要用它创建一些应用程序。 我正在尝试使用google interactive shell脱机调试我的应用程序。看起来不错,但当我试图打开进行调试时,它给了我一个坏的URL。我检查了我的目录,它们对我来说很好 我想我的问题出在app.yaml文件中。嗯,我对yaml文件一无所知,谁能告诉我哪里出错了 这是我的app.yaml(我将所有交互式shell属性放在名为“shell”的文件夹中) 如果您想在中找到shell.*,它是否应该是yaml规则中的

我对谷歌应用程序引擎几乎是新手,但我有一个家庭作业要用它创建一些应用程序。 我正在尝试使用google interactive shell脱机调试我的应用程序。看起来不错,但当我试图打开进行调试时,它给了我一个坏的URL。我检查了我的目录,它们对我来说很好

我想我的问题出在app.yaml文件中。嗯,我对yaml文件一无所知,谁能告诉我哪里出错了

这是我的app.yaml(我将所有交互式shell属性放在名为“shell”的文件夹中)


如果您想在中找到shell.*,它是否应该是yaml规则中的shell


关于这个错误,你能更具体一点吗?什么是shell/shell.py?它来自哪里?“断开的URL”到底是什么?@NickJohnson我将shell.py和其他属性(如static/*和templates/*文件夹)放在一个名为“shell”的文件夹中@DrewSears我收到一条这样的错误消息,该网页可能暂时关闭,或者可能已永久移动到一个新的网址。@AlwinTyanto这很好,但您还没有解释什么是shell.py或它来自何处。
application: myapp
version: 1

runtime: python
api_version: 1

handlers:
- url: /static
  static_dir: shell/static
  expiration: 1d

- url: /remote_api
  script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py

- url: /shell.*
  script: shell/shell.py

- url: /
  script: myapp.py
- url: /shell
  script: shell/shell.py