python
pip install icrawler
main.py
from icrawler.builtin import GoogleImageCrawler
#Car image acquisition
crawler = GoogleImageCrawler(storage={"root_dir": "car"})
crawler.crawl(keyword="car", max_num=100) #Get up to 100 images
Recommended Posts