Discussion:
[Tutor] Are there any Python-based GUI builders for tkinter
boB Stepp
2015-10-27 20:20:56 UTC
Permalink
I have a friend at work and he is trying to develop GUI applications
in Python, but he does not want to hand-code them. Are there any
commercial or non-commercial products that would do this for him? He
tried his own online search but was unsuccessful.

His OS is Mac OS 10.10 and is using Python 3.5.

TIA!
--
boB
_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Alan Gauld
2015-10-28 00:06:52 UTC
Permalink
Post by boB Stepp
I have a friend at work and he is trying to develop GUI applications
in Python, but he does not want to hand-code them. Are there any
commercial or non-commercial products that would do this for him? He
tried his own online search but was unsuccessful.
There are a few SpecTcl is one that works for Tcl and there was a
version of SpecTcl for python. There are GUI builders for other toolkits
too. Dabo (wxPython at heart but adds its own widgets
on top) is the only one I've found that works well (at least
when I tried it).

But frankly they are generally not very good, or reliable
(crashes/lockups etc) especially if you are used to something
like VB. Its much easier and faster to just use text once you
get used to it.

Others may have had more luck but I tried about 5 or 6 tools
and they all sucked!
--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos


_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Laura Creighton
2015-10-28 08:39:55 UTC
Permalink
Post by boB Stepp
I have a friend at work and he is trying to develop GUI applications
in Python, but he does not want to hand-code them. Are there any
commercial or non-commercial products that would do this for him? He
tried his own online search but was unsuccessful.
His OS is Mac OS 10.10 and is using Python 3.5.
TIA!
--
boB
check out QtDesigner

http://doc.qt.io/qt-5/qtdesigner-manual.html

or QtCreator
http://www.qt.io/ide/

if you want the whole process to happen inside an IDE.

https://wiki.python.org/moin/PyQt/Creating_GUI_Applications_with_PyQt_and_Qt_Designer may be useful as well, though its a little old by now.

Laura

_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Mark Lawrence
2015-10-28 17:31:35 UTC
Permalink
Post by Laura Creighton
Post by boB Stepp
I have a friend at work and he is trying to develop GUI applications
in Python, but he does not want to hand-code them. Are there any
commercial or non-commercial products that would do this for him? He
tried his own online search but was unsuccessful.
His OS is Mac OS 10.10 and is using Python 3.5.
TIA!
--
boB
check out QtDesigner
http://doc.qt.io/qt-5/qtdesigner-manual.html
or QtCreator
http://www.qt.io/ide/
if you want the whole process to happen inside an IDE.
https://wiki.python.org/moin/PyQt/Creating_GUI_Applications_with_PyQt_and_Qt_Designer may be useful as well, though its a little old by now.
Laura
I was't aware that Qt would work with tkinter as given in the subject.
Could you elaborate please?
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence

_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Laura Creighton
2015-10-28 22:32:57 UTC
Permalink
Post by Mark Lawrence
Post by Laura Creighton
Post by boB Stepp
I have a friend at work and he is trying to develop GUI applications
in Python, but he does not want to hand-code them. Are there any
commercial or non-commercial products that would do this for him? He
tried his own online search but was unsuccessful.
His OS is Mac OS 10.10 and is using Python 3.5.
TIA!
--
boB
check out QtDesigner
http://doc.qt.io/qt-5/qtdesigner-manual.html
or QtCreator
http://www.qt.io/ide/
if you want the whole process to happen inside an IDE.
https://wiki.python.org/moin/PyQt/Creating_GUI_Applications_with_PyQt_and_Qt_Designer may be useful as well, though its a little old by now.
Laura
I was't aware that Qt would work with tkinter as given in the subject.
Could you elaborate please?
I actually only read the text of the letter, and not the subject
line. So I assumed any gui toolkit he did not have to build himself
that would work with python would be fine.

Laura

_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Mark Lawrence
2015-10-29 00:22:48 UTC
Permalink
Post by Laura Creighton
Post by Mark Lawrence
Post by Laura Creighton
Post by boB Stepp
I have a friend at work and he is trying to develop GUI applications
in Python, but he does not want to hand-code them. Are there any
commercial or non-commercial products that would do this for him? He
tried his own online search but was unsuccessful.
His OS is Mac OS 10.10 and is using Python 3.5.
TIA!
--
boB
check out QtDesigner
http://doc.qt.io/qt-5/qtdesigner-manual.html
or QtCreator
http://www.qt.io/ide/
if you want the whole process to happen inside an IDE.
https://wiki.python.org/moin/PyQt/Creating_GUI_Applications_with_PyQt_and_Qt_Designer may be useful as well, though its a little old by now.
Laura
I was't aware that Qt would work with tkinter as given in the subject.
Could you elaborate please?
I actually only read the text of the letter, and not the subject
line. So I assumed any gui toolkit he did not have to build himself
that would work with python would be fine.
Laura
How many times do I have to say this, never assume anything, and I
assume that you're okay with that? :)
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence

_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Loading...