Answers for "python script to open google chrome"

2

how to set google chrome as default browser when coding with python using webbroiwser module

import webbrowser
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open('http://docs.python.org/')
Posted by: Guest on May-18-2020
0

launch google chrome using python

import webbrowser

url = 'https://meet.google.com/rhj-yyzz-com'
webbrowser.register('chrome',
	None,
	webbrowser.BackgroundBrowser("C://Program Files (x86)//Google//Chrome//Application//chrome.exe"))
webbrowser.get('chrome').open(url)
Posted by: Guest on July-03-2021

Code answers related to "python script to open google chrome"

Python Answers by Framework

Browse Popular Code Answers by Language