鉴于页面的绝对网址以及该网页中找到的相对链接,是否有办法 a)明确重建或 b)尽力而为重建相对链接的绝对URL?
在我的情况下,我正在使用漂亮的汤从一个给定的URL读取一个html文件,删除所有img标记源,并尝试构建页面图像的绝对URL列表。
到目前为止我的Python函数看起来像:
function get_image_url(page_url,image_src):
from urlparse import urlparse
# parsed = urlparse('http://user:pass@NetLoc:80/path;parameters?query=argument#fragment')
parsed = urlparse(page_url)
url_base = parsed.netloc
url_path = parsed.path
if src.find('http') == 0:
# It's an absolute URL, do nothing.
pass
elif src.find('/') == 0:
# If it's a root URL, append it to the base URL:
src = 'http://' + url_base + src
else:
# If it's a relative URL, ?
注意:不需要Python答案,只需要所需的逻辑。
答案 0 :(得分:40)
非常简单:
>>> from urlparse import urljoin
>>> urljoin('http://mysite.com/foo/bar/x.html', '../../images/img.png')
'http://mysite.com/images/img.png'
答案 1 :(得分:16)
使用urllib.parse.urljoin
根据基本网址解析(可能是相对的)网址。
但是,网页的基本网址不一定与您从中提取文档的网址相同,因为HTML允许网页指定其首选基本网址via the BASE
element 。您需要的逻辑如下:
base_url = page_url
head = document.getElementsByTagName('head')[0]
for base in head.getElementsByTagName('base'):
if base.hasAttribute('href'):
base_url = urllib.parse.urljoin(base_url, base.getAttribute('href'))
# HTML5 4.2.3 "if there are multiple base elements with href
# attributes, all but the first are ignored."
break
(如果你正在解析XHTML,那么在理论上你应该考虑相当毛茸茸的XML Base specification。但是你可以逃脱而不用担心,因为没有人真正使用XHTML。)