-
Data.csv: This file contains data of student entered by teacher in csv format. First line contains header --> Name, F_name, Roll_no, Maths, English, Science.
-
users.py: This file can be operated by admin. This file used to create users who can access data base and enter details of students. Run this file separetly to enter user details and password.
-
users_data.pkl: This file contais user_name and encrypted password in dictanory format stored in pickle file.
-
store_load_data.py: This file is use to create data and write it into Data.csv, and load data from Data.csv file. There are two functions in this file for storing and loading the data.
-
login.py: This file is used to check the login details entered by the user. This file encrypts the password entered and checks it with the users_data.pkl file. If the details matched then access is given, else it returns False.
-
main.py This is the main file of the project. Run this file directly to see the output window. Enter the required inputs and get the desired output as per the details entered.