Skip to content

Instantly share code, notes, and snippets.

@fastfingertips
Created February 20, 2022 14:15
Show Gist options
  • Save fastfingertips/7dcbddc48a5f5731124bce2ad67db84c to your computer and use it in GitHub Desktop.
Save fastfingertips/7dcbddc48a5f5731124bce2ad67db84c to your computer and use it in GitHub Desktop.
import webbrowser
new = 2 # open in a new tab, if possible
url = "https://unix.org/"
webbrowser.open(url,new=new)
# open an HTML file on my own (Windows) computer
url = "file://C:/Users/User/index.html"
webbrowser.open(url,new=new)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment