how to get webbrowser module for python 3.6 using pip ?
how to get webbrowser module for python 3.6 using pip ?
webbrowser is part of the python standard library, you dont have to install a separate package to use it because it comes bundled with your python installation.
From the docs, you can use it from the command line as follows:
python -m webbrowser -t http://www.python.org
Or from your own scripts:
import webbrowser
webbrowser.open(https://www.python.org)