CVPR ECCV ICCV 计算机视觉顶会论文下载

1.往年论文集百度云下载

链接:https://pan.baidu.com/s/1xh59H83sOn6fKJzdcXBiVQ
提取码:j809

2.python下载

注意修改文件下载路径官网地址

import urllib.request
import re


def getHtml(url):
    page = urllib.request.urlopen(url)
    html = page.read()
    html = html.decode('utf-8')
    return html


save_path = 'CVPR2017'
url = 'http://openaccess.thecvf.com/CVPR2017.py'
html = getHtml(url)
parttern = re.compile(r'\bcontent_cvpr_2017.*paper\.pdf\b')
url_list = parttern.findall(html)

cnt = 0
for url in url_list:
    cnt += 1
    if cnt <= 0:
        continue
    name = url.split('/')[-1]
    file_name = save_path + "/"+save_path+"_"+name
    response = urllib.request.urlopen('http://openaccess.thecvf.com/'+url)
    file = open(file_name, 'wb')
    file.write(response.read())
    file.close()

    print("{}/{} {}".format(cnt, len(url_list), file_name))



猜你喜欢

转载自blog.csdn.net/smilife_/article/details/89210353
今日推荐