如何从Linkedin BeautifulSoup中提取电子邮件?

时间:2015-10-08 02:46:11

标签: python web-scraping beautifulsoup

我正在尝试从Linkendin中提取电子邮件,并尝试了我在互联网上找到的所有方法。 甚至当我尝试打印所有锚标签时,它只会提取最后一封电子邮件。

这是linkendin代码。 Linkendin source snippet from which I want to extract emails

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()

1 个答案:

答案 0 :(得分:1)

我明白了。执行javascript以显示其他电子邮件ID .BeautifulSoup无法执行javascript,我将不得不使用seleniun或其他东西来首先执行javascript并解压缩。