从谷歌学者中提取文本

时间:2013-04-02 15:48:33

标签: python text-mining google-scholar

我正在尝试从google scholar为特定查询提供的测试代码段中提取文本。通过文字片段我的意思是标题下方的文字(黑色字母)。 目前我正在尝试使用python从html文件中提取它,但它包含很多额外的测试,例如

/div><div class="gs_fl" ...等

是否有一种简单的方法或一些代码可以帮助我在没有这些冗余文本的情况下获取文本。

2 个答案:

答案 0 :(得分:1)

你需要一个html解析器:

import lxml.html

doc = lxml.html.fromstring(html)
text = doc.xpath('//div[@class="gs_fl"]').text_content()

您可以使用“pip install lxml”安装lxml,但是您需要构建其依赖项,详细信息将根据您的平台而有所不同。

答案 1 :(得分:0)

很旧,但现在可能是一个相关的问题。使用 SelectorGadgets 轻松抓取 CSS 选择器。请确保您使用的是代理,否则即使您尝试通过 selenium 发出请求,Google 也可能会阻止请求。

在线 IDE 中的代码和 full example

from bs4 import BeautifulSoup
import requests, lxml, os

headers = {
    'User-agent':
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.19582"
}

proxies = {
  'http': os.getenv('HTTP_PROXY')
}

html = requests.get('https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&q=samsung&oq=', headers=headers, proxies=proxies).text
soup = BeautifulSoup(html, 'lxml')

for result in soup.select('.gs_ri'):
  snippet = result.select_one('.gs_rs').text
  print(f"Snippet: {snippet}")

部分输出:

Snippet: Purpose–Extensive research has shown that country‐of‐origin (COO) information significantly affects product evaluations and buying behavior. Yet recently, a competing perspective has emerged suggesting that COO effects have been inflated in prior research …

或者,您可以使用来自 SerpApi 的 Google Scholar Organic Search Results API。这是一个付费 API,可免费试用 5,000 次搜索。

本质上,它和上面的脚本做同样的事情,只是你不需要考虑如何解决 CAPTCHA 或找到一个好的代理(代理)。

要集成的代码:

from serpapi import GoogleSearch
import os

params = {
  "api_key": os.getenv("API_KEY"),
  "engine": "google_scholar",
  "q": "samsung",
}

search = GoogleSearch(params)
results = search.get_dict()

for result in results['organic_results']:
  print(f"Snippet: {result['snippet']}")

部分输出:

Snippet: Purpose–Extensive research has shown that country‐of‐origin (COO) information significantly affects product evaluations and buying behavior. Yet recently, a competing perspective has emerged suggesting that COO effects have been inflated in prior research …
<块引用>

免责声明,我为 SerpApi 工作。