https://github.com/dimanu-py/fast-api
FastAPI course to learn how to develop APIs with this framework
https://github.com/dimanu-py/fast-api
fastapi learning-by-doing python
Last synced: about 2 months ago
JSON representation
FastAPI course to learn how to develop APIs with this framework
- Host: GitHub
- URL: https://github.com/dimanu-py/fast-api
- Owner: dimanu-py
- Created: 2024-03-19T08:19:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-10T16:25:30.000Z (7 months ago)
- Last Synced: 2025-02-13T21:47:21.864Z (3 months ago)
- Topics: fastapi, learning-by-doing, python
- Language: Python
- Homepage:
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FastAPI Course
[](https://python.org)
[](https://fastapi.tiangolo.com)> [!NOTE]
> This is a FastAPI course from Udemy. Eric Roby and Chad Darby created the course which can be found at the [following link](https://www.udemy.com/course/fastapi-the-complete-course/)## Repository structure
The course is divided into different projects, each intended to teach a specific topic about API development with FastAPI.
Each project could be followed through a specific branch in the repo while the main branch will contain all the projects together.
>[!TIP]
> In the [Projects](#projects) section you can go directly to the branch and see the step-by-step guide for each project.### [1. Basic Bookstore API](https://github.com/dimanu-py/fast-api/tree/project-one-bookstore/bookstore)
Topics covered:
- How to work with FastAPI
- Basic HTTP methods (GET, POST, PUT, DELETE)
- Path and query parameters### [2. Advanced Bookstore API](https://github.com/dimanu-py/fast-api/tree/project-two-advanced-bookstore/advanced_bookstore)
Topics covered:
- Working with domain objects
- Validating requests, responses, and parameters with Pydantic
- Configuring Swagger examples
- Handling errors and responses with status codes