StreamingCommunity/streaming_gui.py
Francesco Grazioso 8b574f407f Refactor GUI code and modularize components
Splits the monolithic GUI logic into modular components, improving maintainability. Introduces `RunTab`, `ResultsTable`, and utility modules for better separation of concerns and reusability. Adjusts main entry point and refactors core functionalities to align with the new structure.
2025-02-25 15:42:14 +01:00

15 lines
246 B
Python

import sys
from PyQt5.QtWidgets import QApplication
from gui.main_window import StreamingGUI
def main():
app = QApplication(sys.argv)
gui = StreamingGUI()
gui.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()