PySide

PySide
Original author(s) Openbossa
Developer(s) Qt Project
Initial release 18 August 2009 (2009-08-18)[1]
Stable release 1.2.4 / 14 October 2015 (2015-10-14)
Written in Python
Operating system Cross-platform
License LGPL
Website www.pyside.org

PySide is a Python binding of the cross-platform GUI toolkit Qt. It is one of the alternatives to the standard library package Tkinter. Like Qt, PySide 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[2] to reduce the size of the binaries and the memory footprint.

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[3] to change its licensing terms to include LGPL as an alternative license.

PySide supports Linux/X11, Mac OS X, Windows and Maemo. Support for Android and Symbian is currently being added by the PySide community.[4]

Hello world example

import sys
from PySide import QtGui

app = QtGui.QApplication(sys.argv)

win = QtGui.QWidget()

win.resize(320, 240)  
win.setWindowTitle("Hello, World!") 
win.show()

sys.exit(app.exec_())

See also

Wikimedia Commons has media related to PySide.

References

  1. 1 2 PySide has been released, August 18th, 2009 – PySide – Python for Qt. Archive copy at the Wayback Machine
  2. "Shiboken". Pyside.org. Retrieved 2010-05-25.
  3. "FAQ – PySide – Python for Qt". Pyside.org. Retrieved 2015-05-04.
  4. "Which platforms is PySide available for? FAQ – PySide – Python for Qt". Pyside.org. Retrieved 2015-05-04.

External links


This article is issued from Wikipedia - version of the Sunday, March 27, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.