Pros/Cons of Django vs Pylons - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T15:02:11Z http://stackoverflow.com/feeds/question/48681 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons 23 Pros/Cons of Django vs Pylons minty 2008-09-07T18:57:35Z 2009-11-09T18:08:26Z <p>I'm begining a new webapp in Python. I've narrowed my choices down to Django and Pylons. What are the pros/cons of each?</p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/48687#48687 9 Answer by Espo for Pros/Cons of Django vs Pylons Espo 2008-09-07T19:06:09Z 2008-09-07T19:06:09Z <p>Django vs Pylons:</p> <p><a href="http://versus.bix.yahoo.com/vs/Django-vs-Pylons" rel="nofollow">http://versus.bix.yahoo.com/vs/Django-vs-Pylons</a></p> <p><a href="http://pydanny.blogspot.com/2007/11/pylons-vs-django.html" rel="nofollow">http://pydanny.blogspot.com/2007/11/pylons-vs-django.html</a></p> <p><a href="http://carefulweb.com/blog/2008/08/11/django-vs-pylons-development-and-deployment/" rel="nofollow">http://carefulweb.com/blog/2008/08/11/django-vs-pylons-development-and-deployment/</a></p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/48693#48693 12 Answer by Jason Baker for Pros/Cons of Django vs Pylons Jason Baker 2008-09-07T19:17:09Z 2008-09-07T19:17:09Z <p>How experienced are you in Python? If the answer is "not very", I'd say to start with Django. If you're fairly experienced in python, you may want to look into Pylons. This isn't because Pylons is a lot harder to learn than Django, so much as it is that Pylons's biggest advantage lies in its ease of customization. But to really use that customizability, you've got to know a little bit more about what python software is out there. (This isn't to say that Django isn't customizable, either. It's just that Pylons seems to be more flexible in this respect).</p> <p>The only other thing that jumps to mind immediately is that Django will automatically generate an administration section on your website for you, which is REALLY helpful.</p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/49249#49249 4 Answer by Mario for Pros/Cons of Django vs Pylons Mario 2008-09-08T06:52:41Z 2008-09-08T06:52:41Z <p>Pylons is more based on flexibility and having the choice to use different components (like SQLObject or SQLAlchemy for ORM, Mako or Mighty por templates). Apart from this, it uses some things ported from Ruby on Rails, like Routes and WebHelper.</p> <p>I think Pylons is a good choice if you want to see variety of styles and code, although I it may take you some time to get some speed using it. </p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/63441#63441 8 Answer by mapleoin for Pros/Cons of Django vs Pylons mapleoin 2008-09-15T14:33:04Z 2008-09-15T14:40:48Z <p>IMHO, if you want to have a lot of well-written docs for the most common things you might want to build, go for django. Using pylons is actually using the third-party components you can fit together. So you're not going to spend a lot of time on pylons' website, but on the ORM's website and the templating system's website etc.</p> <p>Also, django now has a <a href="http://www.djangopony.com/" rel="nofollow">PONY</a> And nothing can beat that!</p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/108657#108657 2 Answer by dobrych for Pros/Cons of Django vs Pylons dobrych 2008-09-20T16:34:00Z 2008-09-20T16:34:00Z <p>Django also has a wide range of reusable apps, which you can use with modifications or as example to create something new. And of course, community matters! Django community much wider, this make big sense for beginners.</p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/110835#110835 10 Answer by captainc for Pros/Cons of Django vs Pylons captainc 2008-09-21T11:52:36Z 2008-09-21T11:52:36Z <p>In my experience, when trying to build a very custom web site, I felt too restricted by Django. It seemed to be great for simple tasks, but Pylons gives me the flexibility to build custom things from the ground up. I agree about the learning curve though, as it will take a bit longer to learn the various modules available for use in Pylons than it will to read all the Django docs which are all in 1 place.</p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/572285#572285 2 Answer by LennyB for Pros/Cons of Django vs Pylons LennyB 2009-02-21T04:37:45Z 2009-02-21T04:37:45Z <p>I am currently looking at Pylons for my work for two reasons. (1) Pylons has support for multiple databases and Django does not (within reason). (2) Mako and SQLAlchemy are both available to Pylons and they are both desirable to learn even outside of the web framework world.</p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/784390#784390 54 Answer by Ben Bangert for Pros/Cons of Django vs Pylons Ben Bangert 2009-04-24T03:27:36Z 2009-10-15T13:48:21Z <p><em>Disclaimer: I created Pylons.</em></p> <p>It really depends on the type of application you're building. Both frameworks were originally made to solve different problems. Despite how far they've both come since their creation its still very useful to keep in mind the problems they were created to solve because many of those choices have guided further development.</p> <p>Django was made for newspaper sites, not just a single newspaper (publishing) site, but for making entire sites quickly. They generally had a staff that needed to start pushing content into the system ASAP, even before the public version of the site might be done. This is still clearly reflected in Django as it has a very complete user-friendly admin interface for the staff to begin entering content.</p> <p>At the time Django was made, SQLAlchemy wasn't around, and SQLObject was kind of... lacking, so Django has its own ORM. It's still lacking in many ways compared to SQLAlchemy, but it'll work just great for alot of people's needs.</p> <p>Django also has the concept of 'apps', which are just directories inside a Django project that do a specific function for the site. This reflects the original creators needs to quickly share components of a site with other sites they made. For example, quickly adding comments, or reviews, to another Django site.</p> <p>While you can use SQLAlchemy, or other template languages such as Mako, in Django, many of Django's strengths (the existing 'apps' you can re-use, the admin interface, parts of the form library) go up in smoke as soon as you use SQLAlchemy <strong>instead</strong> of Django's ORM.</p> <p>Just like the Django authors made Django to scratch their particular itch, I made Pylons to scratch mine. </p> <p>In my experience, creating sites is a very small portion of their life-span. I actually spend significantly more time maintaining a web application, or adding features to an existing one. So the first thing I wanted in the framework was common places to put the 'basics' of a web application, so that it'd be easier to maintain, and that if other people knew Pylons they'd have an easier time jumping in to help maintain a Pylons app.</p> <p>For all the sites I've built, they generally involve very different database schemas and data back-ends, with little in common. So sharing 'apps' like Django does just isn't a priority, nor is it feasible given how different each app will actually be (you can't share parts requiring a specific concept of how users are handled if different apps <strong>need</strong> to handle them differently).</p> <p>I also needed something small, that wasn't trying to run the show for me. I want to be able to go in and determine how something is going to respond without hoping the framework 'lets' me do it. For this reason, a Pylons app is a bit different from most frameworks, in that the project itself *<em>builds</em> the application object, making it easy to get in and tweak and change any core bit as needed.</p> <p>So the question someone trying to choose should be asking themselves, is what are they trying to build? Because that's really the best way to determine the appropriate framework to use for the task.</p> <p>Also, at the moment, the Pylons Book is 100% up to date with Pylons, while Django's book has been updated for version 1.1 of Django. </p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/798010#798010 4 Answer by praavDa for Pros/Cons of Django vs Pylons praavDa 2009-04-28T13:44:48Z 2009-04-28T13:44:48Z <p>I am not an experienced user and never claimed that I am, but for me - Pylons is the framework of choice. </p> <p>If You have a little experience in python, You will catch the basics in about one, maybe two days. But after that time, You will feel like the one and only ruler of what You created. Everything is custom, You can change almost every elemnt, plus You will learn python and maybe other languages along the way.</p> <p>We can compare Django and Pylons to Linux distros: for me, Django is like Ubuntu - easy, and works out of the box. On the other hand, I would compare Pylons to Archlinux, where everything depends from You.</p> <p>As (almost) always in life, more work equals more fun and profit.</p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/1341187#1341187 2 Answer by Anurag Uniyal for Pros/Cons of Django vs Pylons Anurag Uniyal 2009-08-27T13:42:35Z 2009-09-15T16:53:39Z <p>I know django but after reading the answers to this question I decided to try pylons for a new project, and my opinion now is</p> <ol> <li>If in hurry use django</li> <li>If not in hury use django</li> <li>In special cases where django doesn't suffices use pylons</li> </ol> <p>Pylons is great but django is simpler integrated approach I think this article summarizes it very well <a href="http://adam.gomaa.us/blog/2007/dec/16/frameworks-exist-for-conceptual-integrity/" rel="nofollow">http://adam.gomaa.us/blog/2007/dec/16/frameworks-exist-for-conceptual-integrity/</a></p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/1573444#1573444 1 Answer by joeforker for Pros/Cons of Django vs Pylons joeforker 2009-10-15T16:16:14Z 2009-10-15T16:16:14Z <p>Choice is demotivating. In a famous experiment researchers set up a table in a grocery store with six jars of jam and on a different day a table with 24 jars of jam. More people sampled from the table with more jam, but only 3% went on to buy jam. 30% of the people who stopped by the table with six jars of jam actually purchased jam.</p> <p>Welcome to Pylons, a jam-packed web framework.</p> <p>Pylons advertises the power of choice but implements a demotivating failure to design. As the Pylons developer you get to research and sort through an impressive number of bad choices (external projects) at almost every step of the process. First, choose your templating language and whether you want to use SQLAlchemy (a very good choice). <code>paster create -t pylons project-name</code> writes 38 files to your source tree. You get to read and understand all of these files before you really know which to edit. As a bonus, you get to maintain your own fork of the Pylons application template.</p> <p>There are some application templates that provide even more files for you to fork but they are not very mature.</p> <p>Pylons is tempting as the number two Python web framework as measured by tagged stackoverflow.com questions (~100 versus ~3000 for Django) and as a way to get SQLAlchemy support out of the box for your web application, but I've found it to be quite frustrating.</p> http://stackoverflow.com/questions/48681/pros-cons-of-django-vs-pylons/1702714#1702714 0 Answer by thethinman for Pros/Cons of Django vs Pylons thethinman 2009-11-09T18:08:26Z 2009-11-09T18:08:26Z <p>While both are great frameworks and provide many benefits, you don't actually need either.</p> <p>Here's what I use on Debian:</p> <pre><code>$aptitude install python-paste python-mako python-psycopg2 -- init.py -- from paste.httpserver import serve from paste.reloader import install from lib.dispatcher import Dispatcher install() serve(Dispatcher(), host='127.0.0.1', port='8080', threadpool_workers=50, use_threadpool=True) </code></pre> <p>The dispatcher routes requests to various controller classes based on the url. The controllers use psycopg for the postgresql database and call mako templates and return the output.</p>