溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何使用python 批量下載圖片

發(fā)布時(shí)間:2021-07-26 21:34:41 來源:億速云 閱讀:900 作者:chen 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“如何使用python 批量下載圖片”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“如何使用python 批量下載圖片”吧!

from time import time
from threading import Thread

import requests


class DownloadHanlder(Thread):

    def __init__(self, url):
        super().__init__()
        self.url = url

    def run(self):
        filename = self.url[self.url.rfind('/') + 1:]
        #get the filename from origin url with the value of :
        # 'https://cache.yisu.com/upload/information/20210521/347/345442.jpg'
        resp = requests.get(self.url)
        with open('./pictest/' + filename, 'wb') as f:
            f.write(resp.content)


def main():
    # 通過requests模塊的get函數(shù)獲取網(wǎng)絡(luò)資源
    resp = requests.get(
        'http://api.tianapi.com/meinv/?key=keyvalue4&num=10')
    # 將服務(wù)器返回的JSON格式的數(shù)據(jù)解析為字典
    data_model = resp.json()
    for mm_dict in data_model['newslist']:
        url = mm_dict['picUrl']
        # 通過多線程的方式實(shí)現(xiàn)圖片下載
        DownloadHanlder(url).start()


if __name__ == '__main__':
    main()

線程模塊提供了Thread類來處理線程,Thread類提供了以下方法: run(): 用以表示線程活動(dòng)的方法。 start():啟動(dòng)線程活動(dòng)。

其中,Thread類中含有方法start() 其定義如下:

    def start(self):
        """Start the thread's activity.

        It must be called at most once per thread object. It arranges for the
        object's run() method to be invoked in a separate thread of control.

        This method will raise a RuntimeError if called more than once on the
        same thread object.

        """
        if not self._initialized:
            raise RuntimeError("thread.__init__() not called")

        if self._started.is_set():
            raise RuntimeError("threads can only be started once")
        with _active_limbo_lock:
            _limbo[self] = self
        try:
            _start_new_thread(self._bootstrap, ())
        except Exception:
            with _active_limbo_lock:
                del _limbo[self]
            raise
        self._started.wait()

到此,相信大家對(duì)“如何使用python 批量下載圖片”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI