TIL that you can specify update_fields while saving a Django model to generate a leaner underlying SQL query. This yields better performance while updating multiple objects in a tight loop. To test that, I'm opening an IPython shell with python manage.py ... (more…)
Read more »
I’ve been thinking a little while of a “video series” I could start and landed on “Building a SaaS on YouTube using Django and Vue.js”. I’m going to start with installation and finish with… (more…)
Read more »
For me, deploying my django project with uWSGI and Nginx was a hassle. I struggled a lot and there were some terms I did not understand. In this blog post, I will try to explain and simplify the deployment process. (more…)
Read more »
Django 3.0 beta 1 is now available. It represents the second stage in the 3.0 release cycle and is an opportunity for you to try out the changes coming in Django 3.0. (more…)
Read more »
A quickstart guide to create a web map with the Python-based web framework Django using its module GeoDjango, the PostgreSQL database with its spatial extension PostGIS and Leaflet, a JavaScript library for interactive maps. (more…)
Read more »