Is Python any good for GUI development? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:04:55Z http://stackoverflow.com/feeds/question/115495 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development 31 Is Python any good for GUI development? David Arno 2008-09-22T15:24:58Z 2009-11-20T10:18:31Z <p>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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115512#115512 4 Answer by David Dibben for Is Python any good for GUI development? David Dibben 2008-09-22T15:27:45Z 2008-09-23T00:20:37Z <p>You could try <a href="http://wiki.python.org/moin/PyQt" rel="nofollow">PyQt</a> This uses the Qt toolkit for the GUI but you write your program in python.</p> <p><a href="http://www.diotavelli.net/PyQtWiki/Creating_GUI_Applications_with_PyQt_and_Qt_Designer" rel="nofollow">Qt Designer</a> can be used to create GUIs graphically for use with PyQt</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115515#115515 7 Answer by torial for Is Python any good for GUI development? torial 2008-09-22T15:27:58Z 2008-09-22T15:27:58Z <p>There are excellent GUI options for Python. wxPython is a great place to start, pyQT is good if you have spare money.</p> <p>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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115529#115529 2 Answer by pdavis for Is Python any good for GUI development? pdavis 2008-09-22T15:29:51Z 2008-09-22T15:29:51Z <p>Go for it. I think you will find it an easier cross platform route than C#+Mono. Check out <a href="http://docs.python.org/lib/module-Tkinter.html" rel="nofollow">Tkinter</a>, 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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115546#115546 4 Answer by Fostah for Is Python any good for GUI development? Fostah 2008-09-22T15:32:07Z 2008-09-22T15:32:07Z <p>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. </p> <p>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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115621#115621 2 Answer by moyashi for Is Python any good for GUI development? moyashi 2008-09-22T15:41:37Z 2008-09-22T15:41:37Z <p><a href="http://rads.stackoverflow.com/amzn/click/1932394621" rel="nofollow">http://www.amazon.com/wxPython-Action-Noel-Rappin/dp/1932394621/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1222098007&amp;sr=8-1</a></p> <p><a href="http://wxpython.org/" rel="nofollow">http://wxpython.org/</a></p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115636#115636 5 Answer by mgb for Is Python any good for GUI development? mgb 2008-09-22T15:43:12Z 2008-11-20T22:03:08Z <p>Python is excellent for gui development<br /> 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<br> If your app is in c++/c#, then having the gui written in a different langauge enforces gui/logic separation.</p> <p>Options are: wxpython/pyQT - equally good, all the functionality of wx/qt from python, both the designers can spit out native python implementations.</p> <p>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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115650#115650 0 Answer by Sebastian Hoitz for Is Python any good for GUI development? Sebastian Hoitz 2008-09-22T15:44:37Z 2008-09-22T15:44:37Z <p>You should take a look at IronPython. With it you can use the .NET Framework and I'm pretty sure somehow Mono too!</p> <p><a href="http://www.google.de/search?hl=en&amp;pwst=1&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=ironpython&amp;spell=1" rel="nofollow">http://www.google.de/search?hl=en&amp;pwst=1&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=ironpython&amp;spell=1</a></p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115654#115654 38 Answer by Jon Cage for Is Python any good for GUI development? Jon Cage 2008-09-22T15:45:03Z 2009-11-20T10:18:31Z <p>I've made numerous UI's in <a href="http://wxpython.org/" rel="nofollow">wxPython</a> 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).</p> <p>*I generally develop under Windows in case you hadn't guessed.</p> <p><strong>[Edit]</strong> There's a tool (<a href="http://www.wxdesigner-software.de/" rel="nofollow">wxDesigner</a>) 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 <a href="http://docs.wxwidgets.org/2.8.6/wx_sizeroverview.html" rel="nofollow">Sizers</a>. They're quite a powerful way of laying out a GUI and once set up correctly, will automatically resize your controls appropriately for you.</p> <p><strong>[Edit2]</strong> There's <a href="http://neume.sourceforge.net/sizerdemo/" rel="nofollow">a nice little tutorial on sourceforge</a> with some good examples of what you can do with sizers.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/116138#116138 13 Answer by miya for Is Python any good for GUI development? miya 2008-09-22T17:08:10Z 2008-09-22T17:08:10Z <p>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.</p> <p>-- Guido van Rossum</p> <p>From <a href="http://www.wxpython.org/quotes.php" rel="nofollow">http://www.wxpython.org/quotes.php</a></p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/116161#116161 4 Answer by eliben for Is Python any good for GUI development? eliben 2008-09-22T17:12:00Z 2008-09-22T17:12:00Z <p>To asnwer your question directly:</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/116416#116416 3 Answer by Vasil for Is Python any good for GUI development? Vasil 2008-09-22T17:58:35Z 2008-09-22T17:58:35Z <p>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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/116553#116553 4 Answer by d03boy for Is Python any good for GUI development? d03boy 2008-09-22T18:17:55Z 2008-09-22T18:17:55Z <p>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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/117290#117290 2 Answer by headlessagnew for Is Python any good for GUI development? headlessagnew 2008-09-22T20:11:21Z 2008-09-22T20:11:21Z <p>Check out the <a href="http://code.enthought.com/projects/traits/" rel="nofollow">Traits</a> 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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/117310#117310 0 Answer by Roberto Bonini for Is Python any good for GUI development? Roberto Bonini 2008-09-22T20:15:21Z 2009-01-19T21:08:56Z <p>I belive that Chandler ( the Calendar sharing app from Mitch Kapors Open Source Applications Foundation - <a href="http://www.chandlerproject.com" rel="nofollow">http://www.chandlerproject.com</a>) is written entirely in Python and wxWidgets. </p> <p>Can't add anything else as I'm not a Python guy.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/120874#120874 4 Answer by crystalattice for Is Python any good for GUI development? crystalattice 2008-09-23T13:09:07Z 2008-09-23T13:09:07Z <p>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. </p> <p>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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/215055#215055 1 Answer by Ed Leafe for Is Python any good for GUI development? Ed Leafe 2008-10-18T13:41:06Z 2008-10-18T13:41:06Z <p>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.</p> <p>Check out some of the screencasts of Dabo in action at <a href="http://dabodev.com/documentation" rel="nofollow">http://dabodev.com/documentation</a></p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/215058#215058 0 Answer by johnstok for Is Python any good for GUI development? johnstok 2008-10-18T13:45:01Z 2008-10-18T13:45:01Z <p>With jython you could use Java Swing. 100% cross platform and everybody loves swing - right ;-)</p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/215064#215064 3 Answer by Federico Ramponi for Is Python any good for GUI development? Federico Ramponi 2008-10-18T13:51:00Z 2008-10-18T13:51:00Z <p>Another good wxPython tutorial:</p> <p><a href="http://zetcode.com/wxpython/" rel="nofollow">http://zetcode.com/wxpython/</a></p> http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/552847#552847 1 Answer by nachik for Is Python any good for GUI development? nachik 2009-02-16T10:17:22Z 2009-02-16T10:17:22Z <p>I made a similar/related question a while ago, might serve as reference:</p> <p><a href="http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications">http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications</a></p>