The urlparse with Python 2.4.3 includes the user and pass in the site aspect of its parse:
>>> scheme, site, path, parms, query, fid =
>>> urlparse.urlparse("http://bill:[EMAIL PROTECTED]/lib/module-urlparse.html")
>>> site
'bill:[EMAIL PROTECTED]'
I personally would prefer that it be broken down a bit further. What
are existing opinions on this?
--
http://mail.python.org/mailman/listinfo/python-list
