python
pip install icrawler
main.py
from icrawler.builtin import GoogleImageCrawler
#Auto Bildaufnahme
crawler = GoogleImageCrawler(storage={"root_dir": "car"})
crawler.crawl(keyword="Wagen", max_num=100) #Holen Sie sich bis zu 100 Bilder
Recommended Posts