Django is an open source Web 2.0 application framework, written in Python. Its primary goal is to ease the creation of complex database-driven websites.
298
votes
23answers
45k 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 ...
253
votes
14answers
60k views
Pros/Cons of Django vs Pylons [closed]
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?
175
votes
6answers
14k 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
...
159
votes
5answers
155k 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 ...
156
votes
31answers
62k 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 ...
134
votes
12answers
34k 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 ...
126
votes
8answers
38k 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 ...
114
votes
16answers
24k 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 ...
112
votes
5answers
38k 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;
...
112
votes
16answers
57k views
Apache vs nginx vs lighttpd? Which is simpler to configure and administer? [closed]
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 ...
107
votes
14answers
48k 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 ...
103
votes
9answers
43k 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).
...
101
votes
14answers
21k 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 ...
100
votes
9answers
29k 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 ...
99
votes
12answers
8k 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 ...
98
votes
6answers
20k views
What is a “slug” in django?
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 ...
95
votes
12answers
51k 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 ...
94
votes
8answers
64k 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 ...
94
votes
10answers
11k 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 ...
93
votes
2answers
11k 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):
...
90
votes
8answers
25k views
Django vs Flask for a long-term project [closed]
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 + ...
88
votes
5answers
31k views
Need a minimal Django file upload example
As a newbie to Django, I am having difficulty to make an upload app in Django 1.3. I could not find any up-to-date example/snippet. So I appreciate if you could post here or refer me to a minimal but ...
84
votes
3answers
13k views
Backwards migration with Django South
Ok, so this seems like a really silly thing to ask, and I'm sure I'm missing something somewhere.
How do you perform a backwards migration using South on Django?
So I've tweaked my models, created a ...
84
votes
15answers
26k views
What's the best Django search app? [closed]
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 / ...
81
votes
13answers
41k 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 ...
80
votes
4answers
16k views
Django South - table already exists
I am trying to get started with South.
I had an existing database.
I added South (syncdb, schemamigration --initial).
I updated models.py to add a field.
I ran ./manage.py schemamigration myapp ...
79
votes
10answers
31k 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 ...
78
votes
4answers
23k 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 ...
77
votes
11answers
9k 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 ...
75
votes
6answers
57k 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
74
votes
6answers
34k 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):
...
73
votes
7answers
45k views
Python + Django page redirect
How do I accomplish a simple redirect (e.g. cflocation in ColdFusion, or header(location:http://) in django)?
73
votes
9answers
11k views
History of Django's popularity [closed]
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 ...
73
votes
3answers
33k views
Get the current URL within a django template
Hay, i was wondering how to get the current URL within a template.
Say my URL was
/user/profile/
How do i return this to the template?
Thanks
72
votes
5answers
69k 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 ...
71
votes
4answers
9k views
Django: Why some fields clashes with other
I want to create an object that contains 2 links to users. For example
class GameClaim(models.Model):
target = models.ForeignKey(User)
claimer = models.ForeignKey(User)
isAccepted = ...
70
votes
9answers
33k views
Programmatically saving image to Django ImageField
Ok, I've tried about near everything and I cannot get this to work.
I have a Django model with an ImageField on it
I have code that downloads an image via HTTP (tested and works)
The image is saved ...
67
votes
8answers
14k views
AngularJS with Django - Conflicting template tags
I want to use AngularJS with Django however they both use {{ }} as their template tags. Is there an easy way to change one of the two to use some other custom templating tag?
66
votes
2answers
3k views
How do you get PyPy, Django and PostgreSQL to work together?
What fork, or combination of packages should one to use to make PyPy, Django and PostgreSQL play nice together?
I know that PyPy and Django play nice together, but I am less certain about PyPy and ...
64
votes
6answers
13k views
What's the recommended approach to resetting migration history using Django South?
I've accumulated quite a few migrations using South (0.7) and Django (1.1.2) which are starting to consume quite a bit of time in my unit tests. I would like to reset the baseline and start a fresh ...
63
votes
7answers
36k views
How do I create a slug in Django?
I am trying to create a SlugField in Django.
I created this simple model:
from django.db import models
class test(models.Model):
q = models.CharField(max_length=30)
s = models.SlugField()
...
63
votes
8answers
25k views
Having Django serve downloadable files
I want users on the site to be able to download files whose paths are obscured so they cannot be directly downloaded.
For instance, I'd like the URL to be something like this, ...
62
votes
19answers
21k views
Django OR Rails [closed]
I am an ASP.NET developer, but want to learn other frameworks/language (open source).
Django and Rails both seem promising, but I am confused which one I should choose to start, or whether I should ...
62
votes
18answers
10k 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 ...
62
votes
3answers
10k views
Easiest way to rename a model using Django/South?
I've been hunting for an answer to this on South's site, google, and SO, but couldn't find a simple way to do this.
I want to rename a Django model using South.
Say you have the following:
class ...
62
votes
13answers
18k 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 ...
61
votes
5answers
13k views
Getting the SQL from a Django QuerySet
How do I get the SQL that Django will use on the database from a QuerySet object? I'm trying to debug some strange behavior, but I'm not sure what queries are going to the database. Thanks for your ...
59
votes
9answers
28k views
DatabaseError: current transaction is aborted, commands ignored until end of transaction block
I got a lot of "DatabaseError: current transaction is aborted, commands ignored until end of transaction block" errors after changed from python-psycopg to python-psycopg2 as Django project's database ...
59
votes
1answer
39k views
Django set default form values
I have a Model as follows
class TankJournal(models.Model):
user = models.ForeignKey(User)
tank = models.ForeignKey(TankProfile)
ts = models.IntegerField(max_length=15)
title = ...
58
votes
7answers
14k views
Django Passing Custom Form Parameters to Formset
I have a Django Form that looks like this:
class ServiceForm(forms.Form):
option = forms.ModelChoiceField(queryset=ServiceOption.objects.none())
rate = ...
