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

https://github.com/rxrow/python-tikenter

Billing System with python tkinter
https://github.com/rxrow/python-tikenter

Last synced: 2 months ago
JSON representation

Billing System with python tkinter

Awesome Lists containing this project

README

          

# login-page-using-Python-and-MySQL
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.

->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 )
);