#!/usr/bin/python import sys from form1impl import * app=QApplication(sys.argv) form=Form1Impl() app.setMainWidget(form) form.show() app.exec_loop()