From 9db79591286f36f2077ce6f1f69a2d2aed83c80c Mon Sep 17 00:00:00 2001 From: calgary34 <51468959+calgary34@users.noreply.github.com> Date: Fri, 21 Jan 2022 14:30:49 -0700 Subject: [PATCH] Add PySide2 (#1265) * Create PySide2.py * Update readme.md * remove "!" Co-authored-by: Richie Bendall Co-authored-by: Richie Bendall --- p/PySide2.py | 7 +++++++ readme.md | 1 + 2 files changed, 8 insertions(+) create mode 100644 p/PySide2.py diff --git a/p/PySide2.py b/p/PySide2.py new file mode 100644 index 00000000..ae8acdee --- /dev/null +++ b/p/PySide2.py @@ -0,0 +1,7 @@ +import sys +from PySide2.QtWidgets import QApplication, QLabel + +app = QApplication(sys.argv) +label = QLabel("Hello World") +label.show() +app.exec_() diff --git a/readme.md b/readme.md index e233541d..019ef02c 100644 --- a/readme.md +++ b/readme.md @@ -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)