Django is a Python framework for creating web applications.

learn more… | top users | synonyms

296
votes
55answers
29k views

Favorite Django Tips & Features?

Inspired by the question series 'Hidden features of ...', I am curious to hear about your favorite Django tips or lesser known but useful features you know of. Please, include only one tip per ...
171
votes
14answers
44k views

Pros/Cons of Django vs Pylons

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?
169
votes
36answers
25k views

Rails or Django? (or something else?) [closed]

This post is from the early days of Stack Overflow, and while we recognize its historical significance, we also recognize that the current community of users will likely close similar posts. Please ...
168
votes
23answers
21k views

Does Django Scale?

I'm building a web application with Django. The reasons I chose Django were: I wanted to work with free/open-source tools I like Python and feel it's a "long term" language, whereas regarding Ruby I ...
104
votes
6answers
8k views

What's the best solution for OpenID with Django?

There are at least half a dozen Django apps that provide OpenID authentication for Django: django-openid django-openid-auth another django-openid-auth, which seems to be dead django-authopenid ...
90
votes
15answers
48k views

Apache vs nginx vs lighttpd? Which is simpler to configure and administer?

Apache vs nginx vs lighttpd? Which is simpler to configure and administer? A bit more context, in case this question is too general: the uses I have in mind are running Django and serving static ...
86
votes
12answers
7k views

Feedback on using Google App Engine? [closed]

Looking to do a very small, quick 'n dirty side project. I like the fact that the Google App Engine is running on Python with Django built right in - gives me an excuse to try that platform... but my ...
84
votes
28answers
32k views

django development IDE

I have done a little django development but it has all been in a text editor. I was curious what more advanced development tools others are using in their django development. I am used to using ...
68
votes
10answers
8k views

Reducing Django Memory Usage. Low hanging fruit?

My memory usage increases over time and restarting Django is not kind to users. I am unsure how to go about profiling the memory usage but some tips on how to start measuring would be useful. I have ...
67
votes
14answers
31k views

What CMS runs on Google App Engine?

Is it possible to deploy any CMS (Content Management System) using Google App Engine? Wikipedia lists 4 Python CMSes and one of them is Django based. Do you know any way to make any of them to work ...
64
votes
9answers
9k views

History of Django's popularity

What sequence of events made Django the most popular Python web framework .. and still so? Even though several other frameworks exist. Note: This question is neither argumentative nor ...
63
votes
9answers
22k views

Well designed Django example code to learn from

Does anyone know of good, well designed open sourced Django applications? I'm really curious about different designs and I'd like to look at some good examples in order to learn about good design in a ...
61
votes
11answers
34k views

Using Django time/date widgets in custom form

How can I use the nifty JavaScript date and time widgets that the default admin uses with my custom view? I have looked through http://www.djangoproject.com/documentation/forms/, and it brefly ...
57
votes
14answers
11k views

Django - Set Up A Scheduled Job?

I've been working on a web app using Django, and I'm curious if there is a way to schedule a job to run periodically. Basically I just want to run through the database and make some ...
57
votes
10answers
5k views

How do you configure Django for simple development and deployment?

I tend to use SQLite when doing Django development, but on a live server something more robust is often needed (MySQL/PostgreSQL, for example). Invariably, there are other changes to make to the ...
57
votes
14answers
18k views

What's the best Django search app?

I'm building a Django project that needs search functionality, and until there's a django.contrib.search, I have to choose a search app. So, which is the best? By "best" I mean... easy to install / ...
53
votes
10answers
24k views

In a django form, How to make a field readonly (or disabled) so that it cannot be edited?

In a django form, how do I make a field read-only (or disabled)? When the form is being used to create a new entry, all fields should be enabled - but when the record is in update mode some fields ...
53
votes
22answers
14k views

What Hosting Service is best for Django applications?

I have been using django a great deal lately and would like to find a home to host my apps. What is the best django web host? (Official django support preferred) Which service has the lowest ...
52
votes
13answers
12k views

Dynamically adding a form to a Django formset with Ajax

I'd like to be able to automatically add new forms to a Django formset with an ajax function. I.e., the user clicks an "add" button and some javascript will add a new form (which is part of the ...
50
votes
5answers
20k views

Extending the User model with custom fields in Django

What's the best way to extend the User model (bundled with Django's authentication app) with custom fields? I would also possibly like to use the email as the username (for authentication purposes). ...
48
votes
18answers
6k views

Web application monitoring best practices

We are finishing up our web application and planning for deployment. Very important aspect of deployment to production is monitoring the health of the system. Having a small team of developers/support ...
47
votes
31answers
3k views

What are your favorite general purpose Django apps?

What are the apps that you consider part of your core toolset for Django projects (including those shipped with Django)? For example, I just discovered Migratory for database migration management: I ...
46
votes
13answers
12k views

Open Source Alternative to UserVoice or Get Satisfaction? [closed]

I've got a few small web projects where I'd like to get some user feedback however the services I've found are not cheap. To get to a useful level of features on UserVoice or Get Satisfaction I'd be ...
46
votes
8answers
10k views

How to debug in Django, the good way?

So, I started learning to code in Python and later Django. The first times it was hard looking at tracebacks and actually figure out what I did wrong and where the syntax error was. Some time has ...
46
votes
4answers
11k views

How do you log server errors on django sites

So, when playing with the development I can just set settings.DEBUG to True and if an error occures I can see it nicely formatted, with good stack trace and request information. But on kind of ...
45
votes
5answers
31k views

How do I use CSS in Django?

I am creating my application using Django, and am wondering how I can make Django use my CSS file? What settings do I need to do to make Django see the css file? NB: On a local machine
45
votes
10answers
25k views

Free Python hosting

Is there a free working python host on which I can live test a django app? Google app engine is not an option.
44
votes
5answers
21k views

Python + Django page redirect

How do I accomplish a simple redirect (e.g. cflocation in ColdFusion, or header(location:http://) in django)?
44
votes
5answers
10k views

In django, what is a “slug”?

When I read django code I often see in models what is called a "slug". I am not quite sure what this is but I do know it has something to do with URL:s. How and when is this slug-thing supposed to be ...
43
votes
8answers
13k views

Can I access constants in settings.py from templates in Django?

I have some stuff in settings.py that I'd like to be able to access from a template, but I can't figure out how to do it. I already tried {{CONSTANT_NAME}} but that doesn't seem to work. Is this ...
43
votes
7answers
18k views

How to combine 2 or more querysets in a Django view?

I am trying to build the search for a Django site I am building, and in the search I am searching in 3 different models. And to get pagination on the search result list I would like to use a generic ...
42
votes
4answers
7k views

Is the Lift framework as “easy” as Ruby on Rails or Django?

Just wondering if anyone has experience with the three. I have used read through some RoR and used Django. They seem fairly easy to use. Is lift "easy" like these two are? I know easy is ...
42
votes
4answers
18k views

How do I filter ForeignKey choices in a Django ModelForm?

Say I have the following in my models.py: class Company(models.Model): name = ... class Rate(models.Model): company = models.ForeignKey(Company) name = ... class Client(models.Model): ...
40
votes
5answers
43k views

Converting string into datetime

Short and simple. I've got a huge list of date-times like this as strings: Jun 1 2005 1:33PM Aug 28 1999 12:00AM I'm going to be shoving these back into proper datetime fields in a database so I ...
39
votes
7answers
9k views

Django vs Flask for a long-term project

I am looking for a comparison of django and flask for a project that will live for a long time, and will need to be maintained, built upon and grow as the months progress. I am considering Flask + ...
39
votes
5answers
14k views

Custom Filter in Django Admin

How can I add a custom filter to django admin (the filters that appear on the right side of a model dashboard)? I know its easy to include a filter based on a field of that model, but what about a ...
39
votes
5answers
28k views

Django equivalent for count and group by

I have a model that looks like this: class Category(models.Model): name = models.CharField(max_length=60) class Item(models.Model): name = models.CharField(max_length=60) category = ...
38
votes
5answers
15k views

How do I do a not equal in Django queryset filtering?

In django model querysets, I see that there is a __gt and __lt for comparitive values, but is there a __ne/!=/<> (not equals?) I want to filter out using a not equals: Example: Model: bool a; ...
38
votes
9answers
7k views

Using Pylint with Django

I would very much like to integrate pylint into the build process for my python projects, but I have run into one show-stopper: One of the error types that I find extremely useful--:E1101: *%s %r has ...
37
votes
7answers
9k views

Is there a HAML implementation for use with Python and Django

I happened to stumble across HAML, an interesting and beautiful way to mark up contents and write templates for HTML. Since I use Python and Django for my web developing need, I would like to see if ...
37
votes
4answers
6k views

Django on IronPython

I am interested in getting an install of Django running on IronPython, has anyone had any success getting this running with some level of success? If so can you please tell of your experiences, ...
37
votes
9answers
4k views

How do I use Django templates without the rest of Django?

I want to use the Django template engine in my (Python) code, but I'm not building a Django-based web site. How do I use it without having a settings.py file (and others) and having to set the ...
37
votes
6answers
7k views

Altering database tables in Django

I'm considering using Django for a project I'm starting (fyi, a browser-based game) and one of the features I'm liking the most is using syncdb to automatically create the database tables based on the ...
35
votes
10answers
17k views

What is the best AJAX library for Django?

Which and why is the best AJAX library for django? Which one has the biggest database of tutorials, books and most detailed documentation? Which one is the easiest to work with? Which one is in ...
35
votes
10answers
32k views

How do I perform HTML decoding/encoding using Python/Django?

I have a string that is html encoded: &lt;img class=&quot;size-medium wp-image-113&quot; style=&quot;margin-left: 15px;&quot; title=&quot;su1&quot; ...
33
votes
4answers
736 views

How to work around lack of support for foreign keys across databases in Django

I know Django does not support foreign keys across multiple databases: http://docs.djangoproject.com/en/1.3/topics/db/multi-db/#cross-database-relations But I'm looking for a workaround. What ...
33
votes
2answers
3k views

Django - How to rename a model field using South?

I would like to change a name of specific fields in a model: class Foo(models.Model): name = models.CharField() rel = models.ForeignKey(Bar) should change to: class Foo(models.Model): ...
33
votes
4answers
33k views

Capturing url parameters in request.GET

I am currently defining regular expressions in order to capture parameters in a url, as described in the tutorial. How do I access parameters from the url as part the HttpRequest object? My ...
32
votes
8answers
5k views

Does Ruby on Rails affect how a web page looks?

Most of the time, whenever I hit a website that looks "bubbly" in nature, and all prettified in those pastel-like colors, I think to myself, "This was probably done with Rails." And, lo and behold, ...
32
votes
7answers
20k views

Getting “Error loading MySQLdb module: No module named MySQLdb” - have tried previously posted solutions

This is a much discussed issue for OSX 10.6 users, but I haven't been able to find a solution that works. Here's my setup: Python 2.6.1 64bit Django 1.2.1 MySQL 5.1.47 osx10.6 64bit I create a ...

1 2 3 4 5 552