我正在尝试抓取此网页:http://animeheaven.eu/watch.php?a=My%20Hero%20Academia%203&e=2
并下载视频。正如您所看到的,它会加载720p视频。我可以从这里下载视频。但我不知道如何从下拉菜单中获取其他视频版本,即480p版本。如何选择480p链接?
答案 0 :(得分:1)
如果您使用参数“rs”=“1”发出POST请求,则会获得所需的数据。
from bs4 import BeautifulSoup
import requests
link = "http://animeheaven.eu/watch.php?a=My%20Hero%20Academia%203&e=2"
html= requests.post(link, data = {'rs': '1'})
soup= BeautifulSoup(html.content,"lxml")
scripts= soup.findAll("script")
sc=scripts[4]
print (sc)
...
输出:
...
document.write("<a class='an' href='"+ pli +"'><div class='dl2'>Download 159 MB</div></a>");
...
不
...
document.write("<a class='an' href='"+ pli +"'><div class='dl2'>Download 255 MB</div></a>");
...
更新以回应评论:
...
select = soup.find("select", {'name': 'rs'})
for option in select.find_all('option'):
print ("{} = {}".format(option.text, option['value']))
输出
720p = 0
480p = 1