• Post category:StudyBullet-7
  • Reading time:5 mins read


Learn the concepts of microservices, API and build REST API web app with Flask and SQL Alchemy. Test API using Postman.

What you will learn

Learn the fundamental concepts of microservices and API

Learn how to build rest API using flask, sqlalchemy. marshmallow and postman

Learn to test API using Postman

Learn to perform CRUD operations: Create, Read, Update and Delete

Learn to build different HTTP methods- Get, Post, Put, Patch and Delete

Learn to build web app using Python flask

Learn multiple concepts like routes, endpoints, http verbs, status code and much more

Description

Software is everywhere. We interact with it in our daily life activities knowingly or unknowingly. Each time when you use an app like Instagram, send an instant message, or check the stock prices on your phone, you’re using an API. The world still needs more software to make our life easier. But creating great software is hard for everyone and yet developers need to master more than one skill.

This problem can be solved by API (Application Program Interface). It is a software-to-software interface that enables two applications to exchange data among each other. Just like any buttons on the remote does have a unique function. It is true almost all applications using API to interact with each other.

Understanding how the API works to deploying API is the objective of this course. In this course you will learn fundamentals of the API like http requests, endpoints, routes, CRUD operations and much more in pragmatic style.


Get Instant Notification of New Courses on our Telegram channel.


In this course you will learn how to create a simple API for different HTTP methods like get, post, put, patch and delete. Also learn how to efficiently store data to the database using flask SQL alchemy.

To test API’s, you will also learn to use Postman. Postman is an API client that makes it easy for developers like you to create, share, test and document APIs.

English
language

Content

Introduction to API

Introduction
What is API? How it works?
Different HTTP Methods

Developing simple RESTful APIs using Flask, Jsonify and request (Method 1)

Setting up a virtual environment
Understanding routes and endpoints
Rendering html
Query String
Creating Get request 1
Creating GET request 2
Creating GET request 3
Testing different GET methods using Postman
Creating POST request
Creating PUT request
Creating PATCH request
Creating DELETE request

Developing REST APIs using Flask SQLALCHEMY and Postman

Setting up database using flask Sqlalchemy and marshmallow
Flask SQLALCHEMY: Creating GET request
Flask SQLALCHEMY: Creating POST request
Flask SQLALCHEMY: Creating DELETE request
Flask SQLALCHEMY: Creating PUT request