Django REST Framework

Author: COPS SDG Published on: July 14, 2020

Django REST Framework

Introduction

What is REST, and what are RESTful APIs?

Representational State Transfer (REST) is an architectural style that specifies a particular style (and a few constraints). If applied to a web service, render desirable services to work best on the Web, such as performance, scalability, and modifiability. In a RESTful API, endpoints (URLs) define the API structure and how end users access data from our application using the HTTP methods: GET, POST, PUT, DELETE.

Here you can learn more about RESTful Web Services

Introduction to REST APIs - RESTful Web Services - DZone Integration

A server issues status codes in response to a client's request made to the server. The server always returns a message for every request, whether it is successful or not. Thus they are helpful to know the state of your code.

HTTP Status Codes

What is DRF? Why should I learn it?

Consider that after having completed the CSOC Django Assignment, you now built your own web app backed with Django as the backend. Overnight your web app became a star success!! Congrats! They love it so much that they want a mobile phone version! Time to create an Android Version! And an ios version...

And then, you have to replicate 2 times the same code to Add, View, Remove, Update and Delete data with different languages.

That opens the door to many possible mistakes… And that is where DRF shines out.....

In short, as DRF uses URIs for accessing the DataBase, we can provide access to the database to any application that can read from, generate and send a URI. May that be an android app, web app, iOS app etc.

Consider this against using Django without DRF library, where to provide access to Android, iOS in addition to the web; you have to replicate 2 times the same code to Add, View, Remove, Update and Delete data, with different languages.

All that DRF provides can be implemented through Django without explicitly using DRF, but it is tedious.

Now that was a good start to understanding DRF, but a developer's understanding and terminologies go beyond... Offering you this possibility, have a go through the documentation.

Documentation and Installation

Home - Django REST framework

Architecture

A DRF API is composed of 3 layers: the serializer, the viewset, and the router.

  • Serializer: converts the information stored in the database and defined by the Django models into a more easily transmitted format via an API.
  • Viewset: defines the functions (read, create, update, delete) which will be available via the API
  • Router: defines the URLs which will provide access to each viewset.

Quickstart

After having installed

Quickstart

Serializers

Django models intuitively represent data stored in your database, but an API will need to transmit information in a less complex structure. While your data will be represented as instances of your Model classes in your Python code, it needs to be translated into a format like JSON to be communicated over an API.

You can learn about serializers here.

1 - Serialization - Django REST framework

Requests and Responses

Well aware that you are about the REST framework, there is nothing better than getting started right away with Django's Requests and Responses.

2 - Requests and responses - Django REST framework

ViewSets and Routers

A given serializer will parse the information in both directions (reads and writes), but the ViewSet is where the available operations are defined. The most common ViewSet is the ModelViewSet, which has the following built-in operations:

  • Create an instance: create()
  • Retrieve/Read an instance: retrieve()
  • Update an instance (all fields or only selected fields): update() or partial_update()
  • Destroy/Delete an instance: destroy()
  • List instances (paginated by default): list()

6 - Viewsets and routers - Django REST framework

Tutorial

Official Django REST Framework Tutorial - A Beginners Guide | LearnDjango

Django docs contain a tutorial to build Polls API. You can try implementing the same app using DRF. Follow below tutorials:

Introductions - Building API Django 2.0 documentation

Other resources

You can refer to other articles in these websites for better understanding of Django and DRF:

Categories

Will Vincent

Article Archive - Simple is Better Than Complex

Clean Code

One should always use sensible names for views, variables etc. and write clean code. Follow this guide to understand how to name your urls.

REST API Naming Conventions and Best Practices - REST API Tutorial

Python naming guidelines

PEP 8 -- Style Guide for Python Code

Task and Submission

This Blog is a part of CSoC'21 Dev Backend.

Remember, deadline for this task is August 7th, 2021 23:59.

So much for learning, here is your next Assignment!

All the details of the task are provided in the README.md file.

As you are aware, you need to fork from and the repository, clone the forked repository, complete the task, commit and push your changes and finally open the pull request back here.

GitHub - COPS-IITBHU/csoc-2021-task5-Django-REST-Framework