1import webbrowser
2urL='https://www.google.com'
3chrome_path="C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
4webbrowser.register('chrome', None,webbrowser.BackgroundBrowser(chrome_path))
5webbrowser.get('chrome').open_new_tab(urL)