The webbrowser library provides a convenient way to launch a URL with a browser window through the webbrowser.open() method. Numerous browser types are available, b
webbrowser.open()
>>> ie = webbrowser.get('c:\\program files\\internet explorer\\iexplore.exe') >>> ie.open('http://google.com') True