This project implements a simple warehouse inventory management system that allows the tracking of items and their quantities across multiple warehouses. It uses data analysis principles to manage space efficiently and ensure that the available capacity is optimally utilized.
- Manage inventory across multiple warehouses with different capacities.
- Add items to the warehouse and check if there is enough space for additional quantities.
- Real-time display of inventory status, including current capacity and remaining space.
- Error handling for invalid inputs and exceeded capacity.
Enter the item name (or 'exit' to quit): Item1 Enter the quantity: 50 50 units of Item1 added to Warehouse1.
Enter the item name (or 'exit' to quit): Item2 Enter the quantity: 30 30 units of Item2 added to Warehouse2.
Enter the item name (or 'exit' to quit): Item3 Enter the quantity: 200 Not enough space in any warehouse for 200 units of Item3.
Enter the item name (or 'exit' to quit): exit
git clone https://github.com/alinaddafi/warehouse-inventory-management.git
cd warehouse-inventory-management