I am reading URL parameter from the below URL
http://exaple.com/api/v1/get_example/?fruits_name=[apple%20+%20banana]
fruits = urllib.unquote(request.GET.get('fruits_name', None)).decode('utf8')
print fruits
my output is: [apple banana] in between apple and banana I am getting three spaces but not + symbol in my output. the original string is [apple + banana]. I need output as [apple + banana].
Can anyone suggest where I am doing wrong??