Qt and Python
When I blogged about Qt and BASIC, I was told that Qt and Python is the way to go. I can only agree to this. Riverbank Computing has done a tremendous job, providing Python bindings and tools for Qt to the community. For the Python coders out there, you can get your PyQt4 module from here.
from PyQt4.QtCore import *
from PyQt4.QtGui import *
if __name__ == "__main__":
app = QApplication(sys.argv)
w = QWidget()
w.show();
app.exec_()
This entry was posted on Monday, April 20th, 2009 at 15:49 and is filed under Links. You can follow any responses to this entry through the RSS 2.0 feed. You can skip to the end and leave a response. Pinging is currently not allowed.
Leave a Reply
You must be logged in to post a comment.
