我一直试图从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
提前致谢。