Akshay Suresh Thekkathakshaythekkath.hashnode.dev·Nov 21, 2023Maximizing API Efficiency: Empowering API Consumers to Choose Their Data FieldsImagine you've got a REST API for listing users, and each user's information shows up in 12 fields. GET /v1/users/?page=1&page_size=15 { "pagination_data": { "total_records": 10000, "pages": 667, "prev_page_no": null, ...Discuss·2 likesDjango
Abiola Adedayoabiorh.hashnode.dev·Nov 21, 2023A Comprehensive Guide for Integrating Google Firebase Authentication with Django Rest FrameworkThis article will show you how to integrate Google Firebase authentication with Django REST Framework. We will use Firebase authentication to create and login users in Django and get firebase access token that will be use for each request to any prot...DiscussPython
Ugochukwu Chukwukodinaka BenjaminforMicrosoft Student Community Unizikmlscunizik.hashnode.dev·Nov 12, 2023My Journey Deploying a Django + Supabase application to Vercel.1. INTRODUCTION Hey, there. In this article, I'll be talking about my experience in deploying a Django app using Supabase as a Database to Vercel. For the technical know-how, please refer to this article on kowe.io. It's not a common thing to deploy ...Discuss·3 likesDjango
Leonard Nzekweleonardnzekwe.hashnode.dev·Nov 9, 2023Netrobase SRMS REST API DOCSBASE URLS: For Schools: api.schooldomain.com For Netrobase: srms-api.netrobase.dev API End Points: / - [GET] API Index Auth Endpoints: These Endpoints handle Authentications for all users. /auth/ - [GET] Auth Index View /auth/login/ - [POST] ...DiscussAlchemy of StacksDjango
Adnan Kattekadenadnankattekaden.hashnode.dev·Nov 8, 2023Django REST framework (CRUD Guide)Welcome to this beginner-friendly tutorial on setting up a CRUD app using Django REST Framework! If you’re looking to build a simple API that allows users to create, read, edit, and delete data, you’re in the right place. In this tutorial, we’ll guid...Discuss·1 like·38 readsDjango
Leonard Nzekweleonardnzekwe.hashnode.dev·Nov 7, 2023Netrobase CMS Restful API DOCSNetrobase CMS is a lightweight inhouse blogging tool. It adopts a headless CMS approach. BASE URLS: For Schools: api.schooldomain.com For Netrobase: cms-api.netrobase.dev Auth Endpoints: /auth/ - [GET] Auth Index View /auth/login/ - [POST] Logi...DiscussAlchemy of StacksDjango
Noah-droidnoahdroid.hashnode.dev·Nov 2, 2023Important Libraries to know as a Django DeveloperAs a Django developer, you have access to a rich ecosystem of libraries and packages that can significantly enhance your productivity and the functionality of your web applications. Here are some important libraries and packages that every Django dev...Discuss·1 like·43 readsPython
Haruna NjieProharunacodes.com·Nov 1, 2023Getting Started with Django Filters: A Simple OverviewIn this article we'll take a look at Django-filter— a package that gives us the ability to quickly and efficiently filter our querysets. To fully appreciate what this package does for us, we'll first implement a basic search feature where we write th...Discuss·1 like·39 readsDjango
Fabrice Toyideveloppeurtaf.hashnode.dev·Oct 31, 2023Django avec un seul fichier. Est-ce possible ? Django MicroframeworkEhh bien oui c'est possible grâce au travail de Paolo Melchiorre.Avec un seul fichier, il est possible de lancer un tout pétit projet pour voir le fonctionnement de django. Cependant, il possède quelques inconveniant.Voici le lien de son post : Voici...Discuss·32 readsDjango
Ujunwa Igboujuthetechsis.hashnode.dev·Oct 30, 2023Generic Class Based ViewsBefore I talk about Generic class-based views, it's important to note that it is used when building using the Django rest framework. Django rest framework takes care of the heavy lifting of transforming our database models into RESTful API. There are...Discuss·63 readstech