google_images_download

Updated:

구글에서 이미지를 크롤링해준다

  • pip install git+https://github.com/Joeclinton1/google-images-download.git

  • 아래와 같이 폴더를 만든다

google-images-download

crawling.py

  • crawling.py
# crawling.py

from google_images_download import google_images_download   

response = google_images_download.googleimagesdownload()   

arguments = {"keywords":"양배추","limit":100,"print_urls":True} 
paths = response.download(arguments)   
print(paths)  

Leave a comment