vote up 8 vote down star
6

Have you considered using Django and found good reasons not to do so?

flag

14 Answers

vote up 18 vote down check

Because Cal Henderson told me not to.

My answer was somewhat tongue in cheek, but Cal Henderson gave an hour-long, funny, insightful talk about Django and where it may fall short.

link|flag
vote up 4 vote down

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!

link|flag
1  
Django 1.1 enables you to delete multiple items from the admin panel. – jpartogi Aug 5 at 4:06
vote up 1 vote down

I have used it for a small website.

Since you're not asking for pros, here are some cons:

  • 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.)
  • 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.
link|flag
On the second point, a more appropriate place for that kind of presentation logic is a custom template tag or filter which operates on the data provided by your view. – insin Sep 18 '08 at 9:46
Template language beign restrictive is a GOOD thing, means you don't have spaghetti code everywhere! Just separate your code into well defined components and you'll be fine. – drozzy Jun 3 at 19:10
not having elif is a bad thing! – Rick J Aug 13 at 12:04
Nope, elif allows you to put Logic into your templates. Do your logic in your views and models. – drozzy Nov 27 at 15:03
Alternating row colours in a table, for example, would hardly count as Logic. Or colouring fields red that haven't been filled correctly. Maybe not the best examples, but at any rate, there are cases where the particular presentation has little to do with Logic. – Thomas Dec 1 at 9:10
vote up 0 vote down

Django 1.0 has just been released.

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.

Django is an awesome framework but a lot of people saw their code brocken with sometimes unnecessary changes.

We can however hope that the API will be somehow frozen with 1.0.

link|flag
That's the whole point of the 1.0 release! – zuber Sep 19 '08 at 9:54
vote up 35 vote down

Yeah, I am an honest guy, and the client wanted to charge by the hour.

There was no way Django was going to allow me to make enough money.

link|flag
lol, honestly this shouldn't be voted up as it doesn't answer the question!! – hasen j Feb 8 at 23:17
2  
Um, no, this answers the question perfectly. He can develop a site so quickly and easily in Django that being charged hourly makes him no money. That's the downside! – idrumgood Aug 26 at 14:51
vote up -5 vote down

There is no any reasons not to use Django. Anyway, it depends from your project.

link|flag
vote up 5 vote down

To me, the most serious competitor seems to be TurboGears. TurboGears isn't as all-inclusive as Django. You can pick your own ORM (default is SQLObject) and your own templates (default is Kid). I'd try to use SQLAlchemy and Mako, myself.

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.

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.

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.

link|flag
vote up 8 vote down

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.

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).

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.

link|flag
1  
Aggregation will be arriving in Django 1.1 around the middle of March. – Toba Dec 4 '08 at 22:00
If you can't wait another month you can run django from latest SVN trunk to get aggregation now. – Van Gale Feb 4 at 10:11
well, the answer was written back in September, so it's way more than a month, plus his story probably happened even before that – hasen j Feb 8 at 23:19
Yes, I moved off Django in early/middle 2007 so I was on the dev branch of the 0.96 release. Waiting for aggregation support was not a realistic option at that point. Maybe in a few months it will be. – davidavr Feb 9 at 17:29
Django is worth it for the urls and templating alone. If you design your app in a restful way with raw SQL i don't see any problems with aggregation. Furthermore consider separating your aggregation pieces and computationaly intensive components. – drozzy Nov 27 at 15:01
vote up 9 vote down

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.

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.

link|flag
vote up 4 vote down

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 managed 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.)

That means you end up on an unmanaged 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.

Because of this situation I still use PHP for most of my smaller customers.

link|flag
I suggest you look into Django on App Engine. – drozzy Nov 27 at 15:02
This comment was made over a year ago. There are several downsides to hosting a site on GAE. OTOH, using nginx solves this problem quite nicely on smaller VPS. – Peter Rowell Nov 27 at 17:56
vote up 0 vote down

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.

But once the learning curve is over, django becomes a nice option even for smaller projects.

I have my personal reasons for going with different python web frameworks listed here.

link|flag
vote up 0 vote down

I've used Django for a small site.

  • 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.
  • 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.
  • Slugify wasn't working properly on unicode strings.
  • It's not ease to use stored procedures with Django.
  • Querysets are confusing. For me it's more ease to view the SQL query than looking to somekind of a Q object.
link|flag
vote up 1 vote down

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.

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.

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!

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.

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.

link|flag
vote up -1 vote down

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.

Whoever voted my answer down isn't a real programmer. That really is a very bad negative about Django. It adds cruft to your URLs. For instance, I can't look for a ".html" at the end of a URL and then, if it exists, see what the characters preceding it to the last slash were.

Example: http://www.somewebpagewithdjango.com/somepath/someotherpath/itemid.html Instead, I need to do something like this with my URL:

http://www.somewebpagewithdjango.com/somepath/someotherpath/:itemid.html

or

http://www.somewebpagewithdjango.com/somepath/someotherpath/~itemid.html

Notice the tilda, and the colon.

link|flag
what about r'(?P<slug1>[a-z0-9_-]+)/(?P<slug2>[a-z0-9_-]+)/(?P<slug3>[a-z0-9_-]+).html$' ? Personally I think an URI should never end with html, txt or what ever. this is useless and should be found in the mime-type. (BTW: I dint vote u down, but ur "Whoever voted my answer down isn't a real programmer" worth it) – vikingosegundo Nov 25 at 17:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.