forked from talengu/paper_seacher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdblp.py
34 lines (21 loc) · 884 Bytes
/
dblp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: UTF-8 -*-
r"""
http://history.ccf.org.cn/sites/ccf/paiming.jsp
计算机图形学与多媒体
http://history.ccf.org.cn/sites/ccf/biaodan.jsp?contentId=2903940690854
人工智能
http://history.ccf.org.cn/sites/ccf/biaodan.jsp?contentId=2903940690839
人机交互与普适计算
http://history.ccf.org.cn/sites/ccf/biaodan.jsp?contentId=2903940690320
"""
from downers.downer import main as downloader
if __name__ == "__main__":
# downloader(name='pami',
# main_page_url='https://dblp.uni-trier.de/db/journals/pami/',
# isjournal=True)
downloader(name='ijcv',
main_page_url='https://dblp.uni-trier.de/db/journals/ijcv/',
isjournal=True)
# downloader(name='iclr',
# main_page_url='https://dblp.uni-trier.de/db/conf/iclr/',
# isjournal=False)