Python3下载文件或图片方法

5.3k 技术 1 Comment

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)

1 Comment

l
lililala6868 says: Reply

谢谢分享

Leave a Reply

Your email address will not be published. Required fields are marked *

Name *