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 …
Image credits to https://unsplash.com/es/@retrokram
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 …
Credits to 藪 https://www.pixiv.net/en/users/50979768
Solr, together with Lucene, is an outstanding search engine that allows you to perform searches with advanced features. …
Credits to https://www.instagram.com/we_make_mangas/
Previously I explained you how to implement full text search in Django and trigrams-and-search-rank using Postgres. Solr …
Image credits for 極道畫師 https://www.pixiv.net/en/users/7140895
Grouping by categories is quite common in web applications, from movies, courses or any other resource that presents a …
Image credits to pin: https://www.pixiv.net/en/users/961667
In this post I explain three methods to extend or customize Django’s User model, without having to rewrite it from …
Image credits to ときわた: https://www.pixiv.net/en/users/5300811
The select_related and prefetch_related methods are used to reduce the number of queries made to the database. This …
Credits to https://www.pexels.com/@cottonbro/
Channel layers allow you to interact and share information with different consumers in django channels. This allows each …