473,766 Members | 2,055 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

comparing of python GUI´s

Hi
i want some info ...
plz tell me the benefit (or any data) of each gui (pyqt , pyqtk ,
wxpython , tkinter ..)
in the other hand wich one you offer (and why ?) ?

Jun 20 '06 #1
6 1436

Bayazee wrote:
Hi
i want some info ...
plz tell me the benefit (or any data) of each gui (pyqt , pyqtk ,
wxpython , tkinter ..)
in the other hand wich one you offer (and why ?) ?


Open the following url: http://www.google.com
Enter the following: "google tutorial"
Choose a link and follow the instructions.

Alain

Jun 20 '06 #2
Bayazee wrote:
Hi
i want some info ...
plz tell me the benefit (or any data) of each gui (pyqt , pyqtk ,
wxpython , tkinter ..)
in the other hand wich one you offer (and why ?) ?


They are solely offered to confuse newbies - especially the ones
google'cally challenged that can't search this NG for the bazillion
discussions regarding their respective cons and pros.

Diez
Jun 20 '06 #3
> plz tell me the benefit (or any data) of each gui (pyqt , pyqtk ,
wxpython , tkinter ..)


Well, as you can see pyqt, pyqtk, and wxpython must be far better
than tkinter because they have python (or bits of python) in
their names. In turn, you can also clearly determine that
wxpython is better than pyqt and pyqtk because it has the whole
word "python" in its name, not some sissy-minded cropping of the
word. And as far as pyqt and pyqtk go, clearly, because of the
"k" suffix (which we all know means "kilobyte") , is a thousand
times better than pyqt (or 1024x better, depending on whether you
use computer measurements or hard-disk-space measurements).
Thus, you find the ranking must be

1) wxpython (best)
2) pyqtk
3) pyqt
4) tkinter (worst)

There's also pygtk which you must not have seen, because it is
not on your list. This would rank at 2.5 in the above list
because it

1) does have "py" in the name, and
2) "g" comes before "q" in the alphabet, and we know that later
versions must be better
3) it has a "k" in its name, and must also be 1k times better
than the non-existent "pygt"
Hopefully these facts, unclouded by alleged "facts" that you
might find during the most basic of searches on google, will help
you make a *rational* decision regarding which GUI toolkit is
best. ;)

-tkc


Jun 20 '06 #4
ThanX ...
any idea for choosing one of them ?
best in linux & windows
i must write a cross platform project .
it is a chat server and client with a user end site .
i started by writing a web site and creating a database in MySQL (FC4)
..
now i want to write a client with gui . similir to yahoo messenger or
....
whats your suggest ?

Jun 20 '06 #5

Bayazee wrote:
ThanX ...
any idea for choosing one of them ?
best in linux & windows
i must write a cross platform project .
it is a chat server and client with a user end site .
i started by writing a web site and creating a database in MySQL (FC4)
.
now i want to write a client with gui . similir to yahoo messenger or
...
whats your suggest ?


You probably didn't notice but Tim's post was meant to be humorous ;-)
Go back to my advice.
Once you're proficient with Google (it might take you some time), go
and search for previous discussions on the same subject.

Alain

Jun 20 '06 #6
Bayazee wrote:
i want some info ...
plz tell me the benefit (or any data) of each gui (pyqt , pyqtk ,
wxpython , tkinter ..)
in the other hand wich one you offer (and why ?) ?


Take a look at these resources:

http://wiki.python.org/moin/GuiProgramming
http://www.awaretek.com/toolkits.html

The last one will be especially useful in helping you make some
kind of informed decision.

David

Jun 20 '06 #7

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

Similar topics

37
10444
by: Ubaidullah Nubar | last post by:
Hi, How well is Python suited for developing database based applications? I am new to Python so please bear with me if some of the questions are too simple. I specifically have the following questions: 1. Is there an example of a simple data-entry application written in Python using a GUI interface? Something like a simple address book app with a listbox displaying all addresses with the ability to add/modify/delete.
3
12337
by: Anand K Rayudu | last post by:
Hi All, I am new to python & want to build some GUI dialogs. Can some one please suggest some document reference. I am hoping that standard python install will have some GUI development modules & GUI builder in built. I have python 2.3.3. Can some one please suggest
9
3769
by: F. GEIGER | last post by:
I've dev'ed a Python prototype of an app, that besides the internals making it up has a gui. While test-driven dev'ing the app's internals in Python is fun as usual, dev'ing the GUI is not so funny, at least for me. I guess dev'ing a GUI in a test-driven way is not possible, or is it? I'm using wxPython, so if anyone has an idea... For now most of the time I extend and change the gui things, then run it, do the clicks to go thru the...
20
2343
by: Ilias Lazaridis | last post by:
" A cooperation between Sun Microsystems and IBM&Co. in conjunction with liberal & high evolutive communities would result in an nearly unbeatable programming platform. My evaluation has shown: this is a non achievable goal, as stubborness and egoism rules - instead of reason and cooperation. Thus I leave all those ridiculous folks behind, which will continue to do an excellent job in keeping the very promising JAVA platform far
217
9215
by: gyromagnetic | last post by:
The following url points to an article written by Damian Conway entitled "Ten Essential Development Practices": http://www.perl.com/pub/a/2005/07/14/bestpractices.html Althought the article has Perl as a focus, I thought that some of the general points made might be of interest to the Python community. It would certainly be interesting to put together an analogous version of this article that centers on Python. Best Regards,
16
5216
by: PyDenis | last post by:
Today, I found strange error while using py2exe: 1. I wrote simple program and save as 1.py: import win32ui import win32con win32ui.MessageBox('Test messageBox.' , 'Test', win32con.MB_OK | win32con.MB_TOPMOST ) 2. I create 1_setup.py file for py2exe:
28
2637
by: H J van Rooyen | last post by:
Hi, I want to write a small system that is transaction based. I want to split the GUI front end data entry away from the file handling and record keeping. Now it seems almost trivially easy using the sockets module to communicate between machines on the same LAN, so that I want to do the record keeping on one machine.
59
2530
by: Kevin Walzer | last post by:
From the introduction to PyObjC, the Python-Objective-C bridge on Mac OS X: "As described in Objective-C for PyObjC users the creation of Objective-C objects is a two-stage process. To initialize objects, first call a class method to allocate the memory (typically alloc), and then call an initializer (typically starts with init). Some classes have class methods which perform this behind the scenes, especially classes that create cached,...
31
2478
by: sdoty044 | last post by:
Just wondering on what peoples opinions are of the GUIs avaiable for Python? All I am doing is prompting users for some data (listbox, radio buttons, text box, ect...). Then I will have some text output, maybe a scrolling text message as things are happening. I have some minor things I need to do, for example, if Checkbutton X is clicked, I need to disable TextBox Y, and I would like to display the scrolling text (output)
0
9568
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 usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10168
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. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9959
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
9837
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7381
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6651
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5279
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3532
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.