Ubaydah Abdulwasiuubaydah.hashnode.net·Aug 12, 2022Building A Blog Service With FastAPI And Redis OMIntroduction In my last article, I wrote about using Redis as a message broker to store messages delivered by a task queue. Asides from Redis being used as cache storage or message broker, Redis can also be used as a database to store data in key-val...Lateefat and 7 others are discussing this8 people are discussing thisDiscuss·127 likes·2.8K readsPythonNice one up there 💫 3
Shah Nawaz Shuvonawaz.hashnode.net·Sep 8, 2020Deploy FastAPI Application on Ubuntu with Nginx, Gunicorn and UvicornFastAPI is a promising new Python framework that supports concurrency and type system out of the box. It has many cool features that I like and it's fast. In this post, I will briefly go over the process of deploying a simple FastAPI application on U...Mustafizur Rahman and 2 others are discussing this3 people are discussing thisDiscuss·51 likes·8.6K readsGeneral Programming
Maciej Marzętammarzeta.hashnode.net·Apr 3, 2023FeaturedDemystifying Asynchronous Programming in Python: Practical Examples with Async and AwaitAsynchronous programming has become increasingly popular in recent years, particularly for web development and other I/O-bound tasks 🌐. With the introduction of the async/await syntax in Python 3.5, writing asynchronous code has become more convenie...Sapient Services and 1 other are discussing this2 people are discussing thisDiscuss·39 likes·351 readsPython
Sai Lokesh Reddysailokesh.hashnode.net·Apr 21, 2023Versioning of a FastAPI applicationHi everyone! In this blog post, I'm going to show you how to implement versioning for a FastAPI application with independent docs for each version. This is useful if you want to maintain different versions of your API with different features and func...DiscussFastAPIFastAPI
Princewill Inyangwillingly.hashnode.net·Apr 17, 2023Connecting FastAPI with Astra NoSQL DB for High-Performance APIs: A Comprehensive GuideIntroduction In the current digital landscape, the development of APIs that exhibit swift and seamless operation while being capable of scaling in response to the demands of contemporary applications is of utmost importance. APIs that can handle vast...Discuss·17 likes·89 readsFastAPI
Harsh Jaincodingbit.hashnode.net·Apr 15, 2023Perform OCR Using PythonWe have already installed all the required setups to run the code to perform OCR on some sample images. You can save the below image taken in this case. Let us jump directly into the code. import pytesseract # pytesseract.pytesseract.tesseract_cmd ...DiscussBuild Optical Character Recognition API Using Tesseract and FastAPIPython
Sai Lokesh Reddysailokesh.hashnode.net·Apr 14, 2023How to Enable and Configure CORS in FastAPIHow to enable CORS in FastAPI CORS (Cross-Origin Resource Sharing) is a mechanism that allows web browsers to request resources from different origins (domains, protocols, or ports) than the one that the web page was loaded from. CORS is important fo...DiscussFastAPIFastAPI
Sai Lokesh Reddysailokesh.hashnode.net·Apr 14, 2023Using Middleware with FastAPIFastAPI is a popular web framework for building fast and scalable Python applications. One of the many features of FastAPI is its support for middleware, which allows you to add extra functionality to your application, such as logging, rate limiting,...DiscussFastAPIFastAPI
Deep Techdeeptech.hashnode.net·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...Discuss·30 readsGunicorn
Sai Lokesh Reddysailokesh.hashnode.net·Apr 8, 2023FastAPI Made Easy: A Step-by-Step Tutorial for BeginnersBefore we start, In case you are wondering what is FastAPI - Introduction to FastAPI This article will discuss how to set up a project structure for a FastAPI application and build our first API in under 5 minutes after connecting to the database. Le...Discuss·1 like·34 readsFastAPIFastAPI
satish Mishratechtonics.hashnode.net·Apr 7, 2023Async/Await of Python with Fast APIPython's async/await syntax, introduced in Python 3.5, simplifies the creation of asynchronous code by allowing non-blocking code execution that can perform multiple tasks concurrently without the need for callbacks or threads. FastAPI, a popular web...Discuss·32 readsPython
Maciej Marzętammarzeta.hashnode.net·Apr 3, 2023FeaturedDemystifying Asynchronous Programming in Python: Practical Examples with Async and AwaitAsynchronous programming has become increasingly popular in recent years, particularly for web development and other I/O-bound tasks 🌐. With the introduction of the async/await syntax in Python 3.5, writing asynchronous code has become more convenie...Sapient Services and 1 other are discussing this2 people are discussing thisDiscuss·39 likes·351 readsPython
Maheshwar Ligadefortechwastitechwasti.hashnode.net·Apr 4, 2023FastAPI + JWT + MySQL + DOcker end to end exampleIn this tutorial, we will explore how to implement a secure REST API using FastAPI with JSON Web Tokens (JWT) authentication, a MySQL database, and Docker for containerization. What is JWT? JWT (JSON Web Token) is like a secret message that can be s...Discuss·34 readsPython