Given a URL like the following, how can I parse the value of the query parameters? For example, in this case I want the value of some_key .
/some_path?some_key=some_value'
I am using Django in my environment; is there a method on the request object that could help me?
I tried using self.request.get('some_key') but it is not returning the value some_value as I had hoped.
This is not specific to Django, but for Python in general. For a Django specific answer, see this one from @jball037
Python 2:
Python 3:
parse_qsreturns a list. The[0]gets the first item of the list so the output of each script issome_valueHere’s the ‘parse_qs’ documentation for Python 3