[webbrowser] launch a web browser from python
0
Contents
import webbrowser
url = 'http://docs.python.org/'
# Open URL in default web browser
webbrowser.open(url)
About webbrowser
webbrowser - This module is a part of the Python standard library.