从Facebook网址获取观看+分享

时间:2017-08-22 10:29:25

标签: python facebook python-3.x web-scraping beautifulsoup

我一直试图从FB网址(https://www.facebook.com//peopleareawesome/videos/1393626100686564)获取观看和分享,但我被困住了。我在Python3中使用Beautifulsoup,我能够解析页面,但我无法过滤掉我需要的信息。以下是我的代码,我真的很感激任何帮助。我只需要编写一个接收URL并输出共享和视图数量的函数。

response = urllib.request.urlopen("https://www.facebook.com/peopleareawesome/videos/1393626100686564/")
soup = BeautifulSoup(response, "html5lib")        
for line in soup.findAll('script'): # should it be div?     
    print (line) #this is where I expect to get views and shares info

提前致谢。

0 个答案:

没有答案