Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
sql - Django select only rows with duplicate field values - Stack Overflow
Try: from django.db.models import Count Literal.objects.values('name').annotate(count=Count('id')).order_by().filter(id__count__gt=1) This is as close as you can get with Django. The problem is that this will return a ValuesQuerySet with only name and count. However, you can then use this to construct a regular QuerySet by feeding it back into another query: dupes = Literal.objects.values('name').annotate(Count('id')).order_by().filter(id__count__gt=1) Literal.objects.filter(name__in=[item['name'] for item in dupes]) -
Django REST framework - APIs made easy
-
rosarior/awesome-django · GitHub
-
ui/django-rq · Django Redis Queue
-
33 projects that make developing django apps awesome — elweb
-
Django build & deploy tools, Alex Arshavski - MindMeister Mind Map
-
newsapps/django-boundaryservice
-
Caktus Group : Getting Started Scheduling Tasks with Celery
-
Build a Django Stack - Chef - Chef Open Source Wiki
-
django-remotelog - Pluggable Django app for logging messages from the Python logging module's HTTPHandler - Google Project Hosting
-
Caktus Group : Getting Started Scheduling Tasks with Celery
-
Software Maniacs blog » Django as a micro-framework
-
python - Separation of business logic and data access in django - Stack Overflow
Is the code part of business logic? -> yourapp.vendor -
Getting Started Scheduling Tasks with Celery
There are multiple ways to schedule tasks in your Django app, but there are some advantages to using Celery. It’s ... -
rosarior/awesome-django
-
Django collectstatic from Heroku pushes to S3 everytime - Stack Overflow
Includes errors and hints -
Django Vanilla Views - Beautifully simple class based views
-
An example of provisioning and deployment with Ansible - Stavros' Stuff
-
Django 1.7 release candidate 2
RT @djangolinks: (Please ReTweet) DSF announced Django version 1.7 Release Candidate 2 #django #python -
Scaling Django to 8 Billion Page Views | Disqus: The Official Blog
-
pyvideo.org - Fully Test-Driven Web Development with Django and Selenium
-
Deni Bertovic
-
rosarior/awesome-django
-
rosarior/awesome-django · GitHub
-
PaaS bakeoff: Comparing Stackato, OpenShift, Dotcloud and Heroku for Django hosting and deployment | Appsembler