473,545 Members | 1,310 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

evaluating gui modules, any experience on tkinter?

hello all,
I seam to have noticed this a bit late but it appears to me that
tkinter is being used very widely for gui development on all platform?
is that right?
since fredric lundh has written a very good introduction to tkinter
(was that just an intro?), I have got keen interest to know the
following. may be fredric himself might put some light on these
points.
1. I seriously don't intend to start a flame war but does tkinter
stand up to the standards of heavy gui development? can I have an
entire mdi application working fine with tkinter? I know wxpython can
do it and I have heard enough about pyqt, but tkinter seams to be very
rich in gui objects.
2. as usual I always look out for accessibility when it comes to gui
design. will tkinter be useful for blind people? I mean, are gui
apps in tkinter accessible on windows?
3. I don't know if I need any thing else as dependencies on my
windows machine. I am using python24 and I did not find any thing
about installation in the introduction to tkinter. can some one give
me the process of installing tkinter and all necessary things?
4. is tkinter absolutely compatible with windows gui? does it call on
native api for native look and feel? in that case I think
accessibility issue is automatically solved.
I am looking out gui library for some serious application development.
one is an erp system and the other is a customer relation management
system.
so I am confused between wxpython pyqt and now tkinter.
out of the 3 I only found qt talking extencively about accessibility,
but did not find a way to install qt in the first place. I could not
compile qt nor did I find any run-time dlls for mingw so that I can
use it out of the box.
wxpython is the poorest in documentation and tkinter seams to be best at that.
please give me some advice.
thanking all.
Krishnakant.
Dec 2 '06 #1
7 1937

krishnakant Mane wrote:
hello all,
I seam to have noticed this a bit late but it appears to me that
tkinter is being used very widely for gui development on all platform?
is that right?
since fredric lundh has written a very good introduction to tkinter
(was that just an intro?), I have got keen interest to know the
following. may be fredric himself might put some light on these
points.
1. I seriously don't intend to start a flame war but does tkinter
stand up to the standards of heavy gui development? can I have an
entire mdi application working fine with tkinter? I know wxpython can
do it and I have heard enough about pyqt, but tkinter seams to be very
rich in gui objects.
2. as usual I always look out for accessibility when it comes to gui
design. will tkinter be useful for blind people? I mean, are gui
apps in tkinter accessible on windows?
3. I don't know if I need any thing else as dependencies on my
windows machine. I am using python24 and I did not find any thing
about installation in the introduction to tkinter. can some one give
me the process of installing tkinter and all necessary things?
4. is tkinter absolutely compatible with windows gui? does it call on
native api for native look and feel? in that case I think
accessibility issue is automatically solved.
I am looking out gui library for some serious application development.
one is an erp system and the other is a customer relation management
system.
so I am confused between wxpython pyqt and now tkinter.
out of the 3 I only found qt talking extencively about accessibility,
but did not find a way to install qt in the first place. I could not
compile qt nor did I find any run-time dlls for mingw so that I can
use it out of the box.
wxpython is the poorest in documentation and tkinter seams to be best at that.
please give me some advice.
thanking all.
Krishnakant.
Dec 2 '06 #2
For wxPython, there is a book "wxPython in Action" published by
Manning

Cheers

Norm wrote:
krishnakant Mane wrote:
hello all,
I seam to have noticed this a bit late but it appears to me that
tkinter is being used very widely for gui development on all platform?
is that right?
since fredric lundh has written a very good introduction to tkinter
(was that just an intro?), I have got keen interest to know the
following. may be fredric himself might put some light on these
points.
1. I seriously don't intend to start a flame war but does tkinter
stand up to the standards of heavy gui development? can I have an
entire mdi application working fine with tkinter? I know wxpython can
do it and I have heard enough about pyqt, but tkinter seams to be very
rich in gui objects.
2. as usual I always look out for accessibility when it comes to gui
design. will tkinter be useful for blind people? I mean, are gui
apps in tkinter accessible on windows?
3. I don't know if I need any thing else as dependencies on my
windows machine. I am using python24 and I did not find any thing
about installation in the introduction to tkinter. can some one give
me the process of installing tkinter and all necessary things?
4. is tkinter absolutely compatible with windows gui? does it call on
native api for native look and feel? in that case I think
accessibility issue is automatically solved.
I am looking out gui library for some serious application development.
one is an erp system and the other is a customer relation management
system.
so I am confused between wxpython pyqt and now tkinter.
out of the 3 I only found qt talking extencively about accessibility,
but did not find a way to install qt in the first place. I could not
compile qt nor did I find any run-time dlls for mingw so that I can
use it out of the box.
wxpython is the poorest in documentation and tkinter seams to be best at that.
please give me some advice.
thanking all.
Krishnakant.
Dec 2 '06 #3
krishnakant Mane wrote:
I seam to have noticed this a bit late but it appears to me that
tkinter is being used very widely for gui development on all platform?
is that right?
Tkinter is bundled with Python on all platforms that support Tcl/Tk.
As a result there's a low "barrier to entry" to Tkinter programming, so
people tend to use it, at least when they start with GUI development.
3. I don't know if I need any thing else as dependencies on my
windows machine. I am using python24 and I did not find any thing
about installation in the introduction to tkinter. can some one give
me the process of installing tkinter and all necessary things?
It's been a long time since I installed Python on Windows, and I think
I used ActivePython:

http://www.activestate.com/Products/ActivePython/

I believe that this package includes Tkinter, so you shouldn't have
to do anything else to install it.
so I am confused between wxpython pyqt and now tkinter.
out of the 3 I only found qt talking extencively about accessibility,
but did not find a way to install qt in the first place. I could not
compile qt nor did I find any run-time dlls for mingw so that I can
use it out of the box.
I believe there should be a package which includes pre-built Qt
libraries as well as source code, all licensed under the GNU GPL.
It may not help you get started with MinGW, though the information
on the download page indicates that the package "will also download
and install the MinGW compiler, if needed".

Take a look at the following page for more information:

http://www.trolltech.com/developer/downloads/qt/windows

If you're unable to license your own code under the GNU GPL then
you'll have to look at commercial licenses for Qt and PyQt.

David

Dec 2 '06 #4
hg
krishnakant Mane wrote:
hello all,
I seam to have noticed this a bit late but it appears to me that
tkinter is being used very widely for gui development on all platform?
is that right?
since fredric lundh has written a very good introduction to tkinter
(was that just an intro?), I have got keen interest to know the
following. may be fredric himself might put some light on these
points.
1. I seriously don't intend to start a flame war but does tkinter
stand up to the standards of heavy gui development? can I have an
entire mdi application working fine with tkinter? I know wxpython can
do it and I have heard enough about pyqt, but tkinter seams to be very
rich in gui objects.
2. as usual I always look out for accessibility when it comes to gui
design. will tkinter be useful for blind people? I mean, are gui
apps in tkinter accessible on windows?
3. I don't know if I need any thing else as dependencies on my
windows machine. I am using python24 and I did not find any thing
about installation in the introduction to tkinter. can some one give
me the process of installing tkinter and all necessary things?
4. is tkinter absolutely compatible with windows gui? does it call on
native api for native look and feel? in that case I think
accessibility issue is automatically solved.
I am looking out gui library for some serious application development.
one is an erp system and the other is a customer relation management
system.
so I am confused between wxpython pyqt and now tkinter.
out of the 3 I only found qt talking extencively about accessibility,
but did not find a way to install qt in the first place. I could not
compile qt nor did I find any run-time dlls for mingw so that I can
use it out of the box.
wxpython is the poorest in documentation and tkinter seams to be best at
that. please give me some advice.
thanking all.
Krishnakant.

Tkinter is fine under *nix and Windows for a large range of applications. I
think it has drawbacks and advantage compared to other toolkits. The major
advantage being bundled with python, and the drawbacks include (I
think) ... look and feel, printing support, imaging, documentation.

Then there are two schools: PyQT and wxPython - both very easy to learn and
production libraries ... I never know whether PyQT is commercial or not
under windows (trollteck changed their QT license I think).

I strongly suggest looking at wxPython - and start with their demo package
which runs also under *nix and windows.
hg

Dec 2 '06 #5
hg wrote:
Tkinter is fine under *nix and Windows for a large range of applications.
I think it has drawbacks and advantage compared to other toolkits. The
major advantage being bundled with python, and the drawbacks include (I
think) ... look and feel, printing support, imaging, documentation.
agreed
Then there are two schools: PyQT and wxPython -
you completely forgot pygtk. or you didn't want to mention it :)
both very easy to learn
I think that pygtk is the easiest

ciao
--
Gian Mario Tagliaretti
Dec 2 '06 #6
On 03/12/06, Gian Mario Tagliaretti <g.***********@ gmail.comwrote:
hg wrote:

Tkinter is fine under *nix and Windows for a large range of applications.
I think it has drawbacks and advantage compared to other toolkits. The
major advantage being bundled with python, and the drawbacks include (I
think) ... look and feel, printing support, imaging, documentation.
well, I am looking seriously at wxpython.

I found pyqt very good but can't figure out where to get dynamic
run-times for qt.
I don't want to compile it myself.
if that is available then I could as well go for it.
but talking about wxpython, I found it very easy. and after reading a
few articles at devshed.com I am up and running with wxpython.
but problem is that as I emailed on another thread, I am falling short
of api documentation and reference for wxpython.
there is the reference and all the docs for wx widgets. but what is
the point in first studying the c++ version and then translating the
same back to python when a library is already been translated and
there to be used?
Krishnakant.
Dec 3 '06 #7
Tkinter is lame, but it works everywhere and is what I keep coming back
to despite my many complaints about it.

If youre application can be fit into a web porgramming framework, that
may well be the best way to go. Your browser can probably render a
better gui than any of the other frameworks can.

Cheers,
-T

Dec 3 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1828
by: Marcus Schneider | last post by:
Sorry if this is an extremely stupid question: I produced some Python modules with TKinter stuff and now I want to use that from my main program. The windows have wuite some user interaction. It's easy to bring them to the screen, but how do I make the communication (i.e. variables) between the main and the modules happen? Currently I...
8
1810
by: Grzegorz Dostatni | last post by:
I had an idea yesterday. (Yes, I know. Sorry). If we don't need to declare variables as having a certain type, why do we need to import modules into the program? Isn't the "import sys" redundant if all I want is to call "sys.setrecursionlimit(5000)" ? Why couldn't we just try loading the module of a name "sys" to see if it exists and re-try...
12
2360
by: qwweeeit | last post by:
The pythonic way of programming requires, as far as I know, to spread a big application in plenty of more manageable scripts, using import or from ... import to connect the various modules. In some cases there is a further complication: module importing through an indirect mechanism, like: exec "from " + xxx + " import *". A part the fact...
51
2974
by: Reinhold Birkenfeld | last post by:
Hello, at the moment python-dev is discussing including Jason Orendorff's path module into the standard library. Do you have any other good and valued Python modules that you would think are bug-free, mature (that includes a long release distance) and useful enough to be granted a place in the stdlib? For my part, ctypes seems like a...
2
2309
by: Sanjeev | last post by:
Hi, I am evaluating Lumigent's Entegra for doing security and business audit of some of the critical database(s) in the company I work for. I would like to know what has been your experience in using this product for doing similar audits in your company, if you have also done such audits. Thanks, Sanjeev
1
2717
by: Viewer T. | last post by:
I would like to know which modules I would need in order to create peer-to-peer chat program in python using Tkinter. If I would need modules that do not come packaged with python, I would appreciate information on where I can get them. Thanks.
11
3984
by: Tina I | last post by:
Hi list, Is there a preferred way to distribute programs that depends on third party modules like PyQt, Beautifulsoup etc? I have used setuptools and just having the setup script check for the existence of the required modules. If they're not found I have it exit with a message that it need this or that installed. But this is not very...
1
3416
by: cfpete | last post by:
Hello, How do I go about to have python compiled from source so that I can import gtk and Tkinter modules. Those don't seem to be included when I use the default ./configure or python setup.py. Thanks in advance, -Peter
4
1507
by: Stef Mientki | last post by:
hello, I wonder if anyone has (good ;-) experiences with Python on a PDA ? And if so, - what OS - what GUI thanks, Stef Mientki
0
7457
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7391
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7651
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7802
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7410
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7746
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
3443
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3438
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1869
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.