You could access these parameters with default routes using request.GET.
.pk.
Exactly, request.params is a multidict with all the QUERY_STRING parameters.
.pk.
Routes does not look at the query string, only the URL path. There is
no way to pass query parameters as action arguments.
Well, you could theoretically set a callback function
"map.connect(..., condition={'function': MY_FUNC})", and it could
parse the query string and stuff the variables into the match dict.
But I don't know if webob is set up at that point so you'd have to do
it manually.
--
Mike Orr <slugg...@gmail.com>