I am having a simple doubt.. I am trying to join three parts of a string using urljoin..
host = "http://foo.com:port"
ver = "/v1"
exten = "/path"
Rather than doing host+ver+exten, I want to use urljoin to generate url
But urljoin is giving
http://foo.com:poort/v1
( if i try urljoin(host,ver,exten)
)