我正在尝试从Linkendin中提取电子邮件,并尝试了我在互联网上找到的所有方法。 甚至当我尝试打印所有锚标签时,它只会提取最后一封电子邮件。
Here is my code:
dim = BeautifulSoup(pg.content)
name = dim.find_all('span',attrs={'class':'full-name'})
print name[0].text
for t in dim.find_all('li',attrs={'class':'contact-field'}):
print t.findChildren()
答案 0 :(得分:1)
我明白了。执行javascript以显示其他电子邮件ID .BeautifulSoup无法执行javascript,我将不得不使用seleniun或其他东西来首先执行javascript并解压缩。