I'm trying to read an email-id value using request.POST.get(). If the post data contains email-id with a '+' symbol, like "example+something@gmail.com", it gets read as
"example something@gmail.com".
I know this is happening because the + symbol is getting decoded as space, but how do I prevent this from happening in this scenario?