Can Beautiful Soup可以解析隐藏的属性吗?

时间:2016-03-12 21:18:19

标签: python beautifulsoup

所以我在python中使用Beautiful Soup来解析显示我所有facebook朋友的页面。这是我的代码:

 import requests
 from bs4 import BeautifulSoup
 r=requests.get("https://www.facebook.com/xxx.xxx/friendspnref=lhc")
 soup=BeautifulSoup(r.content)

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

事情是它显示了很多链接,但它们都不是我朋友的个人资料的链接,这些链接通常显示在网页上。 在做Inspect元素时,我想了解这个

 <div class="hidden_elem"><code id="u_0_2m"><!--  

代码继续,并且在div标签的li标签内注释了指向其配置文件的链接。 主要有两个问题:

(1。)这是什么意思,为什么美丽的汤不能读它们?

(2。)有没有办法阅读它们?

我真的不打算通过这个来实现任何目标,只是好奇。

0 个答案:

没有答案