Google search can be automated using Python script in just 2 minutes. This can be done using
selenium
(a browser automation tool). Selenium is a portable framework for testing web applications. It can automatically perform the same interactions that any you need to perform manually and this is a small example of it. Mastering Selenium will help you automate your day to day tasks like controlling your tweets, Whatsapp texting and even just googling without actually opening a browser in just 15-30 lines of python code. The limits of automation is endless with selenium.
Installation
- Selenium
pip install selenium
- Chrome browser
- ChromedriverDownload the chrome browser fromhere (choose the version for your system)After downloading, extract it and then copy the file in the folder of the script.
This can be done in two ways, by taking input from the user and by giving input in the command line itself.
# Method 1Asking the user for input.
Python3fromseleniumimportwebdriver# Taking input from usersearch_string=input("Input the URL or string you want to search for:")# This is done to structure the string# into search url.(This can be ignored)search_string=search_string.replace(' ','+')# Assigning the browser variable with chromedriver of Chrome.# Any other browser and its respective webdriver# like geckodriver for Mozilla Firefox can be usedbrowser=webdriver.Chrome('chromedriver')foriinrange(1):matched_elements=browser.get("https://www.google.com/search?q="+search_string+"&start="+str(i))
After saving the above script in script.py, run it in the command prompt as:
python script.py
# Method 2Taking search string in the command line itself.
Python3fromseleniumimportwebdriverimportsys# function to convert a list into stringdefconvert(s):str1=""return(str1.join(s))# Assign the arguments passed to a variable search_stringsearch_string=sys.argv[1:]# The argument passed to the program is accepted# as list, it is needed to convert that into stringsearch_string=convert(search_string)# This is done to structure the string# into search url.(This can be ignored)search_string=search_string.replace(' ','+')# Assigning the browser variable with chromedriver of Chrome.# Any other browser and its respective webdriver# like geckodriver for Mozilla Firefox can be usedbrowser=webdriver.Chrome('chromedriver')foriinrange(1):matched_elements=browser.get("https://www.google.com/search?q="+search_string+"&start="+str(i))
After saving the above script in script.py, run it in the command prompt as:
python script.py "geeksforgeeks"
How to Automate Google Search Using Selenium in Python

How to Automate Google Search Using Selenium in Python

Automate Google Search using Python Selenium | Python Project