vote up 33 vote down star
28

I am considering creating a GUI-based tool that I want to be cross-platform. I've dismissed Java, as I personally do not like Swing. I'm currently considering C# and using Mono to make it cross-platform. However I'm wondering whether new-fangled cross-platform languages like Python can offer me a decent GUI development environment.

flag

80% accept rate
2  
I wouldn't call Python "new-fangled" See en.wikipedia.org/wiki/…. I think it predates C# by many years. – S.Lott Sep 22 '08 at 16:26
Fair point, if a little pedantic :) – David Arno Sep 22 '08 at 20:43
The issue is that "new-fangled" usually == "risky", "goofy" or "subject to wild changes without notice". – S.Lott Sep 23 '08 at 1:31
I was under the impression that "subject to wild changes without notice" was a valid criticism of Python. Am I wrong in this regard? That aside, your point is well made: "new fangled" was a poor choice of term. – David Arno Sep 24 '08 at 13:31
2  
Core Python is fairly conservative: 2 years per major release, no backward-incompatible changes without advance notice (several years in advance). Non-core libraries, of course, may have their own policies. – Constantin Feb 16 at 14:20

19 Answers

vote up 39 vote down check

I've made numerous UI's in wxPython and would highly recommend it. I used to build in VisualC++/MFC then discovered wxWidgets/C++ and finally moved onto wxPython. I find I'm able to get working GUIs in no time at all with wxPython compared to the other methods and with almost no effort, the same source works works on Linux and the Mac* (sometimes you need some tweaks for visual anomolies).

*I generally develop under Windows in case you hadn't guessed.

[Edit] There's a tool (wxDesigner) you can use to generate the layout for you or alternatively, you can play with it programmatically. Either way, layout under wxWidgets is done using Sizers. They're quite a powerful way of laying out a GUI and once set up correctly, will automatically resize your controls appropriately for you.

[Edit2] There's a nice little tutorial on sourceforge with some good examples of what you can do with sizers.

link|flag
Too sad. Still no wxPython for Python 3. – Selinap Jul 11 at 10:00
1  
The link to wxDesigner is dead. – Gabb0 Nov 16 at 16:31
I've fixed the link. – Jon Cage Nov 20 at 15:11
vote up 4 vote down

You could try PyQt This uses the Qt toolkit for the GUI but you write your program in python.

Qt Designer can be used to create GUIs graphically for use with PyQt

link|flag
I don't see anything on that site that talks about the IDE working for GUI building, being written with PyQt and being an IDE for it are two different things. Have you used it to actually develop a GUI app? If so, how is it for that? – Joe Skora Sep 22 '08 at 15:33
vote up 7 vote down

There are excellent GUI options for Python. wxPython is a great place to start, pyQT is good if you have spare money.

The biggest issue I've seen is having a tool that lets you layout a form with the ease of Visual Studio -- but I think pyQT has that one resolved, and wxWindows has a version you can pay for.

link|flag
vote up 2 vote down

Go for it. I think you will find it an easier cross platform route than C#+Mono. Check out Tkinter, the Python interface to Tcl/Tk. Tkinter is available for Unix, Windows and Macintosh. It has been a while but as I recall there were a couple of well done IDEs for development and GUI layout.

link|flag
Tk is so easy you don't really need an IDE for doing GUI layout. Get yourself a piece of graph paper and a good pencil. That's not tongue-in-cheek: it really is easy to do layouts in Tk -- I've yet to find a toolkit that is easier (though admittedly, I've only used a half dozen or so professionally) – Bryan Oakley Aug 19 at 16:21
vote up 4 vote down

I've actually done similar research lately as many of the artist I work with work on Macs. What I found is that wxPython seems pretty robust. My goals were for internal tools development, so I was looking for a more efficient development language than C# and Java.

I'm not an expert in wxPython, but if you are interested in GUI development in Python, I would give this API a try, or at least some research time.

link|flag
vote up 5 vote down

Python is excellent for gui development
Speed of execution is less important than speed of development, GUIs change a lot. GUIs generally involve dealing with text and storing state - ideal pythonisms
If your app is in c++/c#, then having the gui written in a different langauge enforces gui/logic separation.

Options are: wxpython/pyQT - equally good, all the functionality of wx/qt from python, both the designers can spit out native python implementations.

IronPython - .net implmentation of python so all winforms and wpf directly from python. You get all the .net libs but only a subset of the native python ones, but it is very easy to mix python gui with other parts of the app writen in c# etc.

link|flag
How exactly does writing in C++/C# enforce GUI/logic seperation? – Jon Cage Sep 22 '08 at 16:07
1  
I mean't that having the gui written in a different language enforces separation (I clarified the post) – mgb Sep 22 '08 at 16:23
Fair point then :-) – Jon Cage Sep 22 '08 at 18:03
vote up 0 vote down

You should take a look at IronPython. With it you can use the .NET Framework and I'm pretty sure somehow Mono too!

http://www.google.de/search?hl=en&pwst=1&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=ironpython&spell=1

link|flag
vote up 14 vote down

wxPython is the best and most mature cross-platform GUI toolkit, given a number of constraints. The only reason wxPython isn't the standard Python GUI toolkit is that Tkinter was there first.

-- Guido van Rossum

From http://www.wxpython.org/quotes.php

link|flag
vote up 4 vote down

To asnwer your question directly:

Yes, Python is excellent for GUI development. Python is dynamic and extremely flexible, traits that are very important for GUI development where one often needs to write a lot of boilerplate code. The bindings for some popular cross-platform GUI libraries (wx, Qt, etc.) are mature, stable, actively developed and well supported.

I've found performance of Python GUI bindings to be good (I'm personally using wxPython and have already written a few functional GUIs both for work and personal use). But if you want to improve it even further, I'm sure it's not too hard to combine the Python binding code with C++ code (using the wxWidgets C++ libarary itself, for instance). Anyhow, I suspect this won't be a problem for you.

link|flag
vote up 3 vote down

wxPython is full of bugs on anything besides Windows. PyGTK2 is probably the best GUI toolkit but I don't know on what platforms it is supported, probably everywhere gnome is.

link|flag
vote up 3 vote down

I personally find wxPython to be very clumsy. I've encountered many bugs while trying to use it and the backwards compatibility issue is quite bothersome. I guess that's a complaint about python in general though.

link|flag
What problems specifically? – FogleBird Nov 20 at 13:59
vote up 2 vote down

Check out the Traits library from Enthought. It's a way of describing different properties of objects, views of those properties, and dynamically updating views. I'm not really doing it justice, but it's an extremely flexible, rapid-development library. Plus, it leads to reusable and extensible code. I've written a couple minor scientific applications in Traits, and I have found it to be an absolute dream, as it lets me focus on the data model rather than the UI.

link|flag
vote up 0 vote down

I belive that Chandler ( the Calendar sharing app from Mitch Kapors Open Source Applications Foundation - http://www.chandlerproject.com) is written entirely in Python and wxWidgets.

Can't add anything else as I'm not a Python guy.

link|flag
vote up 5 vote down

As others have said, wxPython is a good GUI library. One thing that isn't mentioned much is that you can combine wxPython with wxGlade to create many "drag and drop" programs.

wxGlade lets you quickly create the framework of your program; you don't have to worry about any of the working code at first. You can just create the visual look until you get it just right. Once that's done, then you start working on the actual coding, but you already have the GUI framework laid out for you. All you have to provide is the programming logic to make your application work.

One benefit of using Python for applications in general is the interpreted environment. You don't have to do the check/compile/run cycle everytime. You can quickly make changes and see them nearly instantaneously, which greatly speeds up development.

Additionally, if you need to speed up the program, you can always write certain parts in C/C++ and pre-compile them. The cPickle module is an example of this. But for many GUI programs, the application will be waiting on the user so speed is usually not an issue.

link|flag
vote up 1 vote down

Dabo is a Python framework for cross-platform GUI app development. It starts with wxPython for the UI, but completely wraps it in order to eliminate the ugliness and inconsistency that comes with wxPython.

Check out some of the screencasts of Dabo in action at http://dabodev.com/documentation

link|flag
vote up 0 vote down

With jython you could use Java Swing. 100% cross platform and everybody loves swing - right ;-)

link|flag
Everybody loves Swing, except OP :) – Constantin Feb 16 at 14:22
vote up 3 vote down

Another good wxPython tutorial:

http://zetcode.com/wxpython/

link|flag
vote up 1 vote down

I made a similar/related question a while ago, might serve as reference:

http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.