webbrowser module pythonb code example
Example 1: python webbrowser
import webbrowser
url = 'https://www.python.org/'
webbrowser.open_new_tab(url)
webbrowser.open_new(url)
Example 2: python webbrowser module
python -m webbrowser -t "http://www.python.org"