A Simple commandline Student management system made with Python and MySQL Database. The Code uses PyMySQL Python Library to function. This code has a very simple syntax which makes it easy to understand and beginner friendly.
Clone the project
pip install pymysql
or
python -m pip install pymysql
CREATE DATABASE DB_NAME;
USE DB_NAME;
CREATE TABLE students (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255),
age INT,
grade VARCHAR(10)
);