├── README.md ├── __init__.py ├── __pycache__ ├── admin.cpython-311.pyc ├── customer.cpython-311.pyc ├── database.cpython-311.pyc └── utils.cpython-311.pyc ├── admin.py ├── customer.py ├── database.py ├── datasets ├── AirpodesData.csv ├── AirpodesPriceData.csv ├── Database.csv ├── WatchData.csv ├── WatchPriceData.csv ├── iPhoneData.csv └── iPhonePriceData.csv ├── main.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/customer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/__pycache__/customer.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/database.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/__pycache__/database.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/admin.py -------------------------------------------------------------------------------- /customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/customer.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/database.py -------------------------------------------------------------------------------- /datasets/AirpodesData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/datasets/AirpodesData.csv -------------------------------------------------------------------------------- /datasets/AirpodesPriceData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/datasets/AirpodesPriceData.csv -------------------------------------------------------------------------------- /datasets/Database.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/datasets/Database.csv -------------------------------------------------------------------------------- /datasets/WatchData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/datasets/WatchData.csv -------------------------------------------------------------------------------- /datasets/WatchPriceData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/datasets/WatchPriceData.csv -------------------------------------------------------------------------------- /datasets/iPhoneData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/datasets/iPhoneData.csv -------------------------------------------------------------------------------- /datasets/iPhonePriceData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/datasets/iPhonePriceData.csv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/main.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atharvkote/Inventory-Management-System/HEAD/utils.py --------------------------------------------------------------------------------