Created
October 31, 2018 08:29
-
-
Save ferhat00/a2f357718f795e00e842dc39fa007221 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !pip install google_images_download | |
| from google_images_download import google_images_download | |
| response = google_images_download.googleimagesdownload() | |
| arguments = {"keywords":"blue tit","limit":100,"print_urls":False,"format":"jpg", "size":">400*300"} | |
| paths = response.download(arguments) | |
| arguments = {"keywords":"crow","limit":100,"print_urls":False, "format":"jpg", "size":">400*300"} | |
| paths = response.download(arguments) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment