calgary34 9db7959128
Add PySide2 (#1265)
* Create PySide2.py

* Update readme.md

* remove "!"

Co-authored-by: Richie Bendall <richiebendall@gmail.com>

Co-authored-by: Richie Bendall <richiebendall@gmail.com>
2022-01-21 15:30:49 -06:00

8 lines
147 B
Python

import sys
from PySide2.QtWidgets import QApplication, QLabel
app = QApplication(sys.argv)
label = QLabel("Hello World")
label.show()
app.exec_()