Skip to content

Instantly share code, notes, and snippets.

@paleolimbot
Created September 23, 2019 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paleolimbot/83d7f5f3b5b53b95015ff215941999fe to your computer and use it in GitHub Desktop.
Save paleolimbot/83d7f5f3b5b53b95015ff215941999fe to your computer and use it in GitHub Desktop.
import sys
from PyQt5.QtWidgets import QMainWindow, QApplication
class MainWindow(QMainWindow):
def __init__(self, parent=None):
super().__init__(parent)
app = QApplication(sys.argv)
app.setApplicationName("PyFEM")
main = MainWindow(None)
main.show()
sys.exit(app.exec_())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment