The union and connectivity between "FastAPI" and "MariaDB" . Below is an overview of the API section.
Operation | Description |
---|---|
Push | Add or update an item in the database. |
Delete | Remove an item from the database. |
Update | Modify an existing item in the database. |
Create | Add a new item to the database. |
table 1: atomic API CRUD operations.
- Install FastAPI, mariadb pip packages.
- create a db_creds.json.
{
"user":"<username>",
"password":"<password>"
}