[Solved]Task Download Extract Attached Zip File Get Familiar Project First Follow Following Instru Q37212111
Task: Download and extract the attached zipfile and get familiar with the project first and then follow thefollowing instruction to enhance the Movie List Program byimproving its delete command and by adding a min command that letsthe user view movies with run times that are less than a specificnumber of minutes.
Open and test the program
1. In PyCharm, open the objects.py, db.py, and ui.py files thatare in the attached folder.
2. Review the code and note how the ui module uses the db moduleand the Movie class from the objects module. Then, run the program.If necessary, modify the path to the database file so it’s correctfor your system.
Improve the del command
3. In the db module, add a get_movie() function that gets aMovie object for the specified movie ID.
4. In the ui module, modify the delete_movie() function so itgets a Movie object for the specified ID and asks whether you aresure you want to delete the movie as shown above. This code shouldonly delete the movie if the user enters “y” to confirm theoperation.
Add the min command
5. In the db module, add a get_movies_by_minutes() function thatgets a list of Movie objects that have a running time that’s lessthan the number of minutes passed to it as a parameter.
6. In the ui module, add a display_movies_by_minutes() functionthat prompts the user to enter the maximum number of minutes anddisplays all selected movies. This should sort the movies byminutes in ascending order.
7. Modify the main() function and the display_menu() function sothey provide for the min command.
here is link to a google drive with the zip file used for thisprogram
https://drive.google.com/open?id=1ykBs9E9AJGsj1pueBmAOGbyPq5SDKxpR
Expert Answer
Answer to Task: Download and extract the attached zip file and get familiar with the project first and then follow the following i… . . .
OR

