Skip to content

Instantly share code, notes, and snippets.

@Epicinver
Created July 14, 2024 16:12
Show Gist options
  • Select an option

  • Save Epicinver/53a1597accc9edc42118d1aefb4a27ab to your computer and use it in GitHub Desktop.

Select an option

Save Epicinver/53a1597accc9edc42118d1aefb4a27ab to your computer and use it in GitHub Desktop.
This is the chrome launcher that i couldn't publish, If you want the code i've detailed it
import webbrowser
# Path to your Google Chrome executable
chrome_path = 'C:/Program Files/Google/Chrome/Application/chrome.exe %s'
# URL to open
url = 'http://www.google.com'
# Open the URL in Google Chrome
webbrowser.get(chrome_path).open(url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment