That book is a good introduction.

Translating the PyQt code into PySide should be simple, as generally they are the same. This page documents the differences:
http://qt-project.org/wiki/Differences_Between_PySide_and_PyQt

The main difference is things like QString and QStringList disappear, and instead the methods use a regular Python string, or list of strings. Mostly that just means you can simplify str(blah.getText()) or QtCore.QStringList(['a', 'b']) to blah.getText() or ['a', 'b']

As for other tutorials, I found a bunch of these examples useful:
http://zetcode.com/gui/pysidetutorial/

Also the PySide docs are good, if you know what you are looking for.. There's a mirror of them here, as the official site disappeared for some reason:
http://srinikom.github.io/pyside-docs/

Finally, it's worth remembering that PySide is a thin wrapper to Qt, so many Qt tutorials/example-code for C++ can usually be translated into Python

On 02/05/13 01:39, Jose Fernandez de Castro wrote:
Rapid GUI Programming with Python and Qt is pyqt specific, but most
principles and methods apply to pyside too, and it is probably the
best book on the subject.

On Wed, May 1, 2013 at 6:16 AM, Howard Jones<mrhowardjo...@yahoo.com>  wrote:
Found
http://qt-project.org/wiki/PySide_Tutorials
so I'm ok on that front - any books though?

Cheers
Howard

________________________________
From: Howard Jones<mrhowardjo...@yahoo.com>
To: Nuke Python discussion<nuke-python@support.thefoundry.co.uk>
Sent: Wednesday, 1 May 2013, 14:02
Subject: [Nuke-python] add data to pyside table

Hi

Apologies for a real noob question but

It appears that wxPython is a non-starter with Nuke, so I am now delving
into pySide

Could someone point me to a good site(s) for pySide documentation, and/or
books, I can only find one in German so far.
and with the table example in the manual could someone enlighten me as to
how to add one row of data to it.
So far I can only find info on setting cells but not adding data, but I have
only just started all this.

Many thanks
Howard

_______________________________________________
Nuke-python mailing list
Nuke-python@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python



_______________________________________________
Nuke-python mailing list
Nuke-python@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python





--
ben dickson
2D TD | ben.dick...@rsp.com.au
rising sun pictures | www.rsp.com.au
_______________________________________________
Nuke-python mailing list
Nuke-python@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python

Reply via email to