On 25 June 2010 20:59, Bradley Hintze <[email protected]> wrote: > I just talked to him. He just doesn't know about python frameworks. > What frame work would you (and all reading this) recommend? Preferably > one with a startup tutorial that doesn't requie a degree in CS.
Personally, I use Pylons[0]. It's not one of those "do everything under the sun" frameworks, it is more geared towards providing you with a smaller, more flexible platform to work on, but it does mean that you might need to write a bit more boilerplate code. If you would prefer a system that comes with the kitchen sink included, you can look at Django[1] or TurboGears 2.x[2]. Another, even simpler and less structured than Pylons WSGI framework is Werkzeug[3]. Personally I steer clear of Django because it's inflexible, TurboGears because I have to write too much in places where I would expect it to just work, and Werkzeug because it is not structured enough for me. Each framework has it's own pro's and cons. [0] http://pylonshq.com/ [1] http://www.djangoproject.com/ [2] http://turbogears.org/ [3] http://dev.pocoo.org/projects/werkzeug/ -- Raoul Snyman B.Tech Information Technology (Software Engineering) E-Mail: [email protected] Web: http://www.saturnlaboratories.co.za/ Blog: http://blog.saturnlaboratories.co.za/ Mobile: 082 550 3754 Registered Linux User #333298 (http://counter.li.org) -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
