Download image from google-image with your own keyword. There are two methods here, one is crawlerImage.py and the other is crawlerBetter.py
This program use urllib and BeautifulSoup4 to send request and analysis HTML, then use wget to downlowd image from google-image-search. So you need to install urllib and bs4 before you exec it.
$ python3 crawlerImage.py -k (keyword-with-dash)
This program use selenium to control Google Chrome webdriver and update HTML, then use wget to download image from google-image-search. Before you exec this program, you need to install selenium and browser's webdriver. This program is better than crawlerImage.py, because it add new feature like keyboard interrupt and it show simple details.
$ python3 crawlerBetter.py -k (keyword-with-dash)