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 enter image description here

app.yaml

enter image description here


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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -