Take the 2-minute tour ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I am studying python. Now I can write python scripts(codes) to some extent. I am interested in making GUI to those written programs.I like to do it using an IDE rather than using PyGTK or Tkinter. Can anyone help me how to start with this and link my scripts to a GUI. I downloaded a IDE called "glade". But I don't know how to use this IDE. I need some tutorial guide also. Can anyone help me.Please.Thank you!

share|improve this question

closed as unclear what you're asking by gnat, MichaelT, Bart van Ingen Schenau, thorsten müller, Dan Pichelman Nov 2 '13 at 22:58

Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question.If this question can be reworded to fit the rules in the help center, please edit the question.

add comment

1 Answer 1

up vote 0 down vote accepted

Glade is not an IDE it's a GUI builder/designer. Glade just helps you create the interface of your application, Coding comes later.

If you're not comfortable with PyGTK you should try PySide, the Python binding of Qt.

share|improve this answer
    
Thank you. Do you have any resource of tutorial for glade? –  YomalSamindu Nov 3 '13 at 14:12
    
There are a lot of videos on Youtube. However, I really don't recommend Glade or (Gtk in general) for you, Qt Designer is far more powerful and easier than Glade. If you wish to try, this is a PySide tutorial : zetcode.com/gui/pysidetutorial and this is a Qt Designer tutorial : youtube.com/watch?v=LYF0spYkXUs –  Algo Nov 3 '13 at 14:34
    
Thank you very much. I will start with PySide.Thankz again. –  YomalSamindu Nov 3 '13 at 15:18
    
You're welcome. –  Algo Nov 3 '13 at 15:39
add comment

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