Automate google search without using selenium

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

4. Get the search results by calling function search_results .

5. You can move to next page as well and fetch results

--

--