I've got a string from an HTTP header, but it's been escaped.. what function can I use to unescape it?
myemail%40gmail.com -> myemail@gmail.com
Would urllib.unquote() be the way to go?
I've got a string from an HTTP header, but it's been escaped.. what function can I use to unescape it?
myemail%40gmail.com -> myemail@gmail.com
Would urllib.unquote() be the way to go?