PySide: Difference between revisions
First sentence was misleading, I actually tried '>>>import PySide' to see if it was in the standard library. I fixed the wording. |
m Updated latest release |
||
Line 6: | Line 6: | ||
| author = Openbossa |
| author = Openbossa |
||
| developer = [[Qt Project]] |
| developer = [[Qt Project]] |
||
| latest release version = 1.2. |
| latest release version = 1.2.2 |
||
| latest release date = {{release date and age| |
| latest release date = {{release date and age|2014|4|25}} |
||
| latest preview version = |
| latest preview version = |
||
| latest preview date = |
| latest preview date = |
Revision as of 07:25, 14 May 2014
Original author(s) | Openbossa |
---|---|
Developer(s) | Qt Project |
Stable release | 1.2.2
/ April 25, 2014 |
Written in | Python |
Operating system | Cross-platform |
License | LGPL |
Website | www |
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[1] to reduce the size of the binaries and the memory footprint.
PySide was released under the LGPL in August 2009 by Nokia,[2] 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
References
- ^ "Shiboken". Pyside.org. Retrieved 2010-05-25.
- ^ http://www.pyside.org/2009/08/pyside-has-been-released/
- ^ "FAQ – PySide – Python for Qt". Pyside.org. Retrieved 2010-05-25.
- ^ "FAQ – PySide – Python for Qt". Pyside.org. Retrieved 2013-03-19.
External links