程序必须找出编号。在使用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])
但是然后如何在会议上发表的所有研究论文中使用它。