Django’s ORM is quite useful and versatile, it can perform most of the common SQL operations, such as filtering, …
On June 21, 2024 I started a thread on reddit with the following question: “What would you improve about Django …
With django and reportlab we can generate PDFs dynamically, using information from our database, user input or any other …
A sitemap is an xml file that functions as a map to navigate your site. Hence the name; Site-map. Search engines, such …
Solr, together with Lucene, is an outstanding search engine that allows you to perform searches with advanced features. …
Previously I explained you how to implement full text search in Django and trigrams-and-search-rank using Postgres. Solr …
Grouping by categories is quite common in web applications, from movies, courses or any other resource that presents a …
In this post I explain three methods to extend or customize Django’s User model, without having to rewrite it from …
The select_related and prefetch_related methods are used to reduce the number of queries made to the database. This …
Channel layers allow you to interact and share information with different consumers in django channels. This allows each …