PDA

View Full Version : Help, I need some advices about Python (Making GUIs)



nicoobe
September 7th, 2010, 02:14 AM
Hello everybody,
2 Months before I was telling you guys that I have moved to ubuntu and that I wanted an alternative to Visual Basic. You tell me to learn python very well and not worry about GUIs. I have learn very well python and I have to make GUIs. So I was looking for some program that could allow me to make Visual Programs. I was looking for something of the style of Visual Basic or similiar. So could you recommend me a IDE?

Thanks you very Much):P

juancarlospaco
September 7th, 2010, 03:11 AM
Tk

Random example, my splash screen:

http://file.status.net/identica/juancarlospaco-20100624T021321-qapycyp.jpeg

WYSIWYG GUI-Builder for Python-TK:
http://sourceforge.net/projects/spec...GUI%20Builder/

TK FULL Manual:
http://infohost.nmt.edu/tcc/help/pubs/tkinter.pdf

If you want Web-Based GUI:

http://www.web2py.com/

If you want Text-Based GUI (usefull for Servers!):

http://excess.org/urwid/

Everything with Python flavour...

:D

louis--taylor
September 7th, 2010, 03:19 AM
Check out Boa Constructor (wxpython ide): http://boa-constructor.sourceforge.net/
or even better, Glade + PyGtk: http://glade.gnome.org/

I like PyGtk much better than wxpython, but wxpython works a lot better on windows if that is any concern to you.

vlaar
September 7th, 2010, 11:40 AM
Wxpython is a little more advanced than tkinter(TK).
personally i prefer TK. I advice you to both check them out. and see which works best for you!