bexus.py 299 B

123456789101112131415161718
  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. import sys
  4. from PyQt5.QtWidgets import *
  5. from PyQt5.QtCore import (QThread, pyqtSignal, pyqtSlot)
  6. from functions import *
  7. from AppWindow import AppWindow
  8. qApp = QApplication(sys.argv)
  9. w = AppWindow()
  10. ret = qApp.exec_()
  11. sys.exit(ret)