TIL: Python's `webbrowser` module Nov. 23, 2025 #Python Open a webbrowser to a specific page with Python. webbrowser I was thinking this would be very useful in do nothing scripts. Example 1: Python Console Session>>> import webbrowser >>> url = "https://sglmr.com" >>> webbrowser.open(url) Example 2: Bashpython -m webbrowser "https://www.python.org" Example 3: Bashuv run -m webbrowser "https://example.com"