Name: Anonymous 2009-09-08 18:18
How do I convert a url like this:
To this:
%3CHello%20World%3ETo this:
<Hello World>
%3CHello%20World%3E<Hello World>
urlencode()
>>> urllib.unquote('text%20here')
'text here'