Making Django's signals asynchronous with Celery

October 10, 2011
Update: A comment on the ticketI opened by Alex Gaynor brought up a point that I hadn't fully considered. It'sworth noticing before going further in this post and also worth pointing out mymonkey patch doesn't answer this question.After speaking with...
Read and Post Comments

Python Edinburgh

August 12, 2010
Python Edinburgh is user group for Pythonistas in (surprisingly) Edinburgh.This is a kick start of a group that died out unfortunately and only met once this year.Find out more at the new (but basic) websiteand follow us on twitter or...
Read and Post Comments

Testing your first Django app

January 20, 2010
This is my unofficial part five for the Django tutorial. I've attempted to write this in a similar style to the Django documentation and hopefully this will be useful for those looking for the next step after the tutorial or...
Read and Post Comments

Nicer dynamic forms in django

December 16, 2009
I used to make dynamic forms for Django in very bad way, I'm happy to admit that now as I've improved my process.Basically the solution is to use type() as I'm sure many of you know. If your doing that...
Read and Post Comments