This is a GUI application made using tkinter(a python library). The tkinter package (“Tk interface”) is the standard Python interface to the Tcl/Tk GUI toolkit. Both Tk and tkinter are available on most Unix platforms, including macOS, as well as on Windows systems.
The program stores the following book information in a database:
- Title
- Author
- Year
- ISBN
The user can:
- View all records in the database
- Search an entry in the database
- Add an entry into the database
- Update entry in the database
- Delete an entry in the database
- Close the application
- Python 3 installed
- Tkinter installed.
To run from the terminal:
cd BookStore
python frontend.py
A .exe file is also included so you can run the application(compiled using pyinstaller package) if you don't have python installed.