Fast Google Search W Selenium
pip install Selenium
#Required import for following code
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
#Unlocks the browser from code
chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
wbrowser = webdriver.Chrome(chrome_options=chrome_options)
You will have to input your search in the command line: