Python3下载文件或图片方法
1、使用requests
import os
import requests
def download_file(url, store_path):
filename = url.split(/)[-1]
filepath = os.path.join(store_path, filename)
file_data = requests.get(url, allow_redirects=True).content
with open(filepath, 'wb') as handler:
handler.write(file_data)
2、使用urllib.request.urlretrieve
import os
from urllib.request import urlretrieve
def download_file(url, store_path):
filename = url.split(/)[-1]
filepath = os.path.join(store_path, filename)
urlretrieve(url, filepath)
谢谢分享