Views
-Django's class based views are a welcome departure from the old-style views.
Views
REST framework provides a simple APIView class, built on Django's django.generics.views.View. The APIView class ensures five main things:
- Any requests inside the view will become
Requestinstances.