結論
# coding: utf-8
import os
from icrawler.builtin import GoogleImageCrawler
"""---------------- Settings ------------------"""
search_word = u"猫"#日本語の場合は、頭に"u"をつける
dir_ = "./images/"+search_word+"/"
download_num = 1000 #ダウンロードする枚数
"""--------------------------------------------------"""
if not os.path.exists(dir_):#フォルダが無ければ作る
os.makedirs(dir_)
crawler = GoogleImageCrawler(storage={"root_dir": dir_})
crawler.crawl(keyword=search_word, max_num=download_num)