Skip to content

Instantly share code, notes, and snippets.

@rjames86
Created January 19, 2014 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjames86/8510836 to your computer and use it in GitHub Desktop.
Save rjames86/8510836 to your computer and use it in GitHub Desktop.
Browser from Clipboard
import clipboard
import webbrowser
cb_contents = clipboard.get()
if cb_contents.startswith('http'):
webbrowser.open('safari-' + cb_contents)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment