Python GTK MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:20:25Z http://stackoverflow.com/feeds/question/310856 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/310856/python-gtk-mvc 1 Python GTK MVC Paul Fisher 2008-11-22T04:26:23Z 2008-12-19T17:58:56Z <p>I've been looking around for a good MVC framework for Python using PyGTK. I've looked at <a href="http://www.async.com.br/projects/kiwi/" rel="nofollow">Kiwi</a> but found it a bit lacking, especially with using the Gazpacho Glade-replacement.</p> <p>Are there any other nice desktop Python MVC frameworks? I'm one of the few (it seems) to not want a webapp.</p> http://stackoverflow.com/questions/310856/python-gtk-mvc/310922#310922 1 Answer by Matthew Marshall for Python GTK MVC Matthew Marshall 2008-11-22T05:36:47Z 2008-11-22T05:36:47Z <p>There's <a href="http://stackoverflow.com/questions/310856/python-gtk-mvc">Dabo</a>, made by some guys moving from FoxPro. It might work for you if you're writing a data driven business app.</p> <p>Beyond that, I haven't found anything that you haven't.</p> <blockquote> <p>GUI stuff is <em>supposed</em> to be hard. It builds character.</p> </blockquote> <p>(<a href="http://www.amk.ca/quotations/python-quotes/" rel="nofollow">Attributed</a> to Jim Ahlstrom, at one of the early Python workshops. Unfortunately, things haven't changed much since then.)</p> http://stackoverflow.com/questions/310856/python-gtk-mvc/310951#310951 1 Answer by plan9assembler for Python GTK MVC plan9assembler 2008-11-22T06:19:22Z 2008-11-22T06:19:22Z <p>"mvc" titled app:</p> <p><a href="http://sourceforge.net/projects/pygtkmvc/" rel="nofollow">http://sourceforge.net/projects/pygtkmvc/</a></p> <p>"avc" titled app:</p> <p><a href="http://avc.inrim.it/html/" rel="nofollow">http://avc.inrim.it/html/</a></p> <p>more information:</p> <p><a href="http://www.pygtk.org/applications.html" rel="nofollow">http://www.pygtk.org/applications.html</a></p> http://stackoverflow.com/questions/310856/python-gtk-mvc/311282#311282 3 Answer by Ali A for Python GTK MVC Ali A 2008-11-22T12:25:32Z 2008-11-22T12:25:32Z <p>In defense of Kiwi:</p> <ul> <li>Kiwi works fine with Glade3 instead of Gazpacho. (who forced you to use Gazpacho?)</li> <li>Kiwi is my first dependency for <em>any</em> PyGTK application commercial or open source.</li> <li>Kiwi is very actively maintained.</li> </ul> <p>I have generally got to a stage where I think its irresponsible to not use Kiwi in a PyGTK application. Perhaps you can tell us what you found "lacking" so we can improve the framework. #kiwi on irc.gimp.net (or the Kiwi mailing list).</p> http://stackoverflow.com/questions/310856/python-gtk-mvc/381700#381700 0 Answer by RJBrady for Python GTK MVC RJBrady 2008-12-19T17:58:56Z 2008-12-19T17:58:56Z <p>PureMVC</p> <p><a href="http://trac.puremvc.org/PureMVC_Python" rel="nofollow">http://trac.puremvc.org/PureMVC_Python</a></p>