Created
July 14, 2024 16:12
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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