Building my first Flask API Module 6 : Welcome back, This is our sixth and final module of building our flask API. In this module, we will add authentication to our API. Main idea here is Clients need to send us a JSON Web Token (JWT), when requesting one of our APIs. Only if aContinue reading “First time with Flask-Python -Module6”
Tag Archives: Python
First time with Flask-Python -Module5
Building my first Flask API Module 5 : Welcome back, This is our fifth module of building our flask API. In the last module, we finished up the DELETE route. So far we restored things locally within our Python server using a books list, and we were not pulling things from a database, therefore wheneverContinue reading “First time with Flask-Python -Module5”
First time with Flask-Python -Module4
Building my first Flask API Module 4 : – Welcome back, This is our fourth module of building our flask API. In the last module, we finished implementing the PUT and PATCH HTTP methods, which allowed clients to update books that were already created in the store. And in this module we’ll implement the DELETEContinue reading “First time with Flask-Python -Module4”
First time with Flask-Python -Module3
Building my first Flask API Module 3 : Welcome back, This is our third module of building our flask API. In our previous modules we built our first flask application using Python, developed our route decorator for GET method and did POST request with a clean Sanitized Data which returns a meaningful Status Code andContinue reading “First time with Flask-Python -Module3”
First time with Flask-Python -Module2
Building my first Flask API Module 2 : Welcome back, This is our second module of building our flask API. In our previous module we built our first flask application using Python and developed our route decorator for GET method. In this module, we will discuss about the following: 2.POSTING DATA 2.1 Adding a POSTContinue reading “First time with Flask-Python -Module2”
First time with Flask-Python -Module1
Building my first Flask API Module 1 : Hi all, This write-up is aimed to share the knowledge i gained. I recently tried building a Flask API with python, tried playing around few HTTP methods available, created database and added Authentication to the API created. In this blog I tried to explain them in simpleContinue reading “First time with Flask-Python -Module1”
