Tag: Django Rest Framework

Generic Views in Django

Last updated on 13th February 2023 by Madderla Saikumar | Category: Django Tutorial

Several generic views offered by Django Rest Framework simplify the process of building REST APIs by handling common tasks such as authentication, permission checks, and other operations. Some of the most commonly used generic views in Django Rest Framework are: ListAPIView: This view displays a list of objects. It provides basic pagination and ordering functionality. […]

Read more 

Delete Method In Django REST Framework

Last updated on 16th February 2023 by Madderla Saikumar | Category: Django Tutorial

Django REST framework (DRF) is a powerful and flexible toolkit for building web APIs. In this tutorial, we’ll learn how to build a CRUD API in just 15 minutes using the Django REST framework Delete is a part of it. To build our sample to-do list application, we’ll start by setting up the Django REST […]

Read more