I am trying to run a program from https://github.com/rutherford/nltk-gae because I want to use NLTK in Google App Engine. I copied necessary files to the folder and when I run I get this error "The url "/" does not match any handlers." I think something wrong in my app.yaml configuration. Please help me to find out the problem, thanks.
my python code
app.yaml
I changed it but 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"