Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save TeijiW/5051f9aad7681de5307e02322c4444bd to your computer and use it in GitHub Desktop.
Save TeijiW/5051f9aad7681de5307e02322c4444bd to your computer and use it in GitHub Desktop.
Open an URL in the default browser. Python snippet.
#!/usr/bin/python
import webbrowser
webpage = 'http://www.google.com'
webbrowser.open_new_tab(webpage)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment