2020-11-13 13:55:23 +00:00
|
|
|
"""
|
|
|
|
Get the citation from google scholar
|
|
|
|
using title and year of publication, and volume and pages of journal.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import requests
|
|
|
|
from bs4 import BeautifulSoup
|
|
|
|
|
|
|
|
|
|
|
|
def get_citation(base_url: str, params: dict) -> str:
|
|
|
|
"""
|
|
|
|
Return the citation number.
|
|
|
|
"""
|
2024-04-21 17:34:18 +00:00
|
|
|
soup = BeautifulSoup(
|
|
|
|
requests.get(base_url, params=params, timeout=10).content, "html.parser"
|
|
|
|
)
|
2020-11-13 13:55:23 +00:00
|
|
|
div = soup.find("div", attrs={"class": "gs_ri"})
|
|
|
|
anchors = div.find("div", attrs={"class": "gs_fl"}).find_all("a")
|
|
|
|
return anchors[2].get_text()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
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",
|
|
|
|
}
|
2022-10-16 07:43:29 +00:00
|
|
|
print(get_citation("https://scholar.google.com/scholar_lookup", params=params))
|