Official Qt for Python - Complete Qt Framework
PySide is the official set of Python bindings for Qt libraries, developed by The Qt Company. It provides support for Windows, Linux, and macOS, and enables rapid development of software with Python, offering the same comprehensive APIs as Qt.
Key Features:
Common Use Cases:
pip install PySide6
from PySide6.QtWidgets import QApplication, QLabel, QWidget
import sys
app = QApplication(sys.argv)
window = QWidget()
window.setWindowTitle("Hello PySide")
label = QLabel("Hello, World!", parent=window)
window.show()
sys.exit(app.exec())