To Build Registration form using tKinter and SQlite3
User has the option to store the details store in database and also to view the details in the database at any time.
Tkinter is not the only GuiProgramming toolkit for Python. It is however the most commonly used one. The Python Standard Library includes a module called "sqlite3" intended for working with this database. This module is a SQL interface compliant with the DB-API 2.0 specification.
Tkinter
Sqlite3
- Install the required modules.
- Setup window for GUI appliction using tkinter window.
- Creating Function to create the database so all details can be stored and maintained.
- Creating Function to create submit the data, when submit button is pressed it will save the data in database
- Creating Function to Display the details
- Setting up the frames, labels, entry and buttons for the application.
- Creating function for clearing the data once submit button is pressed.
- Mainloop is initialized to run above all the code.
Install Anaconda and Open jupyter Clone the repository and extract files Open the .ipynb notebook using jupyter.
-Install python from https://www.python.org/downloads/ -make sure the files in path -Open the notebook in Jupyter and execute each cell and get the desired Output.