我有一個典型的WSGI應用程序,像這樣:在webapp2中,我如何獲得所有路由URI列表?
app = webapp2.WSGIApplication([
('/site/path/one', 'package.module.ClassOne'),
('/site/path/two', 'package.module.ClassTwo'),
('/site/path/three', 'package.module.ClassThree'),
])
我希望以後能夠找回我的應用程序路由列表,例如說,在ClassOne:
class ClassOne(webapp2.RequestHandler):
def get(self):
print ''' list of routes (e.g. '/site/path/one', '/site/path/two', etc.) '''