Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dimitryzub/48defb1f9b28aeb191fe65a5b68fb4f8 to your computer and use it in GitHub Desktop.
Save dimitryzub/48defb1f9b28aeb191fe65a5b68fb4f8 to your computer and use it in GitHub Desktop.
# blog: https://serpapi.com/blog/scrape-google-scholar-papers-within-a-particular-conference-in-python/
from parsel import Selector
import requests, json, os
def check_sources(source: list or str):
if isinstance(source, str):
return source # NIPS
elif isinstance(source, list):
return " OR ".join([f'source:{item}' for item in source]) # source:NIPS OR source:Neural Information
def scrape_conference_publications(query: str, source: list or str):
# https://docs.python-requests.org/en/master/user/quickstart/#passing-parameters-in-urls
params = {
"q": "biology source:NIPS", # search query
"hl": "en", # language of the search
"gl": "us", # country of the search
"start": 0
}
# https://docs.python-requests.org/en/master/user/quickstart/#custom-headers
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36"
}
publications = []
while True:
html = requests.get("https://scholar.google.com/scholar", params=params, headers=headers, timeout=30)
selector = Selector(html.text)
for result in selector.css(".gs_r.gs_scl"):
title = result.css(".gs_rt").xpath("normalize-space()").get()
link = result.css(".gs_rt a::attr(href)").get()
result_id = result.attrib["data-cid"]
snippet = result.css(".gs_rs::text").get()
publication_info = result.css(".gs_a").xpath("normalize-space()").get()
cite_by_link = f'https://scholar.google.com/scholar{result.css(".gs_or_btn.gs_nph+ a::attr(href)").get()}'
all_versions_link = f'https://scholar.google.com/scholar{result.css("a~ a+ .gs_nph::attr(href)").get()}'
related_articles_link = f'https://scholar.google.com/scholar{result.css("a:nth-child(4)::attr(href)").get()}'
pdf_file_title = result.css(".gs_or_ggsm a").xpath("normalize-space()").get()
pdf_file_link = result.css(".gs_or_ggsm a::attr(href)").get()
publications.append({
"result_id": result_id,
"title": title,
"link": link,
"snippet": snippet,
"publication_info": publication_info,
"cite_by_link": cite_by_link,
"all_versions_link": all_versions_link,
"related_articles_link": related_articles_link,
"pdf": {
"title": pdf_file_title,
"link": pdf_file_link
}
})
if selector.css(".gs_ico_nav_next").get():
params["start"] += 10
else:
break
# return publications
print(json.dumps(publications, indent=2, ensure_ascii=False))
scrape_conference_publications(query="anatomy", source=["NIPS", "Neural Information"])
@zjq101
Copy link

zjq101 commented Nov 2, 2022

Excuse me, I am wondering whether the script can
retrieve all the results or the first 10 articles displayed on the first page.

@dimitryzub
Copy link
Author

dimitryzub commented Nov 2, 2022

@zjq101 Thank you for the question👍

Currently, it extracts the first 10 results. I can update the script to extract data from all available pages.

@zjq101
Copy link

zjq101 commented Nov 2, 2022

Thank you for your reply.
I will be looking forward to the update.

@dimitryzub
Copy link
Author

dimitryzub commented Nov 2, 2022

@zjq101 I've updated the script 👍 Now it paginates through all available pages:

image

P.S - If you'll be making a lot of requests (more than 100), Google might block your request either if a lot of requests are sent from the same IP or something similar.

To avoid this completely, you can either use Google Scholar Organic Results API from SerpApi (free + paid, no bypass limitations) or scholarly (free with bypass limitations i.e can't handle every CAPTCHA or IP rate limit).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment