Skip to content

Inventory Management system for Shops based on MySQL and Python

Notifications You must be signed in to change notification settings

HarshDatar/Inventory-Management

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 

Repository files navigation

Inventory Management System 📈

A simple command-line inventory management system implemented in Python, using MySQL database for storage.

💻 Prerequisites

  • Python 3.x
  • MySQL server

🔧 Setup

Clone the repository:

git clone https://github.com/dyrok/Inventory-Management

##Configure the MySQL database connection in the script (main.py):

Connect to MySQL database

db = mariadb.connect(
    host="localhost",
    user="your-username",
    password="your-password",
    database="invproj"
)

Create the database:

    mysql -u your-username -p
    > CREATE DATABASE invproj;
    > USE invproj;

🚀 Usage Run the script:

python main.py

Follow the on-screen menu options to perform various actions such as adding products, modifying quantities, deleting products, and viewing the inventory. You can also plot a graph of the inventory by selecting the "Plot graph" option.

📁 Project Structure

├── main.py         # Main script file
└── README.md       # Project documentation

About

Inventory Management system for Shops based on MySQL and Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%