Python's urlparse function parses an url into six components (scheme, netloc,
path and others stuff)
Now I've found that parsing "example.com/path/file.ext" return no netloc but a
path "example.com/path/file.ext".
Should't it be netloc = "example.com" and
path = "/path/file.ext"?
Do we really need a "://" to determine wether or
…