I am currently defining regular expressions in order to capture parameters in a URL, as described in the tutorial. How do I access parameters from the URL as part the
For situations where you only have the request object you can use request.parser_context['kwargs']['your_param']
request
request.parser_context['kwargs']['your_param']