Python Web Framework - Not App Framework or CMS Framework - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T17:40:26Z http://stackoverflow.com/feeds/question/490210 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/490210/python-web-framework-not-app-framework-or-cms-framework 1 Python Web Framework - Not App Framework or CMS Framework goldenratio 2009-01-29T01:45:46Z 2009-01-30T22:00:16Z <p>I'm just getting into python on the web. I have a simple linux (CentOS) server with python installed into apache via mod_python. It all works great, but I don't really understand what to do about the Handler. It works, but I have to do low-level things like, at minimum, set the proper content_type of the request before I write out anything (I also have to manually write on the req stream, which seems very low-level). </p> <p>Now, I understand what's happening, and why I have to do this, but what I am wondering is if there are any frameworks that exist somewhere that I can use to abstract some of this stuff. Django, Grok, Pylons and all these frameworks seem more like Application Frameworks, or CMS Frameworks. Sort of like how ASP.NET is a Web Framework: it abstracts low-level server things and provides niceties for you, whereas ADXStudio/Sitefinity (I guess?) is a CMS system/framework that you can build/expand upon. Is this a correct assessment?</p> <p>Can you help me straighten out this app framework/web framework issue, and maybe englighten me as to the Python options out there and what specifically they are/do? For instance now that I am thinking about it, CherryPy struck me as "web framework"-y, is this a correct assessment as well?</p> <p>Any help is greatly appreciated.</p> http://stackoverflow.com/questions/490210/python-web-framework-not-app-framework-or-cms-framework/490236#490236 2 Answer by Will Hartung for Python Web Framework - Not App Framework or CMS Framework Will Hartung 2009-01-29T01:56:37Z 2009-01-29T01:56:37Z <p>Have you considered just hacking one of your own?</p> <p>A simple action framework (that's basically what you're talking about here) is actually pretty simple, and with a dynamic language like Python it should be even simpler.</p> <p>It will require perhaps a bit of "advanced" python knowledge (I don't know how comfortable you are with Python), reflection mostly, perhaps, but it's really not a great leap.</p> <p>As a benefit, you will have a better understanding of your request cycle.</p> <p>The other thing to look for is some kind of "Python Server Pages", specifically something that lets you render Python data in to an HTML page. There are several of these (also look at Python templating tools, same thing really). </p> <p>The goal here is that you can off the shelf the "view" layer, and then use your little mini framework for actual control and dispatch.</p> <p>At a minimum it is an interesting project, and I think you'd amazed how much you can do quickly and with little code. This may well be why such frameworks aren't really "obvious" for Python, unlike, say, Java.</p> <p>Also, once you're done you'll have a better understanding of what to look for in another framework.</p> http://stackoverflow.com/questions/490210/python-web-framework-not-app-framework-or-cms-framework/490266#490266 5 Answer by womble for Python Web Framework - Not App Framework or CMS Framework womble 2009-01-29T02:11:33Z 2009-01-29T02:11:33Z <p>It sounds like <a href="http://webpy.org/" rel="nofollow">web.py</a> might suit you. Pylons and TurboGears aren't "application frameworks" at quite the same level of say Django, but they're certainly "full stack" frameworks, most useful for developing yes, web applications. But then, that's what mostly gets written.</p> <p>Knowing what sort of things you're planning on doing might help people to guide you to the right sort of library.</p> http://stackoverflow.com/questions/490210/python-web-framework-not-app-framework-or-cms-framework/490274#490274 2 Answer by Van Gale for Python Web Framework - Not App Framework or CMS Framework Van Gale 2009-01-29T02:15:49Z 2009-01-29T02:15:49Z <p>Right now the hottest "low level" framework is <a href="http://werkzeug.pocoo.org/" rel="nofollow">werkzeug</a> and would be a very good place to start. It's minimal and WSGI compliant so you can easily plug-in a lot of the WSGI components out there like <a href="http://bitbucket.org/bbangert/dozer/src/" rel="nofollow">dozer</a> for debugging memory leaks, etc.</p> <p>If you need higher level try <a href="http://pylonshq.com/" rel="nofollow">Pylons</a>, which is still WSGI compliant, but gives you more stuff.</p> <p>WSGI compliance is important for a few reasons, but most importantly so your app can run under <a href="http://code.google.com/p/modwsgi/" rel="nofollow">mod_wsgi</a> which totally rocks.</p> <p>EDIT: I should note that almost all python frameworks, including Django, are WSGI compliant these days.</p> http://stackoverflow.com/questions/490210/python-web-framework-not-app-framework-or-cms-framework/490307#490307 0 Answer by S.Lott for Python Web Framework - Not App Framework or CMS Framework S.Lott 2009-01-29T02:30:56Z 2009-01-29T02:30:56Z <p>"Django, Grok, Pylons and all these frameworks seem more like Application Frameworks, or CMS Frameworks"</p> <p>First, I can't see what makes an "Application Framework" so unappealing. Perhaps you could update your question with some definitions that clarify your position.</p> <p>Second, I can't see what makes Django or Pylons a "CMS Framework". Perhaps you could update your question with some definitions that clarify your position.</p> <p>Django does pretty much everything you want.</p> http://stackoverflow.com/questions/490210/python-web-framework-not-app-framework-or-cms-framework/490346#490346 1 Answer by Nikhil Chelliah for Python Web Framework - Not App Framework or CMS Framework Nikhil Chelliah 2009-01-29T02:55:35Z 2009-01-30T22:00:16Z <p>I somewhat answered your question <a href="http://stackoverflow.com/questions/7170/recommendation-for-straight-forward-python-frameworks#7223">here</a>. But for a more complete list of HTTP frameworks:</p> <ul> <li><a href="http://www.cherrypy.org/" rel="nofollow">CherryPy</a></li> <li><a href="http://webpy.org/" rel="nofollow">web.py</a></li> <li><a href="http://pythonpaste.org/" rel="nofollow">Paste</a> - only uses WSGI. Great for portability, but using hooks gets complicated the more you modify its behavior.</li> <li><a href="http://pythonpaste.org/webob/" rel="nofollow">WebOb</a> - simplified Paste. The API is probably a bit closer to CherryPy's.</li> </ul>