Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

Student Management System

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.

Install the required Libraries.

Clone the project

pip install pymysql

or

python -m pip install pymysql

Create the MySQL Database and table.

CREATE DATABASE DB_NAME;

USE DB_NAME;

CREATE TABLE students (
    id INT AUTO_INCREMENT PRIMARY KEY,
    name VARCHAR(255),
    age INT,
    grade VARCHAR(10)
);

Authors

About

A Simple Student Management system with Python and MySQL Database

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages