Skip to content

Instantly share code, notes, and snippets.

View ShinonomeHana's full-sized avatar

ShinonomeHana

View GitHub Profile
from PyQt5.QtWidgets import QApplication,QMainWindow
import sys,threading,time
class MyMainWindow(QMainWindow):
def __init__(self):
super().__init__()
def showMainWindow():
app = QApplication(sys.argv)
main_window = MyMainWindow()