A URL shortener is a tool that can take a long URL and make shorter for easy of sharing, especially on social medias. URL shortener also allows to track the…
Tag
PYTHON
Multiple Serialisers in Django ModelViewSet
how to employ different serialiser for same ModelViewSet in Django Rest Framework.
Unit Testing in Python using assertAlmostEqual
The assertAlmostEqual(x, y) method in Python's unit testing framework tests whether x and y are approximately.
Web Development
Development Environment for Django in Docker Compose
Build a development environment for Django with docker using docker compose to manage the required services.
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.
Configure and Deploy Django Project on VPS
Deploy django application for production. Unlike web languages like PHP where the deployment process can be narrowed down to just transfer of files where as django needs additional setup to…