Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Celery: Distributed Task Queue
Celery is an asynchronous task queue/job queue based on distributed message passing.It is focused on real-time operation, but supports scheduling as well. -
Django REST framework - APIs made easy
-
Getting Started with Django Rest Framework and AngularJS
Django Rest Framework & AngularJS integration example -
python - how to find user id from session_data from django_session table? - Stack Overflow
from django.contrib.sessions.models import Session from django.contrib.auth.models import User session_key = '8cae76c505f15432b48c8292a7dd0e54' session = Session.objects.get(session_key=session_key) uid = session.get_decoded().get('_auth_user_id') user = User.objects.get(pk=uid) print user.username, user.get_full_name(), user.email -
Django Rest Framework and AngularJS : django
-
11 Things I Wish I Knew About Django Development Before I Started My Company: — CS + Math — Medium
-
The Iconfinder Blog | When the database is fast enough
-
Django Circus Love
-
Backbone.js and Django : blog : Josh Bohde
-
Webdev/GetInvolved - MozillaWiki
Learnt #Django at the #PyConIE Sprint & want work on sites to contribute to? @mozillaweb has "Good first bugs" at -
Amit Upadhyay: Djangothis For Blogging
-
Sentry + Django コトハジメ
-
Frameworks Exist for Conceptual Integrity
-
python - Pros/Cons of Django vs Pylons - Stack Overflow
-
Django vs Pyramid - My Comparison - Brett's Blog
-
Kevin Stone
-
API first architecture or the fat vs thin server debate | LeaseWeb Labs
-
A Docker primer - from zero to a running Django app | Ochronus.com
-
Getting started with django rest framework and angular
-
Customizing authentication in Django | Django documentation | Django
-
Extending User Model in Django | Tivix Blog
-
Django User Profiles - Simple yet powerful | TurnKey Linux Blog
-
Kevin Stone
-
Using email as username field in Django 1.5 custom User model results in FieldError - Stack Overflow
-
Migrating to a Custom User Model in Django