python - 如何使用 python beautifulSoup 抓取深层嵌入的链接

标签 python html web-scraping beautifulsoup html-parsing

我正在尝试构建一个用于学术目的的蜘蛛/网络爬虫,以从学术出版物中获取文本并将相关链接附加到 URL 堆栈。我正在尝试抓取 1 个名为“PubMed”的网站。我似乎无法获取我需要的链接。这是我的示例页面代码,该页面应该代表他们数据库中的其他页面:

 website = 'http://www.ncbi.nlm.nih.gov/pubmed/?term=mtap+prmt'
 from bs4 import BeautifulSoup
 import requests
 r = requests.get(website)
 soup = BeautifulSoup(r.content)

为了可读性,我将 html 树分解为几个变量,以便它都能适应 1 个屏幕宽度。

 key_text = soup.find('div', {'class':'grid'}).find('div',{'class':'col twelve_col nomargin shadow'}).find('form',{'id':'EntrezForm'})
 side_column = key_text.find('div', {'xmlns:xi':'http://www.w3.org/2001/XInclude'}).find('div', {'class':'supplemental col three_col last'})
 side_links = side_column.find('div').findAll('div')[1].find('div', {'id':'disc_col'}).findAll('div')[1]

 for link in side_links:
      print link

如果您使用 chrome inspect 元素查看 html 源代码,应该有几个其他嵌套的 div,其中链接位于“side_links”内。但是上面的代码会产生以下错误:

 Traceback (most recent call last):
 File "C:/Users/ballbag/Copy/web_scraping/google_search.py", line 22, in <module>
 side_links = side_column.find('div').findAll('div')[1].find('div',      {'id':'disc_col'}).findAll('div')[1]
 IndexError: list index out of range

如果您转到该网址,右侧有一列名为“相关链接”的列,其中包含我希望抓取的网址。但我似乎无法接近他们。有一个声明说在我试图进入的 div 下,我怀疑这与它有关。任何人都可以帮助获取这些链接吗?我真的很感激任何指点

最佳答案

问题是侧边栏加载了一个额外的异步请求。

这里的想法是:

  • 使用 requests.Session 维护网络抓取 session
  • 解析用于获取侧边栏的url
  • 跟随该链接并使用 class="portlet_content"
  • div 获取链接

代码:

from urlparse import urljoin

from bs4 import BeautifulSoup
import requests


base_url = 'http://www.ncbi.nlm.nih.gov'
website = 'http://www.ncbi.nlm.nih.gov/pubmed/?term=mtap+prmt'

# parse the main page and grab the link to the side bar
session = requests.Session()
soup = BeautifulSoup(session.get(website).content)

url = urljoin(base_url, soup.select('div#disc_col a.disc_col_ph')[0]['href'])

# parsing the side bar
soup = BeautifulSoup(session.get(url).content)

for a in soup.select('div.portlet_content ul li.brieflinkpopper a'):
    print a.text, urljoin(base_url, a.get('href'))

打印:

The metabolite 5'-methylthioadenosine signals through the adenosine receptor A2B in melanoma. http://www.ncbi.nlm.nih.gov/pubmed/25087184
Down-regulation of methylthioadenosine phosphorylase (MTAP) induces progression of hepatocellular carcinoma via accumulation of 5'-deoxy-5'-methylthioadenosine (MTA). http://www.ncbi.nlm.nih.gov/pubmed/21356366
Quantitative analysis of 5'-deoxy-5'-methylthioadenosine in melanoma cells by liquid chromatography-stable isotope ratio tandem mass spectrometry. http://www.ncbi.nlm.nih.gov/pubmed/18996776
...
Cited in PMC http://www.ncbi.nlm.nih.gov/pmc/articles/pmid/23265702/citedby/?tool=pubmed

关于python - 如何使用 python beautifulSoup 抓取深层嵌入的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27871438/

相关文章:

html - 使用空白源调整图像大小

javascript - 延迟按钮提交 Javascript

python - Scrapy 抓取并跟踪 href 中的链接

python - 模拟 - 测试是否在不指定参数的情况下调用方法

javascript - 为什么我们不能打印包含 html 名称的变量?

python - Google App Engine 开发服务器随机(?)减速

python - Selenium Web抓取错误: Element Not Interactable

python - 如何保留字符串中的 '\n 字符?

python - 我需要在我的程序中输入一些错误处理

python - 在 Spyder 错误中导入模块