python 2.7 - Google App Engine The url "/" does not match any handlers error -
i trying run program https://github.com/rutherford/nltk-gae because want use nltk in google app engine. copied necessary files folder , when run error "the url "/" not match handlers." think wrong in app.yaml configuration. please me find out problem, thanks.
my python code
app.yaml
i changed still not working
application: nltkforappengine version: 0-1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /favicon.ico static_files: favicon.gif upload: favicon.gif - url: /nltk.* script: nltker.application - url: /.* script: nltker.application libraries: - name: numpy version: "1.6.1"
there's handler '/nltk' (thats line 12-13 of app.yaml
do, supported wsgiapplication
configuration @ bottom of nltker.py
).
there no handler specified '/'.
from quick glance @ code, looks author's intent use /nltk
starting point.
Comments
Post a Comment