Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Learning PyQt Quickly [closed]

Tags:

python

pyqt

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.

like image 458
Samuel P Avatar asked Jul 21 '10 14:07

Samuel P


2 Answers

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.
Another 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).

like image 67
Steven Mohr Avatar answered Oct 31 '22 09:10

Steven Mohr


You can read PyQT by Example, a series of blog posts by Roberto Alsina.

like image 27
Juanjo Conti Avatar answered Oct 31 '22 11:10

Juanjo Conti