python webbrowser

时间:2012-08-07 13:51:40

标签: python python-webbrowser

通过将其命名为:

,我一直在使用此模块而没有任何问题
webbrowser.open("http link...")

然而,现在,我想选择一个不同的浏览器,并根据文档(http://docs.python.org/library/webbrowser.html#webbrowser.get)我写了这个

controller = webbrowser.get('firefox')
controller("http link...")

...我收到一个错误,我无法摆脱:

Exception in Tkinter callback
Traceback (most recent call last):
....
TypeError: 'Mozilla' object is not callable

关于它的任何想法???

1 个答案:

答案 0 :(得分:6)

Controller object无法调用。这样做:

controller.open(url)