Scrape images from google using this simple tool

In this story we are going to search text on google and fetch the results. We will use datakund library to obtain such results. Here are the steps to follow to obtain results:-

  1. Install datakund
pip install datakund

2. Import datakund

from datakund.datakund import *

3. Search a keyword on google images

4. Get the search results by calling function search_image_results .

5. You can continuously fetch data by scrolling down to fetch data

--

--