Search for a matching route and return a (:class:`Route`, urlargs) tuple. The second value is a dictionary with parameters extracted from the URL. Raise :exc:`HTTPError` (404/405) on a non-match.
(self, environ)
| 850 | run(self, **kwargs) |
| 851 | |
| 852 | def match(self, environ): |
| 853 | """ Search for a matching route and return a (:class:`Route`, urlargs) |
| 854 | tuple. The second value is a dictionary with parameters extracted |
| 855 | from the URL. Raise :exc:`HTTPError` (404/405) on a non-match.""" |
| 856 | return self.router.match(environ) |
| 857 | |
| 858 | def get_url(self, routename, **kargs): |
| 859 | """ Return a string that matches a named route """ |