简体   繁体   English

Python有效地从URL下载图像

[英]Python download image from URL efficiently

I have a list of image URL that are stored in a Pandas Dataframe. 我有一个存储在Pandas Dataframe中的图像URL列表。 I want to download all of these images and store them localy. 我想下载所有这些图像并将它们存储在本地。

The code I use to do so is : 我使用的代码是:

import os
import requests

def load(df, output_folder):        
    print("Ready to load "+str(len(df.index))+" images.")
    for i,row in df.iterrows():
        print("Image "+str(i))
        save_image_from_url(row["image_url"], os.path.join(output_folder, row["image_name"]))

''' From a given URL, download the image and store it at the given path'''
def save_image_from_url(url, output_path):
    image = requests.get(url)

    with open(output_path, 'wb') as f:
        f.write(image.content)

The problem is that the process is very slow (from 0.5 seconds to 4 seconds per images). 问题在于该过程非常缓慢(每个图像从0.5秒到4秒)。 Is there a way to do it faster ? 有没有办法更快地做到这一点?

The obvious way is to parallelize the downloads, you have a clear example in the docs 最明显的方法是并行下载,您在文档中有一个清晰的示例

For your case, try this aproach: 对于您的情况,请尝试以下方法:

import concurrent.futures
import os
import requests


def save_image_from_url(url, output_folder):
    image = requests.get(url.image_url)
    output_path = os.path.join(
        output_folder, url.image_name
    )
    with open(output_path, "wb") as f:
        f.write(image.content)

def load(df, output_folder):    
    with concurrent.futures.ThreadPoolExecutor(
        max_workers=5
    ) as executor:
        future_to_url = {
            executor.submit(save_image_from_url, url, output_folder): url
            for _, url in df.iterrows()
        }
        for future in concurrent.futures.as_completed(
            future_to_url
        ):
            url = future_to_url[future]
            try:
                future.result()
            except Exception as exc:
                print(
                    "%r generated an exception: %s" % (url, exc)
                )

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM