© 2023 Hashnode
#djangorestframework
Overview of the Django Rest Framework The Django Rest Framework (DRF) is a powerful and flexible toolkit for building Web APIs. It provides a full suite of features for developing RESTful APIs, includ…
Middleware is a framework of hooks into Django's request/response processing. It is a light plugin system for altering Django’s input or output. Each middleware component is responsible for doing some…
The problem with ChoiceField In Django REST Framework, there is a field called ChoiceField which can be used when you have certain choices for a field in your REST API. For example, let's imagine you were creating an API to convert colors t…
As a popular Python web framework, Django is known for its simplicity and ease of use. However, as with any web framework, performance can be an issue. In this article, we will explore some tips and t…
In this article, you will learn how to create and use custom Django signals. Then use them to log all actions undertaken by a user on the application 1. What are Django signals? According to the Djang…
Here's what are going to build: API docs PlanetScale PlanetScale builds a database-as-a-service offering on Vitess, an open source sharding middleware system for MySQL powering products such as YouTub…
Objectives Introduce Amazon SQS and Queues. Look into the different types of queues and their differences. Understand how Amazon SQS would be used in a decoupled application or service. Build a simpl…
Introduction The Django Rest Framework (DRF) is a powerful tool for creating web APIs and it has a lot of features that make it ideal for this type of work. In this blog post, we'll cover why you shou…