Django REST Framework is a wrapper over default Django Framework, basically used to create APIs of various kinds . There are three stages before creating a API through REST framework, Converting a Model’s data to JSON/XML format (Serialization), Rendering this data to the view, Creating a URL for mapping to the viewset.
Read moreIs Django and Django REST framework same?
Django is the web development framework in python whereas the Django Rest Framework is the library used in Django to build Rest APIs . Django Rest Framework is especially designed to make the CRUD operations easier to design in Django.
Read more