Reasons not to use django - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T06:32:53Z http://stackoverflow.com/feeds/question/90032 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/90032/reasons-not-to-use-django 8 Reasons not to use django hamdiakoguz 2008-09-18T04:32:07Z 2009-08-30T02:09:12Z <p>Have you considered using Django and found good reasons not to do so? </p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90041#90041 4 Answer by William Keller for Reasons not to use django William Keller 2008-09-18T04:34:02Z 2008-09-18T04:34:02Z <p>I personally don't like Django's ORM at all, and usually opt for SQLAlchemy if I choose it for a project. Also, I'm not sure if it's still an issue, but not being able to delete multiple items in the admin panel really ground my gears sometimes!</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90046#90046 1 Answer by Thomas for Reasons not to use django Thomas 2008-09-18T04:35:02Z 2008-09-18T04:35:02Z <p>I have used it for a small website.</p> <p>Since you're not asking for pros, here are some cons:</p> <ul> <li>It takes a while to get the hang of it, to figure out what goes where, etc. (But I suppose that this is the case with all web frameworks.)</li> <li>The template language is pretty restrictive. For example, you cannot check for arbitrary expressions, so you end up having some presentation code mixed into your Python business logic after all.</li> </ul> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90084#90084 0 Answer by Paul for Reasons not to use django Paul 2008-09-18T04:41:19Z 2008-09-18T04:41:19Z <p>Django 1.0 has just been released.</p> <p>Before, they were stalling at 0.96 from... March 2007 The Django Project itself was recommending to use the 0.97 version available from subversion... Needless to say, 0.97 was already not backward compatible.</p> <p>Django is an awesome framework but a lot of people saw their code brocken with sometimes unnecessary changes.</p> <p>We can however hope that the API will be somehow frozen with 1.0.</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90097#90097 18 Answer by mattieshoes for Reasons not to use django mattieshoes 2008-09-18T04:43:21Z 2008-09-18T04:43:21Z <p>Because <a href="http://www.youtube.com/watch?v=i6Fr65PFqfk" rel="nofollow">Cal Henderson told me not to</a>.</p> <p>My answer was somewhat tongue in cheek, but <a href="http://www.iamcal.com/" rel="nofollow">Cal Henderson</a> gave an hour-long, funny, insightful talk about Django and where it may fall short. </p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90128#90128 34 Answer by Wade Mealing for Reasons not to use django Wade Mealing 2008-09-18T04:49:27Z 2008-09-18T04:49:27Z <p>Yeah, I am an honest guy, and the client wanted to charge by the hour.</p> <p>There was no way Django was going to allow me to make enough money.</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/91082#91082 -5 Answer by Big 40wt Svetlyak for Reasons not to use django Big 40wt Svetlyak 2008-09-18T09:06:09Z 2008-09-18T09:06:09Z <p>There is no any reasons not to use Django. Anyway, it depends from your project.</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/91405#91405 5 Answer by S.Lott for Reasons not to use django S.Lott 2008-09-18T10:12:43Z 2009-08-26T14:49:30Z <p>To me, the most serious competitor seems to be <a href="http://turbogears.org/" rel="nofollow">TurboGears</a>. TurboGears isn't as all-inclusive as Django. You can pick your own ORM (default is <a href="http://www.sqlobject.org/" rel="nofollow">SQLObject</a>) and your own templates (default is <a href="http://kid-templating.org/" rel="nofollow">Kid</a>). I'd try to use <a href="http://www.sqlalchemy.org/" rel="nofollow">SQLAlchemy</a> and <a href="http://www.makotemplates.org/" rel="nofollow">Mako</a>, myself.</p> <p>The distinction is that Django didn't (in older versions) have a proper WSGI pipeline for processing. Django's view functions are not very WSGI-like. Django can, however, plug into a WSGI pipeline. TurboGears and Pylons are more aggressively trying to incorporate WSGI into their frameworks.</p> <p>For some kinds of web services, a proper, simple WSGI pipeline might be better than the Django-REST interface. Indeed, the Django-REST interface might not really save any coding when you get to more complex authorization tests and complex POST processing applications. </p> <p>I'm starting to rethink our use of Django-REST, since I've had to apply a fairly large number of patches and extensions for our fine-grained authorization model.</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/92535#92535 9 Answer by davidavr for Reasons not to use django davidavr 2008-09-18T13:30:19Z 2008-09-18T13:30:19Z <p>I built the first generation of our internal web site using Django and at first it worked well. But over time I kept finding myself trying to work around its constraints and finally decided to move off of it. We now use CherryPy with Preppy templates and no ORM.</p> <p>The problems started with the ORM and the inability to do any kind of useful aggregation. We are a financial company and need to do lots of reporting of detailed financial data, typically aggregated up in various ways. Because Django's ORM didn't support the things we needed to do, we started doing more and more direct SQL. But when you do that, other parts of Django don't work as well, like the templates. Pretty soon I found I was mostly using Django for it's URL mapping and very little else. So that's when I decided to look for something that was more of a library (choose the APIs you want to use) then a framework (fit your problem into the framework's way of solving it).</p> <p>Some problems fit Django nicely (I wrote my first blog and that worked well) but it's not a good fit for every website out there.</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/209689#209689 9 Answer by shacker for Reasons not to use django shacker 2008-10-16T18:21:26Z 2008-10-16T18:21:26Z <p>The strongest argument leveled against Django at our organization -- which was previously a PHP shop -- was that it would be harder to find Python/Django developers in the future if any of us ever quit than it would be to find PHP devs. That's a business reason, not a tech reason, but it was a tough one to argue with the management.</p> <p>Fortunately we were able to make a strong enough case that Django would solve so many of our current problems, in ways that would allow complexity to scale without creating rat's nests - that we won that argument and became a Django shop. </p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/230675#230675 4 Answer by Peter Rowell for Reasons not to use django Peter Rowell 2008-10-23T17:39:25Z 2008-10-23T17:39:25Z <p>I am a big fan of Django, but I've found that as a project grows you quickly hit the resource constraints (mostly memory usage) of the few shared-hosting packages that support Django. This is a non-problem if your customer is ready to go to a dedicated server. But then you have the problem that a <em>managed</em> dedicated server means that you don't get root access, which often means you are stuck with the versions of things (Python, MySQL, Apache, Django, etc.) that the hosting service feels comfortable with. (Yes, this really is a problem.)</p> <p>That means you end up on an <em>unmanaged</em> dedicated server (or VPS), and that means that your customer has to sign up for all of the ongoing, sysadmin-y things that go with it.</p> <p>Because of this situation I still use PHP for most of my smaller customers.</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/230987#230987 0 Answer by Paul D. Eden for Reasons not to use django Paul D. Eden 2008-10-23T18:58:58Z 2008-10-23T18:58:58Z <p>I love Django. I think it is great for big projects, but for small ones the learning curve can be prohibitive compared to other python frameworks.</p> <p>But once the learning curve is over, django becomes a nice option even for smaller projects.</p> <p>I have my personal reasons for going with different python web frameworks listed <a href="http://pauldeden.blogspot.com/2008/10/python-web-frameworks-and-when-i-use.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/510575#510575 0 Answer by FA for Reasons not to use django FA 2009-02-04T08:57:11Z 2009-02-04T08:57:11Z <p>I've used Django for a small site.</p> <ul> <li>Personally I don't like its template engine, I'm a big fan of Mako templates. That's why I've changed template engine to Mako.</li> <li>Maybe it's not issue anymore but its ORM automatically adds Integer as primary key which I had to find a way to use UUID as primary key.</li> <li>Slugify wasn't working properly on unicode strings.</li> <li>It's not ease to use stored procedures with Django.</li> <li>Querysets are confusing. For me it's more ease to view the SQL query than looking to somekind of a Q object.</li> </ul> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/946631#946631 1 Answer by drozzy for Reasons not to use django drozzy 2009-06-03T19:22:19Z 2009-06-03T19:22:19Z <p>The only piece still lacking for me in Django (as of 1.0) is a definitive guide to using form and formsets combination with and without models.</p> <p>The amount of time it takes to wrap your head around all the logic and special cases, javascript form duplication (if you need dynamic adding of forms), the differences in how the formsets constructed with formset factories behave for model or just plain unbound forms, the time it takes to learn all that is just huge.</p> <p>I still have to reread most of the django/forms source code because I forget how to use the formsets with all the initial-forms, deleted, has_changed, initial-data, querysets, request.FILES and more! </p> <p>On the other hand, if I had to deal with multiple forms per page from scratch without any kind of formset-type feature in the framework - I would probably kill myself.</p> <p>It is kind of like this: because Django helps you a lot with trivial to medium complexity cases you find yourself using more and more advanced/harder functionality in your applications. That's the best I can put it if you know what I mean.</p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/1352867#1352867 -1 Answer by orokusaki for Reasons not to use django orokusaki 2009-08-30T02:09:12Z 2009-08-30T02:09:12Z <p>One negative about Django (not a reason to not use it) is that you cannot use hard-core regex in your URL patterns, such as negative look behinds or it'll mess up the template tags like url.</p>