Controlling access to a FastAPI app typically involves implementing authentication and authorization mechanisms. Here are some **decent approaches** to achieve this: ## 1. Authentication – **OAuth2 with Password (and Bearer)** – Use FastAPI’s built-in support for OAuth2 for handling user login and issuing JWT tokens. – Users authenticate by providing a […]| Manzoor's Thoughts
Here’s a comprehensive guide for deploying a FastAPI application with Docker on AWS:This comprehensive guide covers multiple deployment strategies for FastAPI applications on AWS. Here are the key approaches: For “production” applications: For simple/low-traffic applications: Key considerations: – manzoor Computing Power YT| Manzoor's Thoughts
SQLAlchemy is an ORM that allows interacting with DB using Python objects instead of writing raw SQL queries. Which in turn allows for developing Python solutions more in it’s own without hav…| Manzoor's Thoughts