A simple inventory management API built with FastAPI.
pip install -r requirements.txtuvicorn project:app --reloadThe API will be available at http://127.0.0.1:8000
GET /- Root endpointGET /items- Get all itemsGET /items/{item_id}- Get a specific itemPOST /items- Create a new itemPUT /items/{item_id}- Update an itemDELETE /items/{item_id}- Delete an item
Visit http://127.0.0.1:8000/docs for interactive API documentation.