In recent years CVPR and ICCV papers Download _ Other

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.