FastAPI CRUD Application
This basic FastAPI project is designed to perform CRUD (Create, Read, Update, Delete) operations on a database.
Project Overview
The FastAPI CRUD Application allows users to interact with a database through API endpoints. Users can insert new records, view existing records, update records, and delete records. This application is ideal for managing a wide range of data, from user information to product inventories.
Features
Create: Insert new records into the database using POST requests. Read: View existing records using GET requests, with support for retrieving individual records or lists of records. Update: Modify existing records using PUT or PATCH requests. Delete: Remove records from the database using DELETE requests.