tags:

views:

181

answers:

2

Hi all.

For a college project, I need to implement a GUI for a console app I wrote. For this I decided to use PyQt. I need only basic functionalities, such as designing a simple form with basic elements and displaying some texts on it.

Can anyone point me to a nice tutorial for learning PyQt? I really don't want to get into the details of Qt at this stage.

+2  A: 

The best way to learn PyQt is the book "Rapid GUI Programming with Python and Qt" from Mark Summerfield. That's the way I learned PyQt. Antoher very good source is the homepage of PySide. They also provide a Python Qt wrapper which is compatible to PyQt. It has a very nice documentation (with real python examples, not C++ like PyQt).

Steven Mohr
+3  A: 

You can read PyQT by examples, a serie of blog posts by Roberto Alsina.

Juanjo Conti