-
-
Notifications
You must be signed in to change notification settings - Fork 51.1k
Expand file tree
/
Copy pathcrawl_google_scholar_citation.py
More file actions
55 lines (47 loc) · 1.81 KB
/
Copy pathcrawl_google_scholar_citation.py
File metadata and controls
55 lines (47 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""
Get the citation from Google Scholar using the title and year of publication, and the
journal volume and pages.
"""
# /// script
# requires-python = ">=3.13"
# dependencies = [
# "beautifulsoup4",
# "httpx2",
# ]
# ///
import httpx2
from bs4 import BeautifulSoup
def get_citation(base_url: str, params: dict) -> str:
"""
Returns the citation number for a publication based on its title, journal, volume,
pages, and year of publication.
Parameters:
- base_url: The base URL for making requests to Google Scholar.
- params: A dictionary containing the publication information.
Returns:
- A string containing the number of citations.
"""
# Send a GET request to the URL with the specified parameters
soup = BeautifulSoup(
httpx2.get(base_url, params=params, timeout=10).content, "html.parser"
)
# Find the div element with class 'gs_ri' that contains citation information
div = soup.find("div", attrs={"class": "gs_ri"})
# Find all links in the div and retrieve the third link (the citation count)
anchors = div.find("div", attrs={"class": "gs_fl"}).find_all("a")
return anchors[2].get_text() # Return the text from the third link
if __name__ == "__main__":
# Define parameters for the publication whose citation is to be searched
params = {
"title": (
"Precisely geometry controlled microsupercapacitors for ultrahigh areal "
"capacitance, volumetric capacitance, and energy density"
),
"journal": "Chem. Mater.",
"volume": 30,
"pages": "3979-3990",
"year": 2018,
"hl": "en", # Language to be used (English)
}
# Call the get_citation function with the specified URL and parameters
print(get_citation("https://scholar.google.com/scholar_lookup", params=params))