scholarly_publications
0.6
scholarly_publications软件包提供了一个易于使用的界面,用于从Google Scholar获取出版数据。它允许用户检索有关作者出版物的详细信息,包括标题,出版年,链接和引文计数。该软件包是为学者,研究人员以及对编程分析学术出版数据感兴趣的任何人设计的。
要安装scholarly_publications ,请在您的终端中使用以下PIP命令:
pip install scholarly_publications可以通过其命令行界面轻松使用scholarly_publications 。这里有一些例子:
获取给定作者ID的所有出版物:
scholarly_publications < author_id >为给定作者ID获取特定数量的出版物:
scholarly_publications < author_id > --max= < number_of_publications >通过PubDate/列举的排序结果:
scholarly_publications < author_id > --sortby= < pubdate/cited >您也可以直接在Python代码中使用scholarly_publications 。以下是:
from scholarly_publications import fetch_publications
# Fetch all publications for a given author ID
publications = fetch_publications ( '<author_id>' )
# Fetch a specific number of publications for a given author ID
publications = fetch_publications ( '<author_id>' , max_publications = < number_of_publications > )
# Fetch all publications for a given author ID and sort by pubdate/cited
publications = fetch_publications ( '<author_id>' , sortby = '<pubdate/cited>' )
print ( publications )我们欢迎对scholarly_publications的贡献!如果您有改进的建议,请打开问题或提取请求。
scholarly_publications根据MIT许可发布。有关更多详细信息,请参见许可证文件。