找出编号。引用,用于在Google学术搜索(如ACL 2017)中发表的所有研究论文

时间:2018-12-10 15:08:05

标签: python-3.x web-scraping google-scholar

程序必须找出编号。在使用python的ACL 2017之类的会议上发表的google Scholar中所有研究论文的引用。我能够看到不。 Google学者中某篇特定研究论文的引用数:

import scholarly

search_query = scholarly.search_pubs_query('On the quantum theory of radiation')

search_query = scholarly.search_author('Steven A Cholewiak')
author = next(search_query).fill()
print(author)
print([pub.bib['title'] for pub in author.publications])

但是然后如何在会议上发表的所有研究论文中使用它。

0 个答案:

没有答案