我是网络抓取和一般网络事物的新手(但非常习惯于 Python),我想了解如何将网站搜索集成到生物信息学研究工具中。
目标:在http://www.lovd.nl/3.0/search上检索表单的输出
import mechanicalsoup
# Connect to LOVD
browser = mechanicalsoup.StatefulBrowser()
browser.open("http://www.lovd.nl/3.0/search")
# Fill-in the search form
browser.select_form('#websitevariantsearch')
browser["variant"] = "chr15:g.40699840C>T"
browser.submit_selected()
# Display the results
print(browser.get_current_page())
在输出中,我得到了相同的页面(http://www.lovd.nl/3.0/search)。我尝试使用标准请求,但出现另一种错误:
from requests import get, Session
url="http://www.lovd.nl/3.0/search"
formurl = "http://www.lovd.nl/3.0/ajax/search_variant.php"
client = Session()
#get the csrf
soup = BeautifulSoup(client.get(url).text, "html.parser")
csrf = soup.select('form input[name="csrf_token"]')[0]['value']
form_data = {
"search": "",
"csrf_token": csrf,
"build": "hg19",
"variant": "chr15:g.40699840C>T"
}
response = get(formurl, data=form_data)
html=response.content
return html
...这只会返回一个
alert("Error while sending data.");
form_data 字段取自 XHR 请求(来自开发人员 -> 网络选项卡)。
我可以看到数据是通过 ajax 异步发送的,但我不明白这些信息的实际含义。
需要一些指导