Answers for "python open new tab in chrome"

5

python open link in browser

import webbrowser

webbrowser.open_new('http://www.facebook.com')
Posted by: Guest on August-22-2020
2

how to set google chrome as default browser when coding with python using webbroiwser module

import webbrowser
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open('http://docs.python.org/')
Posted by: Guest on May-18-2020
1

python open new chrome tab

import webbrowser

url = 'http://docs.python.org/'

# MacOS
chrome_path = 'open -a /Applications/Google\ Chrome.app %s'

# Windows
# chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'

# Linux
# chrome_path = '/usr/bin/google-chrome %s'

webbrowser.get(chrome_path).open(url)
Posted by: Guest on April-07-2021

Code answers related to "python open new tab in chrome"

Python Answers by Framework

Browse Popular Code Answers by Language