如何使用webbrowser模块打开一个网站但在python 3中的后台?

时间:2015-09-11 15:18:06

标签: python google-chrome python-3.x

我正在寻找可以使用我的默认网络浏览器打开网站的功能。所以我找到了webbrowser模块。它工作但不太好,就像这样:

>>> import webbrowser 
>>> webbrowser.open('https://www.google.com/')
True
>>> Created new window in existing browser session.

但是我使用的是Chrome,当我使用chrome在终端中打开一个网站时,如果我打开了chrome,它会显示Created new window in existing browser session.

但是现在我不想要这些文字,我已经尝试了tmp = webbrowser.open('https://www.google.com/'),但它没有用。

2 个答案:

答案 0 :(得分:1)

就像@PadraicCunningham说的那样,我需要这个

>>> r = subprocess.getoutput("google-chrome-stable https://www.google.com/")
>>> r
Created new window in existing browser session.'
>>> 

非常简单,我不需要使用webbrowser模块。谢谢大家:)

答案 1 :(得分:0)

我从你的问题中得到的这应该可以帮助你:

import os
url="www.google.com"

os.system("start "+url)