Deploy FastAPI on Azure App Service

In this tutorial we will see how to deploy FastAPI on Azure App Service Linux Plan. The FastAPI will have PostgreSQL database and Asynchronous REST Endpoints. We will create a PostgreSQL database on Azure and App Service Plan to host FastAPI on Azure ☁️.

3 Comments
Architectural overview of FastAPI running on Azure App Service – TutLinks
Architectural overview of FastAPI running on Azure App Service – TutLinks

Deploy FastAPI app on Google Cloud Platform

In this tutorial we will see how to deploy a FastAPI app on GCP App Engine. The tutorial will give a detailed walk through on how to create an app on Google Cloud Platform and deploy a FastAPI application implemented in python. By the end of tutorial you will learn how to deploy FastAPI app on Google Cloud Platform.

4 Comments
Deploy a FastAPI app on Google Cloud App Engine – TutLinks
Deploy a FastAPI app on Google Cloud App Engine – TutLinks

Implementing Async REST APIs in FastAPI with PostgreSQL CRUD

In this tutorial we will implement a Python based FastAPI with PostgreSQL CRUD. We will focus on implementing Asynchronous REST Endpoints with the help of Python based module databases that gives simple asyncio support for a range of databases including PostgreSQL.

4 Comments
FastAPI CRUD PostgreSQL Async RESTAPIs SQLAlchemy – TutLinks
FastAPI CRUD PostgreSQL Async RESTAPIs SQLAlchemy – TutLinks

Create and Deploy FastAPI app to Heroku

In this tutorial we will implement a simple REST API implemented using Python based FastAPI framework. We will deploy FastAPI app to Heroku account for free.

3 Comments
Create and Deploy FastAPI app to Heroku - TutLinks
Create and Deploy FastAPI app to Heroku - TutLinks

Debugging Flask App with VS Code Made Easy

In this tutorial you will learn how about Debugging Flask App with VS Code. This article has a detailed walk through on how to setup Visual Studio Code IDE for debugging Flask application and demonstrates step by step debugging of the application.

0 Comments
Debugging Flask App with VS Code Made Easy - TutLinks
Debugging Flask App with VS Code Made Easy - TutLinks

Brief Introduction to Flask

Flask is an open-source web application development framework developed in Python. Flask is supported by huge developer community. Flask in itself is a micro framework but, it has the ability to integrate with many extensions to help us build robust and scalable applications.

0 Comments
Brief Introduction to Flask - TutLinks
Brief Introduction to Flask - TutLinks

Working with Virtual Environments in Python for Beginners

Virtual Environments in Python provides an isolated and self contained instance of the version of Python and all other modules or packages that a specific project is dependent on. Virtual Environments appear in the form of directory with the name of the environment we choose and contain the version of Python, scripts, libraries and packages that are available with in the virtual environment.

7 Comments
Working with Virtual Environments in Python for Beginners - TutLinks
Working with Virtual Environments in Python for Beginners - TutLinks

Setup Visual Studio Code for Python Development

In this tutorial, we will have an overview of an open source IDE VS Code and why we choose to go with it for Python development. We will also see how to setup Visual Studio Code for Python development and configure it for a sample Python based Flask hello world project.

2 Comments
Setup Visual Studio Code for Python Development - TutLinks
Setup Visual Studio Code for Python Development - TutLinks

Deploy FastAPI on Ubuntu and Serve using Caddy 2 Web Server

In this tutorial we will see how to Deploy FastAPI on Ubuntu. Our FastAPI application does CRUD operations on a PostgreSQL database running on Ubuntu 18.04.5 LTS (Bionic Beaver). We expose FastAPI running on Gunicorn as a reverse proxy using Caddy 2 Web Server.

3 Comments
Deploy FastAPI on Ubuntu and Serve using Caddy 2 Web Server – TutLinks
Deploy FastAPI on Ubuntu and Serve using Caddy 2 Web Server – TutLinks