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>
This commit is contained in:
calgary34
2022-01-21 14:30:49 -07:00
committed by GitHub
parent 53f3632c8d
commit 9db7959128
2 changed files with 8 additions and 0 deletions

7
p/PySide2.py Normal file
View File

@@ -0,0 +1,7 @@
import sys
from PySide2.QtWidgets import QApplication, QLabel
app = QApplication(sys.argv)
label = QLabel("Hello World")
label.show()
app.exec_()