We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0955e85 commit c436eefCopy full SHA for c436eef
extract-wos-article.py
@@ -34,11 +34,11 @@
34
"year": re.compile(".*([0-9]{4})"),
35
"wos_id": re.compile("(WOS:[0-9]{15})"),
36
}
37
-CITING_SUMMARY_URL_PREFIX = "https://www.webofscience.com/wos/woscc/citing-summary/"
+CITING_SUMMARY_URL_PREFIX = "https://www.webofscience.com/wos/woscc/citing-summary"
38
39
40
async def extract_citing_summary(page: Page, article_id: str):
41
- url = f"{CITING_SUMMARY_URL_PREFIX}{article_id}"
+ url = f"{CITING_SUMMARY_URL_PREFIX}/{article_id}"
42
await page.goto(url, wait_until="networkidle")
43
44
curr_page = await page.query_selector(CITING_SELECTORS["current_page"])
0 commit comments