hardikvasa / google-images-download

Python Script to download hundreds of images from 'Google Images'. It is a ready-to-run code!
MIT License
8.57k stars 2.11k forks source link

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

Open TechWithTy opened 11 months ago

TechWithTy commented 11 months ago

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