Which URL parsing function pair should I be using and why?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Directly from the docs you linked yourself:

urllib.parse.urlsplit(urlstring, scheme='', allow_fragments=True)
This is similar to urlparse(), but does not split the params from the URL. This should generally be used instead of urlparse() if the more recent URL syntax allowing parameters to be applied to each segment of the path portion of the URL (see RFC 2396) is wanted.

link|improve this answer
1  
Since those URLs (with parameters attached any path element) are rarely used in practice, perhaps it would be worth adding an example, showing the differences in the parsed results? e.g. like here: doughellmann.com/PyMOTW/urlparse/#parsing – Mark Longair Mar 29 '11 at 13:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.