An open API service indexing awesome lists of open source software.

https://github.com/nocapscripts/python-login-sql-gui

Python GUI login
https://github.com/nocapscripts/python-login-sql-gui

Last synced: about 1 year ago
JSON representation

Python GUI login

Awesome Lists containing this project

README

          

# About
It's a GUI project using python tkinter and MySQL database.

Make sure you already have installed all the modules used in this project. Please see the requirement.txt file for all the requirements.

Steps to follow after installing all the modules. Otherwise this application will not work properly.
# OPTIONAL
->Create a database with this name, "student_database"
->create a table with this name, "student_register"

USE this code to create the table under the "student_database" database

create table student_register(
f_name VARCHAR(50) NOT NULL,
l_name VARCHAR(50) NOT NULL,
email VARCHAR(100) NOT NULL,
question VARCHAR(50) NOT NULL,
answer VARCHAR(100) NOT NULL,
password VARCHAR(50) NOT NULL,
PRIMARY KEY ( email )
);