views:

5

answers:

1

I would like to open website in standard browser of operating system when user clicks a button in my pyqt4 application. How can I do this?

+1  A: 

you can use the python webbrowser module

import webbrowser
webbrowser.open('http://stackoverflow.com')
Nikolaus Gradwohl
Thanks! It works!
PocketSam