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
2010-09-10 13:20:01
Thanks! It works!
PocketSam
2010-09-10 13:39:57