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?
you can use the python webbrowser module
import webbrowser webbrowser.open('http://stackoverflow.com')