Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what the best documented python friendly GUI builder like GLADE [closed]

I stepped into python gui programming and I wanted to know what the best documented GUI builder like GLADE, which I'm using right now, however I struggle so much to find some good tutorials or documentation, mostly in the even handling area. I would like also to understand what's the best/documented GUI framework. Thanks to anyone who will answer.

like image 321
nassio Avatar asked Dec 17 '22 01:12

nassio


1 Answers

Glade. You can use Glade GUIs with Python, and the documentation is there. Glade is simply an editor for the GTK, so you can look through the pyGTK docs for information.

In fact, I even have a video tutorial on doing it. It's a bit old now, but should still give the idea.

As for alternatives, the other big one is QT with QT Designer.

like image 84
Gareth Latty Avatar answered Dec 18 '22 15:12

Gareth Latty