Tagged Questions

297
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 ...
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 ...
85
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 ...
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
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 ...
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 ...
47
votes
8answers
11k 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
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)?
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 ...
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
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
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 ...
35
votes
10answers
32k views

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

I have a string that is html encoded: <img class="size-medium wp-image-113" style="margin-left: 15px;" title="su1" ...
34
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 ...
31
votes
12answers
13k views

Django vs other Python web frameworks?

I've pretty much tried every Python web framework that exists, and it took me a long time to realize there wasn't a silver bullet framework, each had its own advantages and disadvantages. I started ...
31
votes
7answers
6k views

How does Django Know the Order to Render Form Fields?

If I have a Django form such as: class ContactForm(forms.Form): subject = forms.CharField(max_length=100) message = forms.CharField() sender = forms.EmailField() And I call the ...
31
votes
7answers
1k views

How do you develop against OpenID locally

I'm developing a website (in Django) that uses OpenID to authenticate users. As I'm currently only running on my local machine I can't authenticate using one of the OpenID providers on the web. So I ...
30
votes
13answers
3k views

Is switching from PHP to Python worth the trouble

If you had switched from php + (framework of choice) to python + (framework of choice) as your development platform, what would you say have been the upsides/gains of the switch? What I want to know ...
30
votes
6answers
8k 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 = ...
30
votes
9answers
8k views

Advice on Python/Django and message queues

I have an application in Django, that needs to send a large number of emails to users in various use cases. I don't want to handle this synchronously within the application for obvious reasons. Has ...
29
votes
3answers
3k views

Naming Python loggers

In Django, I've got loggers all over the place, currently with hard-coded names. For module-level logging (i.e., in a module of view functions) I have the urge to do this. log= logging.getLogger( ...
28
votes
3answers
9k views

Vim, Python, and Django autocompletion (pysmell?)

Does anyone know how to set up auto completion to work nicely with python, django, and vim? I've been trying to use pysmell, but I can't seem to get it set up correctly (or maybe I don't know how it ...
27
votes
7answers
3k views

Why use Django on Google App Engine?

When researching Google App Engine (GAE), it's clear that using Django is wildly popular for developing in Python on GAE. I've been scouring the web to find information on the costs and benefits of ...
27
votes
7answers
16k views

Django: how do you serve media / stylesheets and link to them within templates

Variations of this question have been asked, but I'm still unable to get my stylesheets to load correctly when my templates are rendered. I'm attempting to serve static media from the Django process ...
27
votes
6answers
11k views

How to sort a list of objects in Python, based on an attribute of the objects?

I've got a list of Python objects that I'd like to sort by an attribute of the objects themselves. The list looks like: >>> ut [<Tag: 128>, <Tag: 2008>, <Tag: <>, ...
26
votes
11answers
8k views

Any early impressions of PyCharm for Python, Django and web development?

I just discovered PyCharm, which is a Python/Django/web IDE currently in "public preview" being developed by JetBrains. Has anyone been using it for the last month it has been available, and if so, ...
26
votes
9answers
8k views

Can you give a Django app a verbose name for use throughout the admin?

In the same way that you can give fields and models verbose names that appear in the Django admin, can you give an app a custom name?
26
votes
11answers
10k views

Adding REST to Django — Poll

I've got a Django application that works nicely. I'm adding REST services. I'm looking for some additional input on my REST strategy. Here are some examples of things I'm wringing my hands over. ...
26
votes
5answers
4k views

Project design / FS layout for large django projects

What is the best way to layout a large django project? The tutuorials provide simple instructions for setting up apps, models, and views, but there is less information about how apps and projects ...
25
votes
5answers
6k views

Django vs web2py for a beginner developer

Which of these two frameworks is better suited to a developer with 11 months experience. I have decided to learn python for my server side coding and wanted to know which of these would be better ...
25
votes
9answers
7k views

Change Django Templates Based on User-Agent

I've made a Django site, but I've drank the Koolaid and I want to make an IPhone version. After putting much thought into I've come up with two options: Make a whole other site, like i.xxxx.com. ...
24
votes
8answers
11k 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, ...
24
votes
11answers
18k views

Python logging in Django

I'm developing a Django app, and I'm trying to use Python's logging module for error/trace logging. Ideally I'd like to have different loggers configured for different areas of the site. So far I've ...
24
votes
11answers
3k views

Book and tutorial recommedations for Django 1.0

Please share your book or tutorial recommendations for the latest release (1.0) of Django.
23
votes
5answers
1k views

Which openid / oauth library to connect a django project to Google Apps Accounts?

I'm working on an intranet django project (not using GAE) for a company that uses Google Apps for login. So I'd like my users to be able to log in to my django project using their google accounts ...

1 2 3 4 5 220