Python webbrowser module gets doc.python.org in Linux
#!/usr/bin/env python3 import webbrowser url = 'http://docs.python.org' chrome_path = '/opt/google/chrome-beta/google-chrome-beta %s' webbrowser.get(chrome_path).open(url)