This article will teach you how to add JSON Web Token (JWT) authentication to your FastAPI app using PyMongo, Pydantic, FastAPI JWT Auth package, and Docker-compose.
- How to Setup FastAPI with MongoDB
- Starting the FastAPI Server
- Set up Environment Variables with Pydantic
- Connect to the MongoDB Database
- Creating the Schemas with Pydantic
- Create Serializers for the MongoDB BSON Documents
- Password Management in FastAPI
- Creating Utility Functions to Sign and Verify JWTs
- Creating the Authentication Controllers in FastAPI
- User Registration Handler
- User Sign-in Handler
- Refresh Access Token Handler
- Sign out User Handler
- How to Protect Private Routes
- Creating a User Handler
- Adding the API Routes and CORS
- Testing the API with Postman
Read the entire article here: https://codevoweb.com/api-with-python-fastapi-and-mongodb-jwt-authentication
This article will teach you how to send HTML Emails with Python, FastAPI, PyMongo, MongoDB, Jinja2, and Docker. Also, you will learn how to use Jinja2 to generate different HTML templates.
- Send HTML Emails with Jinja2 & FastAPI Example
- Creating the SMTP Provider Account
- Edit the Environment Variables File
- Validating the Environment Variables with Pydantic
- Creating the HTML Email Templates in FastAPI
- Creating the SMTP Email Sender
- Sending the HTML Emails in FastAPI
- Update the SignUp Controller
- Create a Handler to Validate the Verification Code
Read the entire article here: https://codevoweb.com/api-with-python-fastapi-signup-user-and-verify-email
This article will teach you how to create a CRUD RESTful API with Python, FastAPI, PyMongo, MongoDB, and Docker-compose to perform the basic Create/Read/Update/Delete operations against a database.
- Python, FastAPI, MongoDB CRUD API Overview
- Setting up FastAPI with MongoDB
- Installing FastAPI
- Running the FastAPI Server
- Loading Environment Variables with Pydantic
- Connecting to the MongoDB Database Server
- Creating the Schemas with Pydantic
- Serializers for the MongoDB Documents
- Creating the API Route Controllers
- Get All Posts Controller
- Create New Post Controller
- Update Post Controller
- Get Single Post Controller
- Delete Post Controller
- Add the Routes to the FastAPI Middleware Stack
Read the entire article here: https://codevoweb.com/crud-restful-api-server-with-python-fastapi-and-mongodb