Python爬取pdf(优化版)v2.0

下面版本比原来的版本要快上3-4倍。

至于写名字,或者根据url得到名字,这个就看大佬们自己的心情了(基本不耗时间)

import requests
res = requests.get('http://home.ustc.edu.cn/~wcb/MMC/experiment/windows_socket.pdf')
with open('./windows_socket.pdf', 'wb') as f:
    f.write(res.content)

你可能感兴趣的:(Python爬取pdf(优化版)v2.0)