I want to google search a specific phrase using python program that too in a specific browser like Mozilla/google chrome.
import webbrowser
url = "https://www.google.com.tr/search?q={}".format("Raspberry Pi")
webbrowser.open(url)
I read this script in some post but it always go for the default browser in the system, can't i select or specify a different browser.