Django’s class-based views are powerful and customizable, but unless you have a solid mental model of how they work, they’re also confusing and tricky to master. It’s easy to use … (more…)
Read more »
Django offers a functional admin UI out of the box with CRUD
interface for db management. This covers most use cases for basic content
and user management systems. However, it doesn't have exploratory views that show
summaries or historical trends which i... (more…)
Read more »
Django URLs expect to send a response back to a user. Where does that response come from? A Django view! This article looks into the fundamentals of views and how to use them in your project. (more…)
Read more »
Frustrated with Google, I decided to build a focused search engine to see if it can deliver better results. My first experiment covers the Django ecosystem. (more…)
Read more »
In this tutorial we'll take a test-first approach to developing a RESTful API with the Django REST Framework. (more…)
Read more »