UsefulLinks
Computer Science
Web Development
FastAPI Framework
1. Introduction to FastAPI
2. Environment Setup and Installation
3. First FastAPI Application
4. Path Operations Fundamentals
5. Path Parameters
6. Query Parameters
7. Request Headers and Cookies
8. Request Body Handling
9. Response Handling
10. Dependency Injection System
11. Security and Authentication
12. Middleware
13. Error Handling
14. Application Structure
15. Asynchronous Programming
16. Background Tasks
17. WebSocket Support
18. Database Integration
19. Static Files and Templates
20. Testing FastAPI Applications
21. Deployment and Production
2.
Environment Setup and Installation
2.1.
Python Environment Requirements
2.1.1.
Python Version Compatibility
2.1.2.
Virtual Environment Setup
2.1.3.
Package Management
2.2.
FastAPI Installation
2.2.1.
Installing via pip
2.2.2.
Development Dependencies
2.2.3.
Optional Dependencies
2.3.
ASGI Server Installation
2.3.1.
Uvicorn Installation and Configuration
2.3.2.
Alternative ASGI Servers
2.3.2.1.
Hypercorn
2.3.2.2.
Daphne
2.3.2.3.
Gunicorn with Uvicorn Workers
2.4.
Development Tools Setup
2.4.1.
Code Editor Configuration
2.4.2.
Linting and Formatting Tools
2.4.3.
Debugging Setup
Previous
1. Introduction to FastAPI
Go to top
Next
3. First FastAPI Application