VOOZH about

URL: https://www.geeksforgeeks.org/python/python-launch-a-web-browser-using-webbrowser-module/

⇱ Python | Launch a Web Browser using webbrowser module - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Launch a Web Browser using webbrowser module

Last Updated : 12 Jul, 2025

In Python, webbrowser module is a convenient web browser controller. It provides a high-level interface that allows displaying Web-based documents to users. 

webbrowser can also be used as a CLI tool. It accepts a URL as the argument with the following optional parameters: -n opens the URL in a new browser window, if possible, and -t opens the URL in a new browser tab. 

NOTE: webbrowser is part of the python standard library. Therefore, there is no need to install a separate package to use it.

The webbrowser module can be used to launch a browser in a platform-independent manner as shown below:
Code #1 : 

Output : 

True

This opens the requested page using the default browser. To have a bit more control over how the page gets opened, use one of the following functions given below in the code -
Code #2 : Open the page in a new browser window. 

Output : 

True

Code #3 : Open the page in a new browser tab. 

Output : 

True

These will try to open the page in a new browser window or tab, if possible and supported by the browser. To open a page in a specific browser, use the webbrowser.get() function to specify a particular browser.
Code #4 : 

Output : 

True
True

Being able to easily launch a browser can be a useful operation in many scripts. For example, maybe a script performs some kind of deployment to a server and one would like to have it quickly launch a browser so one can verify that it’s working. Or maybe a program writes data out in the form of HTML pages and just like to fire up a browser to see the result. Either way, the webbrowser module is a simple solution.
 

Comment
Article Tags: