Is it possible to map a URL pattern (regular expression or another match) to one RequestHandler? If so, how can I do this?
Ideally, I would like to do something like this:
application=WSGIApplication([('/*',MyRequestHandler),])
So, MyRequestHandler processes all executed requests. Please note that I am working on proving the concept of the application, where by definition I will not know all the URLs that will go to the domain. Also note that I do this in the Google App Engine, if that matters.
source
share