SBShantanu Bhurukinshantanubhuruk.educodersbuddy.com·Aug 3, 2022 · 4 min readCustom sorting in SQLSometimes you require to order your data in a particular way, and often the use of typical sort modifiers like ASC and DESC are not enough and I am not kind of surprised that you are here because this is the most common challenge a enterprise applica...00
SBShantanu Bhurukinshantanubhuruk.educodersbuddy.com·May 26, 2022 · 7 min readSecure your Falcon REST APIs with JWTIt’s not always easy to secure REST APIs. In this post, we’ll discuss how to do just that using JSON web tokens (JWT). Prerequisites To get into the security implementation of Falcon REST APIs with JWT one should know about Falcon, REST and last but ...00
SBShantanu Bhurukinshantanubhuruk.educodersbuddy.com·May 25, 2022 · 7 min readREST API Using Falcon and SQLObjectIn this post, we will create a rest API for our application using falcon. This application will perform following tasks: Create a Student (POST request) Get a Student (GET request) Edit a Student (PUT request) Delete a Student (DELETE request) We w...00
SBShantanu Bhurukinshantanubhuruk.educodersbuddy.com·May 24, 2022 · 4 min readREST API Using Falcon FrameworkThere are 2 kinds of frameworks, full-featured and bare frameworks. If you would rather develop a RESTFul API for your projects with Python, in general, you consider structure the following. 1) Flask with Flask-RESTFul 2) Django + REST Framework On t...00
SBShantanu Bhurukinshantanubhuruk.educodersbuddy.com·May 3, 2022 · 7 min readREST and Its ConstraintsREST means Representational State Transfer which means every URL represents some objects. It transfers the state of a thing from client to server or server to client by representation. It means that the state is never stored at the server side. The d...00