""" [Module documentaion here] @author:[author], [year] """ from PyQt5.QtWidgets import QMainWindow from core import hello_world from ui.qt.main_ui import Ui_mainWindow class MainWindow(QMainWindow): def __init__(self): super(MainWindow, self).__init__() self.createWidgets() def createWidgets(self): self.ui = Ui_mainWindow() self.ui.setupUi(self) self.ui.btnGet.clicked.connect(self.run) def run(self): message = hello_world.hello_message() self.ui.lblResult.setText(message)