PySide
PySide2 [5] is a Python binding of the cross-platform GUI toolkit Qt, currently developed by The Qt Company under the Qt for Python project on porting PySide[6] to work with Qt 5 instead of Qt 4. It is one of the alternatives to the standard library package Tkinter. Like Qt, PySide2 is free software. The project started out using Boost.Python from the Boost C++ libraries for the bindings and later switched to the binding generator Shiboken[7] to reduce the size of the binaries and the memory footprint.
Original author(s) | The Qt Company |
---|---|
Developer(s) | The Qt Company |
Initial release | 1.0/18 August 2009[1] (under the name of PySide) |
Stable release | PySide 5.15.2
/ 20 November 2020[2] |
Written in | Python |
Operating system | Linux/X11, Mac OS X, Windows |
License | LGPL |
Website | wiki |
Original author(s) | The Qt Company |
---|---|
Developer(s) | The Qt Company |
Initial release | 5.12 / 17 December 2018 |
Stable release | |
Written in | Python |
Operating system | Linux/X11, Mac OS X, Windows |
License | LGPL |
Website | wiki |
PySide was released under the LGPL in August 2009 by Nokia,[1] the former owners of the Qt toolkit, after Nokia failed to reach an agreement with PyQt developers Riverbank Computing[8] to change its licensing terms to include LGPL as an alternative license.
Work is currently underway to officially launch PySide2 as a Qt product. PySide2 supports Linux/X11, Mac OS X, Windows and Maemo. Support for Android is currently being added by the PySide community.[9]
Hello, World! example
# Import PySide2 classes
import sys
from PySide2 import QtCore, QtWidgets
# Create a Qt application
app = QtWidgets.QApplication(sys.argv)
# Create a Window
mywindow = QtWidgets.QWidget()
mywindow.resize(320, 240)
mywindow.setWindowTitle('Hello, World!')
# Create a label and display it all together
mylabel = QtWidgets.QLabel(mywindow)
mylabel.setText('Hello, World!')
mylabel.setGeometry(QtCore.QRect(200, 200, 200, 200))
mywindow.show()
# Enter Qt application main loop
sys.exit(app.exec_())
References
- PySide has been released, August 18th, 2009 – PySide – Python for Qt. Archived October 25, 2009, at the Wayback Machine
- https://pypi.org/project/PySide2/#history
- http://blog.qt.io/blog/2018/07/17/qt-python-available-pypi/
- https://pypi.org/project/PySide2/
- "PySide2 - Qt Wiki".
- "Bringing pyside back to Qt Project".
- "Shiboken". qt.io. Retrieved 2016-09-06.
- "FAQ – PySide – Python for Qt". Pyside.org. Retrieved 2015-05-04.
- "Which platforms is PySide available for? FAQ – PySide – Python for Qt". Pyside.org. Retrieved 2015-05-04.