在BeautifulSoup之后Python破坏了链接

时间:2018-04-22 12:15:29

标签: python windows beautifulsoup

我是Python的新手。只是为Windows安装它并尝试HTML抓取。 这是我的测试代码:

from bs4 import BeautifulSoup

html = 'text <a href="Transfert.php?Filename=myfile_x86&version=5&param=13" class="nav" style="color: #000000" title = "">Download</a> text'
print(html)

soup = BeautifulSoup(html, "html.parser")
for link in soup.find_all('a'):
    print(link.get('href'))

此代码返回已收集但已损坏的链接:

Transfert.php?Filename=myfile_x86&version=5¶m=13

enter image description here 我该如何解决?

1 个答案:

答案 0 :(得分:2)

  

您正在为解析器提供无效的HTML,正确的方式包括&amp;   在HTML属性的URL中将其转义为&amp;

只需将&更改为&amp;

即可
html = 'text <a href="Transfert.php?Filename=myfile_x86&amp;version=5&amp;param=13" class="nav" style="color: #000000" title = "">Download</a> text'
soup = BeautifulSoup(html, "html.parser")

for link in soup.find_all('a'):
    print(link.get('href'))

<强>输出:

Transfert.php?Filename=myfile_x86&version=5&param=13

它与html5liblxml一起使用的原因是因为某些解析器可以比其他解析器更好地处理损坏的HTML。正如Goyo在评论中所提到的,您无法阻止其他人编写损坏的HTML:)

这是一个很好的答案,可以详细解释它:https://stackoverflow.com/a/26073147/4796844