Welcome to the Muji Database Project! This project is part of a database class and focuses on building a database for Muji, a Japanese brand known for its high-quality products. The project involves setting up a database with MySQL, connecting it with Python, and working with various Python packages to manage and display data.
Muji, originally founded in Japan in 1980, offers a wide variety of high-quality products, including household goods, apparel, and food. The name "Muji" is derived from the Japanese term "Mujirushi Ryohin," which translates to "no-brand quality goods." The brand is anchored on three core principles:
- Selection of materials
- Streamlining of processes
- Simplification of packaging
The objective of this project is to create a database that stores information about Muji's products, customers, and sales, allowing efficient data management and insightful analysis.
To set up the project, you need to have Python and pip
installed. Then run this command to install all required packages.
pip install -r requirements. txt
Alternatively, you can install the following packages by yourself:
- mysql-connector-python: A package used to connect Python with MySQL databases.
pip install mysql-connector-python
- python-dotenv: A package to load environment variables from a
.env
file.pip install python-dotenv
To get started, clone the repository:
git clone https://github.com/utran0612/Muji-Database.git
cd Muji-Database
- Create a
.env
file in the project directory and add your MySQL credentials:
USERNAME = your_mysql_username
PASSWORD = your_mysql_password
- Run main.py to start interacting with the database!