In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "how to use python to download pictures in batches." Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let Xiaobian take you to learn "how to use python to download pictures in batches"!
from time import timefrom threading import Threadimport requestsclass 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(): #Get network resources through the get function of the requests module resp = requests.get( 'http://api.tianapi.com/meinv/? key=keyvalue4&num=10') #Parse JSON data returned by the server into a dictionary data_model = resp.json() for mm_dict in data_model['newslist']: url = mm_dict['picUrl'] #Image download via multithreading DownloadHanlder(url).start()if __name__ == '__main__': main()
The Thread module provides the Thread class to handle threads, and the Thread class provides the following methods: run(): A method to indicate thread activity. start(): Start thread activity.
The Thread class contains the method start() defined as follows:
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() At this point, I believe that everyone has a deeper understanding of "how to use python to download pictures in batches", so let's actually operate it! Here is the website, more related content can enter the relevant channels for inquiry, pay attention to us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.