Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
pennersr/django-allauth - GitHub
-
omab/django-social-auth - GitHub
-
Efficient logging using Django and Apache
-
Python IDE
Powerful Python and Django IDE -
Google App Engine - Google Code
Google App Engine -
DjangoOnWindowsWithIISAndSQLServer – Django
-
Django | Making queries | Django documentation
-
Django | Download
python setup.py install -
sorl/sorl-thumbnail - GitHub
-
XML-RPC – Django
-
Django: Read only field - Stack Overflow
-
JSONResponse – Working with JSON in Django, easy way. - Chronosbox
# -*- coding: utf-8 -*- from utils import serialize_to_json from django.http import HttpResponseForbidden, HttpResponse class JSONResponse(HttpResponse): """ JSON response class """ def __init__(self,content='',json_opts={},mimetype="application/json",*args,**kwargs): """ This returns a object that we send as json content using utils.serialize_to_json, that is a wrapper to simplejson.dumps method using a custom class to handle models and querysets. Put your options to serialize_to_json in json_opts, other options are used by response. """ if content: content = serialize_to_json(content,**json_opts) else: content = serialize_to_json([],**json_opts) super(JSONResponse,self).__init__(content,mimetype,*args,**kwargs) -
jespern / django-piston / wiki / Home – Bitbucket
-
dokterbob's gist: 828117 — Gist
Son. Of. A. Bitch. -
ridethepony/django-fiber - GitHub
-
djangopony - Magic that can't be removed.
-
South
-
Django Forms with get_or_create - Stack Overflow
-
python - Pros/Cons of Django vs Pylons - Stack Overflow
Pylons -
Provided widgets — django-floppyforms v0.4.4 documentation
-
Ringce - Software Organs for Modern Humans
-
Python Package Index : django-waffle 0.6
-
How to install psycopg2 under virtualenv « goshawk's digital nest
-
Metamarkets Blog » Blog Archive » Node.js and the Javascript Age
-
The Django Book