https://github.com/ntshvicky/book-record-using-tkinter
An window gui application in python using tkinter and SQLite database
https://github.com/ntshvicky/book-record-using-tkinter
cnn-classification cpp fashion-mnist machine-learning
Last synced: 7 months ago
JSON representation
An window gui application in python using tkinter and SQLite database
- Host: GitHub
- URL: https://github.com/ntshvicky/book-record-using-tkinter
- Owner: ntshvicky
- Created: 2020-06-17T18:39:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T18:54:18.000Z (over 5 years ago)
- Last Synced: 2025-01-21T20:48:57.376Z (9 months ago)
- Topics: cnn-classification, cpp, fashion-mnist, machine-learning
- Language: TeX
- Homepage:
- Size: 10.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# book-record-using-tkinter
This is a window application to manage (Add, Update, view all, search book, listing) books using python and SQLite database.frontend.py contains python gui code
backend.py conatins database connection code# How to create Executable (.exe) file in Python
1. Install pyinstaller
2. execute this command
python --onefile --windowed frontend.py
--onefile is use to create one executable file and create connection whichever file is imported in frontend.py
--windowed , when you execute this file it will execute cmd in backgroud to prevent this and use only
window application we need to use windowed argument
above command will create a build and dist folder..where dist folder will contain .exe file in the name of frontend.exe
when you exxecute that file it will create a database file because we have called connection in backend.py