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

2009-06-16 Thread Sylvain
Did you check the WSGIApplication ? application = webapp.WSGIApplication([('/feed/.*', MainPage)], debug=True) On 16 juin, 03:04, Vadim Zaliva l...@codeminders.com wrote: I am trying to write Python handler which will analyze URL path. For example I would

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

2009-06-16 Thread Nick Johnson (Google)
On Tue, Jun 16, 2009 at 2:04 AM, Vadim Zaliva l...@codeminders.com wrote: 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 We also