[google-appengine] Re: URL path in python script handlers

2009-06-17 Thread Vadim Zaliva
On Jun 16, 3:56 am, Sylvain wrote: > Did you check the WSGIApplication ? > > application = webapp.WSGIApplication([('/feed/.*', MainPage)], >                                      debug=True) > Thanks! That's was the problem - I forgot to adjust WSGIApplication params accordingly. Vadim --~--~-

[google-appengine] URL path in python script handlers

2009-06-15 Thread Vadim Zaliva
I am trying to write Python handler which will analyze URL path. For example I would like it to be accessible as: /feed/1 /feed/2 So I've put following to app.yaml: - url: /feed/.* script: feed.py In my handler I print path: def get(self): logging.debug("FEED with path '%s'" % s