Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is TkKinter widely used to build user interfaces?

Tags:

python

tkinter

In which kind of application is Tkinter usually used?

I'm doing a project in Python in which I'm using it for the first time to build a simple user interface.

I was wondering if this is widely used for specific applications, or mobile applications.. etc

like image 966
aneuryzm Avatar asked Oct 19 '10 15:10

aneuryzm


1 Answers

As far as I have seen, Tkinter is great for simple applications, teaching, or for when you don't need the features of a more comprehensive package like Qt or wxWidgets. These libraries can run several megabytes, and you may not need that. It's part of the standard library, so it's suited for this purpose. However, if you need more features, then Tkinter may not be the best choice.

Tkinter also used to look really ugly because it drew its own widgets on each platform; however, I think the version included with Python 2.7 uses native widgets now.

I don't think there are any specific applications; it's a general purpose library.

like image 176
li.davidm Avatar answered Sep 30 '22 17:09

li.davidm