Salonisaloni1.hashnode.dev·Nov 10, 2024FastAPI Project with detailed explanation for beginnersFastAPI is a Python web framework for building APIs quickly and easily, and it’s especially great if we want to create apps that need to respond fast to many requests at once. It’s called fast because it helps us code quickly and run apps with high p...FastAPI
Ashish Sam T Georgegetwithashish.hashnode.dev·Aug 13, 2024Python Beanie and FastAPI: Building a Data EmpireImagine you’re the proud ruler of a kingdom. Not just any kingdom, though—a data kingdom where every brick in the castle represents a piece of information, and your citizens (users) are always hungry for efficient services. As the monarch of this emp...beanie
Artur Stępniaktltales.com·Mar 20, 2024FeaturedHazards of backend async-ronization in PythonAsynchronous code is great if you want to get the most out of your backend system that also sends requests to external systems or does other I/O operations. Refactoring synchronous backend code to get those benefits is not that great, or at least not...46 likes·379 readsPython
Deep Techdeeptech.hashnode.dev·Apr 10, 2023Python - Different WSGI and ASGI Running PerformanceThe blog post aims to give an account of the problem statement where I had to compare the performance of different worker modes of gunicorn to be able to come up with the worker mode to be used for different nature of workloads. This blog demonstrate...540 readsGunicorn
Nikhil Akkinikhilakki.in·Jan 21, 2023Series | Web frameworks in Python - FastAPIHere are some of the main features of FastAPI, along with examples of how they can be used: Fast: FastAPI is built on top of Starlette for high performance, with an easy-to-use interface for defining API endpoints. from fastapi import FastAPI app ...11 likes·157 readsPython DevelopmentPython
Imam Hossain Roniimamhossainroni.me·Jan 9, 2022The Ultimate Guide to Deploy FastAPI Application on Ubuntu with NginxI am assuming that you have an Ubuntu server and it's 18.04 or later that could be from the EC2 instance or any other VPS from DigitalOcean or Azure. Firstly, Update & upgrade the existing packages with the blew command sudo apt update sudo apt upg...221 readsFastAPI