python urlparse 计算相对url对应的完整url

python的urlparse提供url处理相关的方法,包括url拆分,url拼接等等。

假定baseUrl为 http://www.xxx.com/xx/abc.html

相对url为def.html

可以通过下面代码计算相对url对应的完整url:

from urlparse import urljoin

print urljoin('http://www.xxx.com/xx/abc.html','def.html')
print urljoin('http://www.xxx.com/xx/abc.html','/index.html')

将输出:

http://www.xxx.com/xx/def.html

http://www.xxx.com/index.html

 

你可能感兴趣的:(python,urlparse)