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.

learn more… | top users | synonyms | django jobs

2
votes
1answer
81 views
+50

Reporting yielded results of long-running Celery task

Problem I've segmented a long-running task into logical subtasks, so I can report the results of each subtask as it completes. However, I'm trying to report the results of a task that will ...
1
vote
4answers
95 views
+100

data format value changes in database

views.py def when(request): """""""" if not report.manual_date: report.manual_date = datetime.datetime.now() if int(dateformat): date = ...
0
votes
0answers
36 views
+50

Django (nose) test speeding up with reuse_db not working

I am using django-nose to run my unit tests in django (1.4). TEST_RUNNER = 'django_nose.NoseTestSuiteRunner' Creating the database takes a long time. So I found out putting this in settings.py: ...
0
votes
1answer
37 views
+50

How do I generate (autodoc) pages based on category in Sphinx?

I'm currently evaluating Sphinx for the documentation of my Django project. It consists of multiple apps tightly coupled into a project. One thing I'm trying to accomplish is generating pages of ...
0
votes
0answers
31 views
+50

What are the appropriate NGINX configs if you are only sending JSON objects?

I'm an iOS developer and my back end is all written in Django. I use gunicorn as my HTTP server. I have three workers running on a small EC2 instance. My iOS app does not require any images or ...