In this project, we will design and implement an online retail database application.
You can find sql files under the directory of db to initialize the database. You can use docker to run a MySQL server in your local environment. You can refer to Get Docker to learn about how to install Docker.
docker run --name mysql -e MYSQL_ROOT_PASSWORD=yourpassword -d mysql
[mysql]
host=
database=
user=
password=
pip install -r requirements.txt
python connect.py
python shop_query.py
python shop_insert.py
python item_query.py
python item_insert.py
python item_search.py
python order_making.py
python order_canceling.py