2017CVPR can be executed directly under the command line:
2017 CVPR Download:
wget-c-n--no-clobber--convert-links--random-wait-r-p-e- e robots=off-u Mozilla http://op enaccess.thecvf.com/cvpr2017.py
2016 CVPR download:
wget-c-n--no-clobber--convert-links--random-wait-r -P- E-e robots=off-u Mozilla http://openaccess.thecvf.com/CVPR2016.py
2015 CVPR Download:
wget-c-N - No-clobber--convert-links--random-wait-r-p-e-e robots=off-u mozilla http://openaccess.thecvf.com/ cvpr2015.py
2017 ICCV Download: wget-c-n--no-clobber--convert-links--random-wait-r-p-e- e robots=off-u mo Zilla http://openaccess.thecvf.com/ICCV2017.py
The paper downloaded above does not have a name, looks inconvenient, the reference knows this way:
https://zhuanlan.zhihu.com/p/27919662
Get the following code
# Coding:utf-8 Import re import requests import urllib import OS # get web context r = Requests.get (' http://openaccess.the cvf.com/cvpr2017.py ') data = r.text # Find all pdf links link_list = Re.findall (r "(? <=href=\"). +?pdf (? =\ ">pdf) | (? <=href=\ '). +?pdf (? =\ ">pdf)", data) Name_list = Re.findall (r "(? <=href=\"). +?2017_paper.html\ ">.+?</a > ", data" cnt = 0 num = len (link_list) # your local path to download PDF files Localdir = ' E:\CVPR2017\\ ' if not os.pat H.exists (Localdir): Os.makedirs (Localdir) while cnt < Num:url = link_list[cnt] # seperate file name from U RL links file_name = Name_list[cnt].split (' < ') [0].split (' > ') [1] # to avoid some illegal punctuation in file Name file_name = File_name.replace (': ', ' _ ') file_name = File_name.replace (' \ "', ' _ ') file_name = File_name.repl Ace ('? ', ' _ ') file_name = File_name.replace ('/', ' _ ') File_path = localdir + file_name + '. pdf ' # download PDF f Iles print ' [' +str (CNT) + '/' +str(num) + "] Downloading->" +file_path try:urllib.urlretrieve (' http://openaccess.thecvf.com/' +url,file_path) Except exception,e:continue cnt = cnt + 1 print "All download finished"
You can download all of the 2017-year papers directly, and you can also download 2017 of them to 2016.
Test can download cvpr2017,cvpr2016,iccv2017