Has anyone tried the new Python Qt binding - PySide yet?

I wonder about its matureness and compatibility with PyQt. What are your experiences on this matter? I know it has only been released this week, but it's such great news for Python development of Qt-based GUIs - there's a lot of interest in this thing.

link|improve this question

What about licenses and license incompatibilities between the two? Some care to explain briefly what you are allowed to do with one and the other? – Paul-Sebastian Manole Nov 26 '10 at 21:20
1  
PySide (LGPL) allows linking from closed source software, PyQt (GPL) does not, and requires separate commercial license. – techtonik Mar 26 '11 at 14:01
feedback

closed as not constructive by casperOne Feb 13 at 15:12

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

8 Answers

up vote 32 down vote accepted

A quick try revealed that PySide was compatible with my PyQt applications with minor or no modifications at all. Seems to be in a pretty good shape already.

link|improve this answer
2  
There are a few cases where it is not exactly a straightforward port, although it is in general: developer.qt.nokia.com/wiki/Differences_Between_PySide_and_PyQt – tylerthemiler Nov 27 '11 at 6:19
feedback

There's basically three pivot points that I think about when it comes to PyQt vs. PySide.

Longevity:

  • PySide is still being updated and maintained, commercial support is available. With Nokia's future somewhat in question it is difficult to say what the future of PySide is.

  • PyQt is still being developed and maintained, commercial support is available. I could be wrong, but I'm pretty sure its maintained by one guy - or at most a small consulting firm. They've got a good track record and don't appear to be going away any time soon. But, at the same time, lets hope he/they don't get hit by a bus.

    Winner: draw

Activity:

  • PySide is being actively developed, there seems to be community support.

  • PyQt is being actively developed, and has a good + long track record.

    Winner: PyQt - One could say PyQt has an advantage for activity - but if Nokia drops Qt, PyQt's might not have the upstream Qt supply to continue the project. It'll just get stale. If that even happens. Alternatively, PySide could just dry up someday and maybe nobody would maintain it.

License:

  • PySide is distributed under LGPL license

  • PyQt is distributed under GPL license with an option for commercial support

    Winner: PySide - LGPL trumps GPL for any business use. Not even a competition.

The license issue alone got me to switch to PySide, but everyone has different criteria.

link|improve this answer
feedback

Just discovered PySide today. I am developing closed-source software using the commercial PyQt license. I tested PySide on some of my code. Replace PyQt4 by PySide everywhere and the code works as is. Only exceptions are pyqtSIGNAL and pyqtsignature, recent additions to PyQt4 which I (unfortunately) use to some extent. I will probably try to run my existing code (now roughly 17.000 lines) with PySide and see what happens. So far I am impressed.

link|improve this answer
feedback

Haven't used it yet, but from their site I gather that it is not yet production ready. (Only supports Linux/X11 for starters.) But they claim that a goal of their first release is to be API compatible with PyQt, you just need to change your imports.

So for now it's probably best to develop for PyQt. It'll be easy to switch in the future.

Update: As mentioned in the comments, this is no longer the case. PySide is ready for use.

link|improve this answer
11  
as of Jan 2011 - working well in Windows. – Neon22 Feb 4 '11 at 10:18
9  
as of March 2011 - it has production ready release – techtonik Mar 26 '11 at 14:04
feedback

One thing is if you are developing for mobile platforms, PySide has started on a Python version of the Mobility APIs. PyQt doesn't seem to have anything going on on that sector.

link|improve this answer
2  
A version for Meego and Maemo was just released. – toor Apr 13 '11 at 7:22
feedback

PyQt is licensed via GPL or the PyQT commercial license. PyQt supports Python 3.x. PySide is licensed via LGPL but does not support Python 3.x (asthough this support is expected to make it in the future.

link|improve this answer
feedback

A recent caveat that's come up is that Nokia has sold Qt. This puts PySide's development in a bit of limbo. PySide was started by and is primarily developed by Nokia, so if Nokia is moving away from Qt then that makes PySide's future uncertain.

link|improve this answer
8  
To say Nokia has 'Sold Qt' is somewhat alarmist. They licensed the commercial development side of Qt to a company that will provide commercial support. While it may not be the most solid foundation right now, Nokia continues to drive development on Qt. As well, PySide is offering commercial support independently. – synthesizerpatel Jul 14 '11 at 2:04
feedback

Just adding for completeness: There is an article about the differences between PySide and PyQt at the Nokia website that might help when migrating from one framework to the other.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.