pyside

Official Python bindings for Qt framework

brewmacoslinux
Try with needOr install directly
Source

About

Official Python bindings for Qt

Commands

pysidepyside-uic

Examples

Create a simple PyQt/PySide GUI application with a button$ python3 -c "import PySide2.QtWidgets as QtWidgets; app = QtWidgets.QApplication([]); btn = QtWidgets.QPushButton('Hello'); btn.show(); app.exec_()"
Convert Qt Designer UI file to Python code$ pyside-uic myapp.ui -o myapp_ui.py
Import and verify PySide installation$ python3 -c "import PySide2; print(PySide2.__version__)"