Skip to content

Instantly share code, notes, and snippets.

@j2doll
Created March 23, 2018 06:45
Show Gist options
  • Select an option

  • Save j2doll/7ccb0bfee9de65c73abc0a9404ecbed4 to your computer and use it in GitHub Desktop.

Select an option

Save j2doll/7ccb0bfee9de65c73abc0a9404ecbed4 to your computer and use it in GitHub Desktop.
Hello, PyQt5
# HelloPyQt5.py
import sys
from PyQt5.QtWidgets import QApplication, QWidget
app = QApplication(sys.argv)
w = QWidget()
w.setWindowTitle('Hello World')
w.show()
sys.exit(app.exec_())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment