Menu

PythonQt / News: Recent posts

PythonQt has moved to GitHub

PythonQt has moved to GitHub:

https://github.com/MeVisLab/pythonqt

The SF site will stay around, but will not get updated anymore.

Issues should be reported at:

https://github.com/MeVisLab/pythonqt/issues

Posted by Florian Link 2019-06-24

PythonQt 3.2 released!

Today we released PythonQt 3.2. It provides several bug fixes and improvements.

The main changes are:
* improvements and fixes to QMetaObject creation on Python classes derived from QObject
* wrapper generator now works with Qt 5.7 and Qt 5.8
* various fixes in the type system
* new naming convention for the generated shared libraries to allow side-by-side PythonQt libraries for Qt4/Qt5 and Python 2 / Python 3

Posted by Florian Link 2017-06-06

PythonQt 3.1 update

The PythonQt 3.1 zip file contained wrappers for two methods which are not part of Qt 5.6, so compilation failed on all platforms. I updated the svn and the PythonQt 3.1 release zip file. Sorry for the inconvenience!

Posted by Florian Link 2016-06-13

PythonQt 3.1 released

PythonQt 3.1 has just been released and contains fresh wrappers for Qt 5.6.
It adds support for QtCore.Slot, QtCore.Signal and QtCore.Property and creates dynamic meta objects
when slots, signals or properties are added. PythonQt now contains wrappers for QtQml and QtQuick.
It does not yet support extending Qml with Python classes. The QtWebKit support is now made optional,
since Qt 5.6 does not come with QtWebKit anymore.... read more

Posted by Florian Link 2016-06-09

PythonQt svn trunk is now Qt5 only

We added support for dynamic metaobject creation (QtCore.Signal, QtCore.Property, QtCore.Slot), which
is only supported on Qt5 and makes use of the private QMetaObjectBuilder.

This code is not backwards compatible to Qt4 and we decided to stop Qt4 support on the svn trunk.
The last working Qt4 version can be found in the SVN at branches/Qt4LastWorkingVersion/.

Posted by Florian Link 2016-05-31

PythonQt 3.0 released

PythonQt 3.0 has just been released. After three years of small improvements on the SVN trunk, it was about time to do an official release.

The following features have been added:

  • Python 3 support
  • Qt 5 support
  • C++/Python ownership tracking for most of the Qt API
  • better support for Pylint and jedi completion library (by e.g. implementing doc strings on slots)
  • wrapping of all protected methods and protected enums
  • many small improvements and bug fixes... read more
Posted by Florian Link 2015-02-04

PythonQt 2.1 is out!

The PythonQt 2.1 release is ready for download. We provide a legacy version with Qt 4.6.2 wrappers and a version with newly generated wrappers for Qt 4.8.

In addition to many bug fixes the following features have been added:

- support for new style signals
- improved introspection
- support for external object wrapping via PythonQtForeignWrapperFactory, e.g. to support existing SWIG wrappers
- improved ownership handling of wrapped C++ (non-QObject) objects... read more

Posted by Florian Link 2012-06-25

PythonQt 2.0.1 is available

The PythonQt 2.0 release contained a last minute feature that broke Python startup of PythonQt, this is fixed in the PythonQt 2.0.1 release and on SVN trunk. Lesson learned: Never add last minute features without running your unit tests.

Posted by Florian Link 2010-05-15

PythonQt 2.0 is available

This is the first PythonQt release that offers complete wrapping of the Qt framework using a wrapper generator. The core PythonQt library is still fully dynamic using the QMetaObject system, while the generator adds the parts of Qt which are not QObjects or signal/slots. Large parts of PythonQt have been rewritten since the last 1.1 release. PythonQt now supports multiple inheritance, polymorphic downcasting and a lot of other details which you can find in the documentation.
Deriving C++ classes from Python is now supported as well, but it is an experimental feature which has not been tested a lot.
A comparison to PyQt and PySide APIs has been added to the feature overview of the website.

Posted by Florian Link 2010-05-07

PythonQt 1.1 update available

This PythonQt 1.1 release offers a lot of small fixes and improvements to the project, after a long period of silence.

Posted by Florian Link 2009-03-31

PythonQt 1.0 Major Release!

This is a major release of Python Qt 1.0.
Various aspects have been improved both on functionality and performance side. A number of examples have been added to make it easier to get started.

A short overview of the new features:

- Support for ALL built-in Qt QVariant types (with complete API mapped to Python)
- Support for custom MetaTypes in QVariants
- Support for Constructors of QObject derived classes
- Easy way to wrap non-slot methods of existing QObject derived classes with "decorator slots"
- Support for static methods on QObjects and CPP classes (via decorator slots)
- Complete Qt GUI Constructors/Destructors support via QUILoader
- Support for CPP Constructors and easy manual wrapping of CPP API
- Complete support for Enum types
- Support for Qt namespace and Enums
- Support for loading python scripts from Qt resources (see examples)
- Auto-completion on the PyScriptConsole, which is now part of PythonQt core library
- support for dir() statement on all wrapped objects
- new help() method that prints details on wrapped objects... read more

Posted by Florian Link 2007-05-09

PythinQt 0.9.2 released

This release adds support for access to children of QObjects,
allows to connect/disconnect Qt signals to Python objects from within Python and fixes several small bugs.
In addition to that, slots can not receive PyObject pointers directly, to get Python objects without any marshalling.

Posted by Florian Link 2007-01-29

PythonQt 0.9.1 released

The profiles for the build system where missing,
this is a minor update.

Posted by Florian Link 2006-11-28

PythonQt 0.9 released

We are happy to announce the first public release of our dynamic binding of Qt4 to Python.
The first release is considered beta, but has been running in a commercial product for some month.
We are looking for Open Source developers to join and improve the project!

Posted by Florian Link 2006-11-15