This project implements CRUD (Create, Read, Update, Delete) operations for managing items.
- Clone the repository.
- Install the required dependencies by running
pip install -r requirements.txt
.
GET /list/
: Retrieves a list of items sorted by search count.GET /search/{name}/
: Searches for items with the given name and increments their search count.POST /add/
: Adds a new item.DELETE /delete/{name}/
: Deletes items with names containing the given value.
You can watch a demo of this project on Replit).