The urlsplit tag has no wiki summary.
4
votes
1answer
209 views
Which should I be using: urlparse or urlsplit?
Which URL parsing function pair should I be using and why?
urlparse and urlunparse, or
urlsplit and urlunsplit?
1
vote
5answers
133 views
Splitting a url into a list in python
I am currently working on a project that involves splitting a url. I have used the urlparse module to break up the url, so now I am working with just the path segment.
The problem is that when I try ...