Skip to content

Instantly share code, notes, and snippets.

@cormacrelf
Created January 20, 2013 13:35
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cormacrelf/4578664 to your computer and use it in GitHub Desktop.
Save cormacrelf/4578664 to your computer and use it in GitHub Desktop.
open url in safari from pythonista
# a bit of a hack
# by Cormac Relf - cormacrelf.com - @cormacrelf
# Opens the url on the clipboard in Safari
# by opening Google Chrome with an x-callback-url
# that takes you to the same url in Safari.
# I guess you could just open it in googlechrome://
import webbrowser
import clipboard
import console
import urllib
import re
url = clipboard.get()
url = urllib.quote_plus(url)
callback = "googlechrome-x-callback://x-callback-url/open/?url=YOURL&x-source=Safari&x-success=YOURL"
callback = re.sub("YOURL", url, callback)
#console.clear()
#print(callback)
webbrowser.open(callback)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment