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.

PySide
Original author(s)The Qt Company
Developer(s)The Qt Company
Initial release1.0/18 August 2009 (2009-08-18)[1] (under the name of PySide)
Stable release
PySide 5.15.2 / 20 November 2020 (2020-11-20)[2]
Written inPython
Operating systemLinux/X11, Mac OS X, Windows
LicenseLGPL
Websitewiki.qt.io/PySide
PySide2 or Qt for Python
Original author(s)The Qt Company
Developer(s)The Qt Company
Initial release5.12 / 17 December 2018 (2018-12-17)
Stable release
5.12 / 17 December 2018 (2018-12-17)[3][4]
Written inPython
Operating systemLinux/X11, Mac OS X, Windows
LicenseLGPL
Websitewiki.qt.io/PySide2

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_())

See also

References


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.