/Student-database-management-system

Students Database Management System Project - GUI & SQL

Primary LanguagePython

Student-database-management-system

A simple GUI project made with tkinter and sqlite3 for Students Database Management System.

Table of Content

  1. Introduction
  2. Screenshots
  3. Instructions
    1. Requirements
    2. Execution
    3. Standalone App

Introduction

In this project, you can do the following:

  1. Add new student.
  2. Update a specific student.
  3. Delete a specific student.
  4. Search for a specific student or multiple students by
    • First Name
    • Last Name
    • Term
    • GPA
  5. Display all database
  6. Delete the database

Screenshots

Kindly, check the screenshots folder to get an overview about the software.

Instructions

Requirements

  • Python 3

  • tkinter

  • sqlite3

    • Ex:
    pip install <package_name>
    

Execution

  • Use frontend.py to run the software.

Standalone App

  • To convert any script to Standalone App:

    1. Install pyinstaller package
      • pip install pyinstaller
    2. Run the command:
      • pyinstaller --onefile --windowed frontend.py
  • The Standalone App for that Project