Menu

[Solved]-Python Sql Programming Create Gui Program Allows Manage Task List S Stored Attached Databa Q37212023

Python/SQL Programming

Create a GUI program that allows you to manage a task listthat’s stored in the attached database.

The program should allow user to:

 View Completed Tasks

 View Pending Tasks

 Complete a Task

 Add a Task

 Delete a Task

 Exit the Program

Specifications: 1. The attached database file,task_list_db.sqlite, contains a Task table that stores thetasks.

2. Use the three-tier architecture (presentation, business,database) for this program, and store the code for each tier in aseparate file.

3. The View Completed Tasks command should display tasks thathave been completed.

4. The View Pending Tasks command should only display tasks thathave not been completed.

5. The Complete a Task command should only mark a pending taskas completed, not delete it from the database.

6. The Add a Task command should save user entered task into thedatabase as a pending task.

7. The Delete a Task may delete a completed or pending task fromthe database.

8. You may choose tkinter widgets, such as Button, Label, Menu,Menu button, and etc. to design the UI. What to Submit: Acompressed folder that contains three Python files created asrequired in Specification 2 and the database filetask_list_db.sqlte

here is a link to google drive for the task_list_db.sqltefile

https://drive.google.com/open?id=1rjAULluckmVm23KBEMdkCbHlZnfA8A01

Expert Answer


Answer to Python/SQL Programming Create a GUI program that allows you to manage a task list that’s stored in the attached databa… . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *