Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any Visual Studio-like tool for creating GUIs for Python?

My girlfriend asked me if there was a tool (actually, an IDE) that would let her create her GUI visually and edit functions associated with GUI-related events with little effort.

For example, she wants to double-click a button she just created and immediately see (and edit) the code associated with that button's on-click event. I believe this is what she does in Visual Studio.

The toolkit doesn't matter. She just wants this funcionality.

Is there some tool that accomplishes this?

Thank you.

EDIT: Made the example look bold. Seemed no one was looking at it, and it's an important requirement.

like image 210
Pablo Antonio Avatar asked Dec 27 '09 22:12

Pablo Antonio


1 Answers

I would recommend based on your needs:

  • Qt Designer
  • wxGlade

Check this out: http://wiki.python.org/moin/GuiProgramming

like image 105
Dimitris Leventeas Avatar answered Sep 20 '22 18:09

Dimitris Leventeas