Five Things I Hate About Django.
The five things I hate about * meme seems have died down, and memes, should not be allowed to die.
Of course I love Django, and have bet very heavily on it. But we do not know a topic, until we know it warts, so here you go. The listing is in no particular order, so sorry no numbering.
..
Lack of identity map:
If you get the same row from the DB twice using Model.objects.get, you will get two different objects.
…
Full article: http://42topics.com
License: Creative Commons Attribution-Share Alike 3.0 Unported
Indexed in May 2008
Related Info Web
- Five things I love about Django.
- Django sitemaps. Why? Because google loves them
- Is Django stable?
- Implementing Tagging in a Django Application
- Offline Development With Django
I posted five things I hate about Django, so as a penance, I will of course have to tell the “Five things I love about Django”. The Admin interface rocks: I have demoed Django to a fair number of People, and when you write a few lines in models.py, and then show the auto generated Admin interface, this is a jaw-dropping moment.. .. Documentation...
Sitemaps are an important part for any site. Why? Google loves them, thats why. And you don't want to anger "The Google" do you? Django knows this and makes them easy to do, especially if you use generic views. You only need to do a few simple things. ... Full article: http://matterkkila.com License: Creative Commons License...
I have a friend and fellow member of the Python West Midlands group. Whenever, someone mentions Django, he asks the person "but is it stable?". This has been repeated so much that is has become a local in-joke. However, lets take the question seriously. To explore this further, we need to ask what does stable mean? I.e. can we replace the...
my motivation Although I’ve used many Web based applications that employ tagging, I’ve yet to create an application of my own with this feature. But now, I have two potential projects on the horizon that could benefit from tagging, and I’m thinking about how to best implement this, both in the database and user interface layers. .. I also see this as an...
Coming to Django from the PHP-world, running a local development server (as opposed to Apache or a full LAMP-machine set up for just testing) and doing real offline development is something that takes a little bit of learning. After two years of active development with Django, I’d like to share some of my learnings. Why Offline? There are many benefits for...
