Overview
PySide6 6.4, released on October 11, 2022, updates the official Qt for Python binding to Qt 6.4 and improves development tools.
Main Features
Qt 6.4
PySide6 6.4 provides access to new Qt 6.4 APIs including QtQuick improvements and new experimental modules.
python
import sys
from PySide6.QtWidgets import QApplication, QMainWindow, QStatusBar
app = QApplication(sys.argv)
window = QMainWindow()
window.setWindowTitle('PySide6 6.4')
window.statusBar().showMessage('Ready')
# window.show()
# sys.exit(app.exec())
Improved tools
The pyside6-deploy and pyside6-project tools are improved to make application packaging and deployment easier.
python
# Deploy a PySide6 application
# pyside6-deploy my_app.py
# Create a PySide6 project
# pyside6-project init my_project
from PySide6.QtWidgets import QApplication, QLabel
app = QApplication([])
label = QLabel('PySide6 6.4 - Improved tools')
# label.show()
