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
- Host: GitHub
- URL: https://github.com/rxrow/python-tikenter
- Owner: RXROW
- Created: 2023-05-28T15:42:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-28T15:43:18.000Z (over 2 years ago)
- Last Synced: 2025-02-25T19:46:58.744Z (10 months ago)
- Language: Python
- Size: 16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 )
);