下面版本比原来的版本要快上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)
下面版本比原来的版本要快上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)