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ライセンスの下でリリースされます。詳細については、ライセンスファイルを参照してください。