Advertisement
FlyFar

gui/Main.py

Aug 10th, 2023
955
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | Cybersecurity | 0 0
  1. import sys
  2. from AppWindow import AppWindow
  3. from Controller import Controller
  4. from PyQt5.QtWidgets import QApplication, QWidget, QDialog
  5.  
  6.  
  7. def main():
  8.     app = QApplication(sys.argv)
  9.     appWindow = AppWindow()
  10.     controller = Controller(appWindow.gui)
  11.     appWindow.show()
  12.     sys.exit(app.exec())
  13.  
  14.  
  15. if __name__ == '__main__':
  16.     main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement