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_()

View File

@@ -671,6 +671,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
* [PyQt5](p/PyQt5.py)
* [Pyret](p/Pyret.arr)
* [PySimpleGUI](p/PySimpleGUI.py)
* [PySide2](p/PySide2.py)
* [Python 2](p/Python%202.py)
* [Python 3](p/Python%203.py)
* [Q](q/Q.q)