Python GTK MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T11:20:25Zhttp://stackoverflow.com/feeds/question/310856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/310856/python-gtk-mvc1Python GTK MVCPaul Fisher2008-11-22T04:26:23Z2008-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#3109221Answer by Matthew Marshall for Python GTK MVCMatthew Marshall2008-11-22T05:36:47Z2008-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#3109511Answer by plan9assembler for Python GTK MVCplan9assembler2008-11-22T06:19:22Z2008-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#3112823Answer by Ali A for Python GTK MVCAli A2008-11-22T12:25:32Z2008-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#3817000Answer by RJBrady for Python GTK MVCRJBrady2008-12-19T17:58:56Z2008-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>