python的urlparse提供url處理相關的方法,包括url拆分,url拼接等等。html
假定baseUrl爲 http://www.xxx.com/xx/abc.htmlpython
相對url爲def.htmlurl
能夠經過下面代碼計算相對url對應的完整url:code
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.htmlhtm
http://www.xxx.com/index.htmlclass