排序
Hunting Heisenberg with Django Rest Framework
Hunting Heisenberg with Django Rest Framework, The idea The idea was to create a simple platform for DEA agents, to manage information about characters from the Breaking Bad/Better...
Django vs Django REST Framework: ¿Cuál es la diferencia? 🤔
Django vs Django REST Framework: ¿Cuál es la diferencia? 🤔,En el mundo del desarrollo web, a menudo escuchamos sobre Django y Django REST Framework (DRF). Aunque están relacion...
Login with OTP Authentication in Django and Django REST Framework
Login with OTP Authentication in Django and Django REST Framework,Django and Django REST Framework (DRF)! These powerful frameworks help you build efficient and scalable web applic...
The project that will make you enjoy writing tests for your Django app
The project that will make you enjoy writing tests for your Django app,Hi all! I’m proud to share my new first open-source project drf-api-action, and I’d be glad to receive your...
Understanding Django REST Framework: APIView vs GenericViewSet
Understanding Django REST Framework: APIView vs GenericViewSet,Django REST Framework (DRF) is a powerful toolkit for building Web APIs in the Django ecosystem. Two key components i...
Setting Up JWT Authentication in Django REST Framework
Setting Up JWT Authentication in Django REST Framework,In this Post, we'll discuss how to set up JSON Web Token (JWT) authentication in Django REST Framework using the rest_framewo...
How to create a CRUD API in Django Rest Framework with APIView, ViewSets, and Swagger Documentation
How to create a CRUD API in Django Rest Framework with APIView, ViewSets, and Swagger Documentation,Are you looking to develop a robust CRUD (Create, Read, Update, Delete) API in D...
Multi-Role User Authentication in Django Rest Framework
Multi-Role User Authentication in Django Rest Framework, Introduction: User authentication is a fundamental aspect of many web applications. Django provides a powerful authenticati...
API Authentication with Django Rest Knox
API Authentication with Django Rest Knox,Authentication is a crucial part of any web application. It involves the process of verifying the identity of a user, ensuring that only au...
Getting started with Django Rest Framework
Getting started with Django Rest Framework,Photo by Markus Spiske: https://www.pexels.com/photo/a-laptop-screen-with-text-4439901/ In this article, we'll create a project that post...
Entendendo o problema de N+1 query usando o Django
Entendendo o problema de N+1 query usando o Django, Sumário Introdução do que é o problema n+1 query Entendendo a situação problema em Django Criação da API com DRF Resolve...
Automatically Add Logged In User Under ‘created_by’ and ‘updated_by’ to Model in Django Rest Framework
Automatically Add Logged In User Under 'created_by' and 'updated_by' to Model in Django Rest Framework,In some application, we need to track which user added or updated the data in...