I would like to open a website in a standard operating system browser when a user clicks a button in my pyqt4 application. How can i do this?
you can use python web browser module
import webbrowser webbrowser.open('http://stackoverflow.com')