[Claude] > I have a huge list of URLs. These URLs all have ASCII codes for special > characters, like "%20" for a space or "%21" for an exclamation mark.
You need urllib.unquote:
>>> import urllib
>>> help(urllib.unquote)
Help on function unquote in module urllib:
unquote(s)
unquote('abc%20def') -> 'abc def'.
--
Richie Hindle
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
