https://github.com/koallen/google-image-downloader
A script to download images from images.google.com
https://github.com/koallen/google-image-downloader
crawler google-images selenium
Last synced: 5 months ago
JSON representation
A script to download images from images.google.com
- Host: GitHub
- URL: https://github.com/koallen/google-image-downloader
- Owner: koallen
- Created: 2016-04-03T06:02:50.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T05:59:21.000Z (about 2 years ago)
- Last Synced: 2025-08-11T09:54:29.623Z (10 months ago)
- Topics: crawler, google-images, selenium
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 30
- Watchers: 1
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google Image Downloader
> A simple script that fetches images from Google with browser simulation.
## Pre-requisites
The code requires Python 3. The following Python packages are required to run the script.
- selenium
- requests
- fake_useragent
- beautifulsoup4
- lxml
You can install them via `pip install -r requirements.txt`. You also need install the ChromeDriver
for selenium to work. Please refer to [here](https://sites.google.com/a/chromium.org/chromedriver/getting-started)
on how to install it.
## Usage
```
usage: download_images.py [-h] [--worker WORKER] keyword
positional arguments:
keyword the keyword to search
optional arguments:
-h, --help show this help message and exit
--worker WORKER the number of workers used for downloading images
```
## Disclaimer
This script is written for the purpose of practicing programming skills. Use it at your own discretion.