How to add reCAPTCHA to your django forms
We use recaptcha to protect against bots. I will show you how to integrate Google’s reCAPTCHA with your django forms. Here are the steps to make it...
We use recaptcha to protect against bots. I will show you how to integrate Google’s reCAPTCHA with your django forms. Here are the steps to make it...
Cyclomatic Complexity (or Conditional Complexity) (CC) is a means of measuring the complexity of a given program. Complexity is measured by counting...
Let’s say you wanted to provide third-party application support for your web application. You’ll probably make an app that handles API calls, set up...
Search is an essential tool for any website, and is a feature often requested by both site owners and users. While the built-in Django QuerySet...
Django-articles (articles) is a fully-featured blog engine. This is useful for those who wish to set up a blog that’s tightly coupled to an existing...
Django-grappelli provides a revamp of the existing Django admin look and feel. In itself, it simply makes your site look better—you’ll need this in...
There is also an easy way to sort tabular data this time using django-sorting (https://github.com/directeur/django-sorting). Setup is described in...
I remember one of my Django projects wherein I was asked to populate the database with 30k dummy rows of data. So what I did was to find myself a...
Here’s what’s going on in this tutorial: We will be embedding Python in a small C program For the sake of example, we will not use any third party...
Django Piston is a tool that creates API’s on the fly from your Django projects. Ryan gives us an overview with examples in this screencast.