Risk management is a fundamental component of every successful software development life cycle (SDLC).
Tag
Bits
Multiple Serialisers in Django ModelViewSet
how to employ different serialiser for same ModelViewSet in Django Rest Framework.
Bits
Unit Testing in Python using assertAlmostEqual
The assertAlmostEqual(x, y) method in Python's unit testing framework tests whether x and y are approximately.
Clean Docker Images
Each time docker makes a rebuild a new image file is added up which consumes a decent amount of disk space, this is how to get rid of it.
get_or_create and unique_together in Django REST Framework
Implementing get_or_create in django API using Rest Framework, with and without unique_together constrain.
Public Endpoint in Django Rest Framework
Disable Authentication in Django REST Framework for a single or multiple APIView classes.
Bits
User Account Details in Django Extended UserModel Serializer
How to access user account details like email address, username, first_name and last_name in django account models.