Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Test-Driven Development with Python
-
Python Programming
-
Deni Bertovic
Not so hypothetical scenario: -
sametmax/django-quicky
-
vitorfs/bootcamp
-
How to scale Django
-
python - ValueError: invalid literal for int() with base 10: '' - Stack Overflow
I'll just add, to provide more clarity for future readers, that indeed, int(float('1.0')) works when int('1.0') throws the ValueError. – katyhuff Apr 26 '13 at 16:53 -
python - Checking whether a variable is an integer or not - Stack Overflow
isinstance( , int ) -
Deni Bertovic
If you've worked with Django at some point you probably had the need for some background processing of long running tasks. Chances are you've used some sort of task queue, and Celery is currently the most popular project for this sort of thing in the Python (and Django) world (but there are others). While working on some projects that used Celery for a task queue I've gathered a number of best practices and decided to document them. Nevertheless, this is more a rant about what I think should be the proper way to do things, and about some underused features that the celery ecosystem offers. -
Mustache vs Swig Templating Shootout! | shutterbits
-
Hello Web App: Intro to building web apps with Django by Tracy Osborn — Kickstarter
-
How to Tango with Django: A Python Django Tutorial
-
11 Things I Wish I Knew About Django Development Before I Started My Company: — Computer Science, Math, and Statistics — Medium
-
Lightweight Django - O'Reilly Media
-
Using reCAPTCHA With Django - ChrisUmbel.com
reCaptcha -
GRAPPELLI ADMIN INTERFACE
The Django admin interface is a powerful application in order to manage your websites data — some might call it a CMS. Grappelli adds a consistent and grid-based look & feel and some nifty features. -
Adding css classes to formfields in Django Templates
-
Fwd: Python/Django Developer
David Bush, see also github.com/davekcd -
Angular.js with Django — Medium
-
Expert interview: How to scale Django | Application Development - InfoWorld
-
django-jsonfield 0.9.12 : Python Package Index
A JSON field for django that comes also with a templatetag. -
Expert interview: How to scale Django | Application Development - InfoWorld
-
Deni Bertovic
CELERY - BEST PRACTICES -
Using django-simple-captcha — Django Simple Captcha 0.4.1 documentation
from django import forms from captcha.fields import CaptchaField -
python - Django variable in base.html - Stack Overflow
very relevant question about passing context base.html - we tried answer 4 - templatetags