Posts tagged as "django"
Narrow state of a Django model using Python TypeGuard
August 31, 2024 • 4 min readToday, I came across a problem with type checking in a Django project which led me to use for the first time. I’ve heard about them in…
Nested ViewSets with Django REST Framework
May 05, 2023 • 6 min readI’ve been using Django REST Framework for a while now but mainly in old projects where lots of code have been written. In most cases, these…
Making Celery work nicely with Django transactions
June 25, 2019 • 5 min readI’ve been using Celery in my Django projects for about 5 years now. Along the way, I made some mistakes, learned from them and picked up a…
Static vs. Media files in Django
June 18, 2019 • 6 min readDjango is a great Web framework for building Web applications in Python. It comes with a lot of batteries included that you’ll most likely…