webbrowser library python code example
Example 1: python webbrowser
import webbrowser
url = 'https://www.python.org/'
webbrowser.open_new_tab(url)
webbrowser.open_new(url)
Example 2: how to change web browser in python
import webbrowser as wb
wb.register('chrome', None)
wb.open("https://www.google.com/")
Example 3: python webbrowser module
python -m webbrowser -t "http://www.python.org"