APIView vs Viewsets
When building your API in Django using Django Rest Framework, you have two choices for writing the controllers: APIView or ViewSets.
APIView
APIView provides a methods handler for HTTP verbs: get, post, put, patch and delete.
But you'll need to wri...
koladev.hashnode.dev3 min read