Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/usr/bin/python
  2. from gui import *
  3. import sys
  4.  
  5. def main():
  6. app = QtWidgets.QApplication(sys.argv)
  7. MainWindow = QtWidgets.QMainWindow()
  8. ui = Ui_MainWindow()
  9. ui.setupUi(MainWindow)
  10. MainWindow.show()
  11. sys.exit(app.exec_())
  12.  
  13. if __name__ == "__main__":
  14. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement