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
def some_view(request, *args, **kwargs): if kwargs.get('q', None): # Do something here ..