google-images-download icon indicating copy to clipboard operation
google-images-download copied to clipboard

Error Downloading Images Using google-images-download (CLI) Google Colab Available

Open TechWithTy opened this issue 1 year ago • 0 comments

Issue: Error Downloading Images for 'puppies' Using google-images-download

Description

When using google-images-download to download images for the keyword 'puppies', the tool fails to download any images. Despite specifying a limit of 10 images, the tool reports that none of the images were downloadable.

Steps to Reproduce

  1. Execute the following Python script:
    from google_images_download import google_images_download
    
    response = google_images_download.googleimagesdownload()
    arguments = {"keywords": "puppies", "limit": 10, "print_urls": True}
    paths = response.download(arguments)
    print(paths)
    
    
    

Google Colab Working File

TechWithTy avatar Nov 27 '23 20:11 TechWithTy