Inventory_Management_System_Report
Inventory_Management_System_Report
1. Project Overview
This Inventory Management System is a Python-based application integrated with a MySQL database. It enables users
2. Database Design
The following tables form the core of the inventory management system:
Relationships between tables use primary and foreign keys to maintain data integrity.
Inventory Management System Project Report
3. Python Code
The system is divided into multiple Python modules for modularity and better management. Here is the code for the
import item
import customer
import supplier
import transaction
import report
import os
while True:
os.system('cls')
print('1. Items')
print('2. Customers')
print('3. Suppliers')
print('4. Transactions')
print('5. Reports')
print('6. Exit')
if choice == 1:
item.manage_items()
elif choice == 6:
Inventory Management System Project Report
break
4. Execution Guide
python main.py