Category Archives: Django

httpBL Middleware for Django

Inspired by Project Honeypot and the http:BL WordPress Plugin, I decided to write a similar plugin for Django. The Http:BL API is well documented here and there are implementations for Joomla, Drupal and numerous others. As my framework of choice … Continue reading

Posted in Announcements, Django | Leave a comment

reCAPTCHA Mailhide template filter for Django

reCAPTCHA’s Mailhide is a captcha that “helps you protect your inbox by asking people to solve a reCAPTCHA before they can view your email address.” The Mailhide API is well documented, information on it’s inner workings can be found here. … Continue reading

Posted in Django | 2 Comments

Stored Procedures and Django

Since it is not always possible, or efficient, to accomplish the database queries you would like using the Django Database API, many developers will find themselves needing to escape the constraints of the API and leverage stored procedures. For scenarios … Continue reading

Posted in Django, Postgres | 1 Comment