paper-finder 0.11

Creator: railscoder56

Last updated:

Add to Cart

Description:

paperfinder 0.11

paper finder
Find papers by keywords and venues. Then download it automatically.
Installing
Install and update using pip:
pip install -U paper-finder

功能
论文检索
利用 dblp 提供的API。
论文引用
利用 semanticscholar, 5分钟内只能请求100次,文献多的话可能会比较慢。
论文代码获取
利用 paperswithcode 提供的代码进行代码检查。
常用的期刊列表
CV_A = ["CVPR", "ICCV", "TIP", "TPAMI", "TVCG", "TOG", "SIGGRAPH", "IJCV"]
DM_A = ["KDD", "WWW", "ICDE", "TKDE"]
ML_A = ["ICML", "NIPS", "NeurIPS"]
NLP_A = ["ACL", "SIGIR"]
overall_A = ["AAAI", "IJCAI", "CSCW", "CHI", "Ubicomp", "MM"]
ref_ccf_a = ['AAAI', 'NIPS','ACL','CVPR','ICCV','ICML','IJCAI','WWW','KDD','SIGIR']
ref_ccf_b = ['EMNLP','ECCV','COLING','CIKM','WSDM','NAACL']
ref_other = ['ICLR']
refs = ref_ccf_a + ref_ccf_b + ref_other

Examples
点击这里 查看
Quick Start
Search
from paper_finder.api import search
keyword_list=['knowledge tracing','knowledge trace']
venue_list=['KDD','IJCAI']
output = 'kt_result.csv'
search(keyword_list=keyword_list,venue_list=venue_list,min_year=2016,max_year=2021,output=output)

Your can find venues' name in there.
Download
import pandas as pd
from paper_finder.api import download_from_df

csv_path = "kt_result.csv"
df = pd.read_csv(csv_path)
df = download_from_df(df,save_dir='pdfs')
df.to_csv(csv_path.replace('.csv','_download_result.csv'),index=False)





Todo

Search papers.
Download papers

Author Warning
This code is only used for academic communication.
The author has no liability for copyright.
DO NOT ENGAGE IN ANY ILLEGAL ACTIVITIES.
Please download and read the genuine articles from the publisher.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.